blob: 65a957e34b7bdb335f34a78defd08b4c4ab6f3fa [file] [log] [blame]
ecaiyanlinux727354a2021-01-21 14:41:14 +01001#!/bin/bash
2
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
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] [http/https]
29
30policy_agent_port=${1:-8081}
31a1_sim_OSC_port=${2:-30001}
32a1_sim_STD_port=${3:-30005}
33httpx=${4:-"http"}
34SHELL_FOLDER=$(cd "$(dirname "$0")";pwd)
35
36echo "using policy_agent port: "$policy_agent_port
37echo "using a1-sim-OSC port: "$a1_sim_OSC_port
38echo "using a1-sim-STD port: "$a1_sim_STD_port
39echo "using protocol: "$httpx
40echo -e "\n"
41
42checkRes (){
43 if [ "$res" != "$expect" ]; then
44 echo "$res is not expected! exit!"
45 exit 1;
46 fi
47}
48
49echo "policy agent status:"
50curlString="curl -skw %{http_code} $httpx://localhost:$policy_agent_port/status"
51res=$($curlString)
52echo "$res"
53expect="hunky dory200"
54checkRes
55echo -e "\n"
56
57echo "ric1 version:"
58curlString="curl -skw %{http_code} $httpx://localhost:$a1_sim_OSC_port/counter/interface"
59res=$($curlString)
60echo "$res"
61expect="OSC_2.1.0200"
62checkRes
63echo -e "\n"
64
65echo "ric2 version:"
66curlString="curl -skw %{http_code} $httpx://localhost:$a1_sim_STD_port/counter/interface"
67res=$($curlString)
68echo "$res"
69expect="STD_2.0.0200"
70checkRes
71echo -e "\n"
72
73echo "create policy type 1 to ric1:"
74curlString="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"
75res=$($curlString)
76echo "$res"
77expect="Policy type 1 is OK.201"
78checkRes
79echo -e "\n"
80
81echo "create policy type 2 to ric2:"
82curlString="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"
83res=$($curlString)
84echo "$res"
85expect="Policy type 2 is OK.201"
86checkRes
87echo -e "\n"
88
89for i in {1..12}; do
90 echo "policy types from policy agent:"
91 curlString="curl -skw %{http_code} $httpx://localhost:$policy_agent_port/a1-policy/v2/policy-types"
92 res=$($curlString)
93 echo "$res"
94 expect="{\"policytype_ids\":[\"1\",\"2\"]}200"
95 if [ "$res" == "$expect" ]; then
96 echo -e "\n"
97 break;
98 else
99 sleep $i
100 fi
101done
102
103echo "create service ric-registration to policy agent:"
104curlString="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"
105res=$($curlString)
106echo "$res"
107expect="201"
108checkRes
109echo -e "\n"
110
111echo "create policy aa8feaa88d944d919ef0e83f2172a5000 to ric1 with type 1 and service controlpanel via policy agent:"
112curlString="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"
113res=$($curlString)
114echo "$res"
115expect="201"
116checkRes
117echo -e "\n"
118
119echo "policy numbers from ric1:"
120curlString="curl -skw %{http_code} $httpx://localhost:$a1_sim_OSC_port/counter/num_instances"
121res=$($curlString)
122echo "$res"
123expect="1200"
124checkRes
125echo -e "\n"
126
127echo "create policy aa8feaa88d944d919ef0e83f2172a5100 to ric2 with type 2 and service controlpanel via policy agent:"
128curlString="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"
129res=$($curlString)
130echo "$res"
131expect="201"
132checkRes
133echo -e "\n"
134
135echo "policy numbers from ric2:"
136curlString="curl -skw %{http_code} $httpx://localhost:$a1_sim_STD_port/counter/num_instances"
137res=$($curlString)
138echo "$res"
139expect="1200"
140checkRes
141echo -e "\n"
142
143echo "policy id aa8feaa88d944d919ef0e83f2172a5000 from policy agent:"
144curlString="curl -s -o /dev/null -I -w %{http_code} $httpx://localhost:$policy_agent_port/a1-policy/v2/policies/aa8feaa88d944d919ef0e83f2172a5000"
145res=$($curlString)
146echo "$res"
147expect="200"
148checkRes
149echo -e "\n"
150
151echo "policy id aa8feaa88d944d919ef0e83f2172a5100 from policy agent:"
152curlString="curl -s -o /dev/null -I -w %{http_code} $httpx://localhost:$policy_agent_port/a1-policy/v2/policies/aa8feaa88d944d919ef0e83f2172a5100"
153res=$($curlString)
154echo "$res"
155expect="200"
156checkRes
157echo -e "\n"