minor corrections
[nonrtric.git] / docker-compose / data / preparePmsData.sh
1 #!/bin/bash
2
3 #  ============LICENSE_START===============================================
4 #  Copyright (C) 2020 Nordix Foundation. All rights reserved.
5 #  ========================================================================
6 #  Licensed under the Apache License, Version 2.0 (the "License");
7 #  you may not use this file except in compliance with the License.
8 #  You may obtain a copy of the License at
9 #
10 #       http://www.apache.org/licenses/LICENSE-2.0
11 #
12 #  Unless required by applicable law or agreed to in writing, software
13 #  distributed under the License is distributed on an "AS IS" BASIS,
14 #  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 #  See the License for the specific language governing permissions and
16 #  limitations under the License.
17 #  ============LICENSE_END=================================================
18 #
19
20 # The scripts in data/ will generate some dummy data in the running system.
21 # It will create:
22 # one policy type in a1-sim-OSC
23 # one service in policy agent
24 # one policy in a1-sim-OSC
25 # one policy in a1-sim-STD
26
27 # Run command:
28 # ./preparePmsData.sh [policy-agent port] [a1-sim-OSC port] [a1-sim-STD port] [a1-sim-STD-v2 port] [http/https]
29
30 policy_agent_port=${1:-8081}
31 a1_sim_OSC_port=${2:-30001}
32 a1_sim_STD_port=${3:-30003}
33 a1_sim_STD_v2_port=${4:-30005}
34 httpx=${5:-"http"}
35
36 echo "using policy_agent port: "$policy_agent_port
37 echo "using a1-sim-OSC port: "$a1_sim_OSC_port
38 echo "using a1-sim-STD port: "$a1_sim_STD_port
39 echo "using a1-sim-STD-v2 port: "$a1_sim_STD_v2_port
40 echo "using protocol: "$httpx
41 echo -e "\n"
42
43 echo "policy agent status:"
44 curl -skw %{http_code} $httpx://localhost:$policy_agent_port/status
45 echo -e "\n"
46
47 echo "ric1 version:"
48 curl -skw %{http_code} $httpx://localhost:$a1_sim_OSC_port/counter/interface
49 echo -e "\n"
50
51 echo "ric2 version:"
52 curl -skw %{http_code} $httpx://localhost:$a1_sim_STD_port/counter/interface
53 echo -e "\n"
54
55 echo "ric3 version:"
56 curl -skw %{http_code} $httpx://localhost:$a1_sim_STD_v2_port/counter/interface
57 echo -e "\n"
58
59 echo "create policy type 1 to ric1:"
60 curl -X PUT -skw %{http_code} $httpx://localhost:$a1_sim_OSC_port/policytype?id=1 -H Content-Type:application/json --data-binary @testdata/OSC/policy_type.json
61 echo -e "\n"
62
63 echo "create policy type 2 to ric3:"
64 curl -skw %{http_code} $httpx://localhost:$a1_sim_STD_v2_port/policytype?id=2 -X PUT -H Accept:application/json -H Content-Type:application/json -H X-Requested-With:XMLHttpRequest --data-binary @testdata/v2/policy_type.json
65 echo -e "\n"
66
67 for i in {1..12}; do
68         echo "policy types from policy agent:"
69     curlString="curl -skw %{http_code} $httpx://localhost:$policy_agent_port/a1-policy/v2/policy-types"
70     res=$($curlString)
71     echo "$res"
72     expect="{\"policytype_ids\":[\"\",\"1\",\"2\"]}200"
73     if [ "$res" == "$expect" ]; then
74         echo -e "\n"
75         break;
76     else
77         sleep $i
78     fi
79 done
80
81 echo "create service ric-registration to policy agent:"
82 curl -k -X PUT -sw %{http_code} -H accept:application/json -H Content-Type:application/json "$httpx://localhost:$policy_agent_port/a1-policy/v2/services" --data-binary @testdata/v2/service.json
83 echo -e "\n"
84
85 echo "create policy aa8feaa88d944d919ef0e83f2172a5000 to ric1 with type 1 and service controlpanel via policy agent:"
86 curl -k -X PUT -sw %{http_code} -H accept:application/json -H Content-Type:application/json "$httpx://localhost:$policy_agent_port/a1-policy/v2/policies" --data-binary @testdata/v2/policy_osc.json
87 echo -e "\n"
88
89 echo "policy numbers from ric1:"
90 curl -skw %{http_code} $httpx://localhost:$a1_sim_OSC_port/counter/num_instances
91 echo -e "\n"
92
93 echo "create policy aa8feaa88d944d919ef0e83f2172a5100 to ric2 with type 2 and service controlpanel via policy agent:"
94 curl -k -X PUT -sw %{http_code} -H accept:application/json -H Content-Type:application/json "$httpx://localhost:$policy_agent_port/a1-policy/v2/policies" --data-binary @testdata/v2/policy_std_v2.json
95 echo -e "\n"
96
97 echo "policy numbers from ric3:"
98 curl -skw %{http_code} $httpx://localhost:$a1_sim_STD_v2_port/counter/num_instances
99 echo -e "\n"
100
101 echo "policy id aa8feaa88d944d919ef0e83f2172a5000 from policy agent:"
102 curl -k -X GET -sw %{http_code} $httpx://localhost:$policy_agent_port/a1-policy/v2/policies/aa8feaa88d944d919ef0e83f2172a5000
103 echo -e "\n"
104
105 echo "policy id aa8feaa88d944d919ef0e83f2172a5100 from policy agent:"
106 curl -k -X GET -sw %{http_code} $httpx://localhost:$policy_agent_port/a1-policy/v2/policies/aa8feaa88d944d919ef0e83f2172a5100
107 echo -e "\n"