3 # ============LICENSE_START===============================================
4 # Copyright (C) 2021 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
10 # http://www.apache.org/licenses/LICENSE-2.0
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=================================================
20 # The scripts in data/ will generate some dummy data in the running system.
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
28 # ./preparePmsData.sh [policy-agent port] [a1-sim-OSC port] [a1-sim-STD port] [http/https]
30 policy_agent_port=${1:-8081}
31 a1_sim_OSC_port=${2:-30001}
32 a1_sim_STD_port=${3:-30005}
34 SHELL_FOLDER=$(cd "$(dirname "$0")";pwd)
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 protocol: "$httpx
43 if [ "$res" != "$expect" ]; then
44 echo "$res is not expected! exit!"
49 echo "policy agent status:"
50 curlString="curl -skw %{http_code} $httpx://localhost:$policy_agent_port/status"
53 expect="hunky dory200"
58 curlString="curl -skw %{http_code} $httpx://localhost:$a1_sim_OSC_port/counter/interface"
66 curlString="curl -skw %{http_code} $httpx://localhost:$a1_sim_STD_port/counter/interface"
73 echo "create policy type 1 to ric1:"
74 curlString="curl -X PUT -skw %{http_code} $httpx://localhost:$a1_sim_OSC_port/policytype?id=1 -H Content-Type:application/json --data-binary @${SHELL_FOLDER}/testdata/OSC/policy_type.json"
77 expect="Policy type 1 is OK.201"
81 echo "create policy type 2 to ric2:"
82 curlString="curl -skw %{http_code} $httpx://localhost:$a1_sim_STD_port/policytype?id=2 -X PUT -H Accept:application/json -H Content-Type:application/json -H X-Requested-With:XMLHttpRequest --data-binary @${SHELL_FOLDER}/testdata/v2/policy_type.json"
85 expect="Policy type 2 is OK.201"
90 echo "policy types from policy agent:"
91 curlString="curl -skw %{http_code} $httpx://localhost:$policy_agent_port/a1-policy/v2/policy-types"
94 expect="{\"policytype_ids\":[\"\",\"1\",\"2\"]}200"
95 if [ "$res" == "$expect" ]; then
103 echo "create service ric-registration to policy agent:"
104 curlString="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 @${SHELL_FOLDER}/testdata/v2/service.json"
111 echo "create policy aa8feaa88d944d919ef0e83f2172a5000 to ric1 with type 1 and service controlpanel via policy agent:"
112 curlString="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 @${SHELL_FOLDER}/testdata/v2/policy_osc.json"
119 echo "policy numbers from ric1:"
120 curlString="curl -skw %{http_code} $httpx://localhost:$a1_sim_OSC_port/counter/num_instances"
127 echo "create policy aa8feaa88d944d919ef0e83f2172a5100 to ric2 with type 2 and service controlpanel via policy agent:"
128 curlString="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 @${SHELL_FOLDER}/testdata/v2/policy_std_v2.json"
135 echo "policy numbers from ric2:"
136 curlString="curl -skw %{http_code} $httpx://localhost:$a1_sim_STD_port/counter/num_instances"
143 echo "policy id aa8feaa88d944d919ef0e83f2172a5000 from policy agent:"
144 curlString="curl -s -o /dev/null -I -w %{http_code} $httpx://localhost:$policy_agent_port/a1-policy/v2/policies/aa8feaa88d944d919ef0e83f2172a5000"
151 echo "policy id aa8feaa88d944d919ef0e83f2172a5100 from policy agent:"
152 curlString="curl -s -o /dev/null -I -w %{http_code} $httpx://localhost:$policy_agent_port/a1-policy/v2/policies/aa8feaa88d944d919ef0e83f2172a5100"