ecaiyanlinux | 426ce5f | 2020-05-30 15:17:59 +0200 | [diff] [blame] | 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 | # ./fill_data.sh [policy-agent port] [a1-sim-OSC port] [a1-sim-STD 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 | httpx=${4:-"http"} |
| 34 | |
| 35 | echo "using policy_agent port: "$policy_agent_port |
| 36 | echo "using a1-sim-OSC port: "$a1_sim_OSC_port |
| 37 | echo "using a1-sim-STD port: "$a1_sim_STD_port |
| 38 | echo "using protocol: "$httpx |
| 39 | echo -e "\n" |
| 40 | |
| 41 | echo "policy agent status:" |
| 42 | curl -skw " %{http_code}" $httpx://localhost:$policy_agent_port/status |
| 43 | echo -e "\n" |
| 44 | |
| 45 | echo "ric1 version:" |
| 46 | curl -skw " %{http_code}" $httpx://localhost:$a1_sim_OSC_port/counter/interface |
| 47 | echo -e "\n" |
| 48 | |
| 49 | echo "ric2 version:" |
| 50 | curl -skw " %{http_code}" $httpx://localhost:$a1_sim_STD_port/counter/interface |
| 51 | echo -e "\n" |
| 52 | |
| 53 | echo "create policy type 1 to ric1:" |
| 54 | 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 |
| 55 | echo -e "\n" |
| 56 | |
| 57 | for i in {1..12}; do |
| 58 | echo "policy types from policy agent:" |
| 59 | curlString="curl -skw %{http_code} $httpx://localhost:$policy_agent_port/policy_types" |
| 60 | res=$($curlString) |
| 61 | echo "$res" |
| 62 | expect="[\"\",\"1\"]200" |
| 63 | if [ "$res" == "$expect" ]; then |
| 64 | echo -e "\n" |
| 65 | break; |
| 66 | else |
| 67 | sleep $i |
| 68 | fi |
| 69 | done |
| 70 | |
| 71 | echo "create service 1 to policy agent:" |
| 72 | curl -k -X PUT -sw " %{http_code}" -H accept:application/json -H Content-Type:application/json "$httpx://localhost:$policy_agent_port/service" --data-binary @testdata/service.json |
| 73 | echo -e "\n" |
| 74 | |
| 75 | echo "create policy 2000 to ric1 with type1 and service1 via policy agent:" |
| 76 | curl -k -X PUT -sw " %{http_code}" -H accept:application/json -H Content-Type:application/json "$httpx://localhost:$policy_agent_port/policy?id=2000&ric=ric1&service=service1&type=1" --data-binary @testdata/policy.json |
| 77 | echo -e "\n" |
| 78 | |
| 79 | echo "policy numbers from ric1:" |
| 80 | curl -skw " %{http_code}" $httpx://localhost:$a1_sim_OSC_port/counter/num_instances |
| 81 | echo -e "\n" |
| 82 | |
| 83 | echo "create policy 2100 to ric2 with service1 via policy agent, no type:" |
| 84 | curl -k -X PUT -sw " %{http_code}" -H accept:application/json -H Content-Type:application/json "$httpx://localhost:$policy_agent_port/policy?id=2100&ric=ric2&service=service1" --data-binary @testdata/policy.json |
| 85 | echo -e "\n" |
| 86 | |
| 87 | echo "policy numbers from ric2:" |
| 88 | curl -skw " %{http_code}" $httpx://localhost:$a1_sim_STD_port/counter/num_instances |
| 89 | echo -e "\n" |
| 90 | |
| 91 | echo "policy id 2000 from policy agent:" |
| 92 | curl -k -X GET -sw " %{http_code}" $httpx://localhost:$policy_agent_port/policy?id=2000 |
| 93 | echo -e "\n" |
| 94 | |
| 95 | echo "policy id 2100 from policy agent:" |
| 96 | curl -k -X GET -sw " %{http_code}" $httpx://localhost:$policy_agent_port/policy?id=2100 |
| 97 | echo -e "\n" |