50cf98f377ef781be52b40ef8739c713cecec810
[nonrtric.git] / test / auto-test / FTC10.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 TC_ONELINE_DESCR="Basic use case, register service, create/update policy, delete policy, de-register service using both STD and OSC interface while mixing REST and Dmaap"
21
22 #App names to include in the test when running docker, space separated list
23 DOCKER_INCLUDED_IMAGES="CBS CONSUL CP CR MR PA RICSIM NGW KUBEPROXY"
24
25 #App names to include in the test when running kubernetes, space separated list
26 KUBE_INCLUDED_IMAGES=" MR CR PA RICSIM CP KUBEPROXY NGW"
27 #Prestarted app (not started by script) to include in the test when running kubernetes, space separated list
28 KUBE_PRESTARTED_IMAGES=""
29
30 #Ignore image in DOCKER_INCLUDED_IMAGES, KUBE_INCLUDED_IMAGES if
31 #the image is not configured in the supplied env_file
32 #Used for images not applicable to all supported profile
33 CONDITIONALLY_IGNORED_IMAGES="NGW"
34
35 #Supported test environment profiles
36 SUPPORTED_PROFILES="ONAP-GUILIN ONAP-HONOLULU ONAP-ISTANBUL ONAP-JAKARTA ORAN-CHERRY ORAN-D-RELEASE ORAN-E-RELEASE ORAN-F-RELEASE"
37 #Supported run modes
38 SUPPORTED_RUNMODES="DOCKER KUBE"
39
40 . ../common/testcase_common.sh $@
41
42 setup_testenvironment
43
44 #### TEST BEGIN ####
45
46 generate_policy_uuid
47
48 use_simulator_http
49 use_mr_http
50 use_agent_rest_http
51
52
53 clean_environment
54
55 start_kube_proxy
56
57 start_ric_simulators  ricsim_g1 3 OSC_2.1.0
58
59 start_ric_simulators  ricsim_g2 5 STD_1.1.3
60
61 if [ "$PMS_VERSION" == "V2" ]; then
62     start_ric_simulators ricsim_g3 1  STD_2.0.0
63 fi
64
65 start_mr
66
67 start_cr 1
68
69 if [ $RUNMODE == "DOCKER" ]; then
70     start_consul_cbs
71 fi
72
73 start_control_panel $SIM_GROUP/$CONTROL_PANEL_COMPOSE_DIR/$CONTROL_PANEL_CONFIG_FILE
74
75 if [ ! -z "$NRT_GATEWAY_APP_NAME" ]; then
76     start_gateway $SIM_GROUP/$NRT_GATEWAY_COMPOSE_DIR/$NRT_GATEWAY_CONFIG_FILE
77 fi
78
79 start_policy_agent NORPOXY $SIM_GROUP/$POLICY_AGENT_COMPOSE_DIR/$POLICY_AGENT_CONFIG_FILE
80
81 set_agent_debug
82
83 use_agent_rest_http
84
85 prepare_consul_config      NOSDNC  ".consul_config.json"
86
87 if [ $RUNMODE == "KUBE" ]; then
88     agent_load_config                       ".consul_config.json"
89 else
90     consul_config_app                      ".consul_config.json"
91 fi
92
93 api_get_status 200
94
95 sim_print ricsim_g1_1 interface
96
97 sim_print ricsim_g2_1 interface
98
99 if [ "$PMS_VERSION" == "V2" ]; then
100     sim_print ricsim_g3_1 interface
101 fi
102
103 sim_put_policy_type 201 ricsim_g1_1 1 testdata/OSC/sim_1.json
104
105 if [ "$PMS_VERSION" == "V2" ]; then
106     sim_put_policy_type 201 ricsim_g3_1 STD_QOS_0_2_0 testdata/STD2/sim_qos.json
107     api_equal json:policy-types 3 300
108 else
109     api_equal json:policy_types 2 300
110 fi
111
112 # Create policies
113
114 if [ "$PMS_VERSION" == "V2" ]; then
115     notificationurl=$CR_SERVICE_APP_PATH_0"/test"
116 else
117     notificationurl=""
118 fi
119
120 use_agent_rest_http
121
122 api_put_service 201 "service1" 3600 "$CR_SERVICE_APP_PATH_0/1"
123
124 api_put_policy 201 "service1" ricsim_g1_1 1 2000 NOTRANSIENT $notificationurl testdata/OSC/pi1_template.json 1
125
126 sim_equal ricsim_g1_1 num_instances 1
127
128
129 use_agent_dmaap_http
130
131 api_put_policy 201 "service1" ricsim_g1_1 1 3000 NOTRANSIENT $notificationurl testdata/OSC/pi1_template.json 1
132
133 sim_equal ricsim_g1_1 num_instances 2
134
135
136 use_agent_rest_http
137
138 api_put_policy 201 "service1" ricsim_g2_1 NOTYPE 2100 NOTRANSIENT $notificationurl testdata/STD/pi1_template.json 1
139
140 sim_equal ricsim_g2_1 num_instances 1
141
142
143 use_agent_dmaap_http
144
145 api_put_policy 201 "service1" ricsim_g2_1 NOTYPE 3100 NOTRANSIENT $notificationurl testdata/STD/pi1_template.json 1
146
147 sim_equal ricsim_g2_1 num_instances 2
148
149 if [ "$PMS_VERSION" == "V2" ]; then
150     use_agent_rest_http
151
152     api_put_policy 201 "service1" ricsim_g3_1 STD_QOS_0_2_0 2200 true $notificationurl testdata/STD2/pi_qos_template.json 1
153
154     sim_equal ricsim_g3_1 num_instances 1
155
156     use_agent_dmaap_http
157
158     api_put_policy 201 "service1" ricsim_g3_1 STD_QOS_0_2_0 3200 NOTRANSIENT $notificationurl testdata/STD2/pi_qos_template.json 1
159
160     sim_equal ricsim_g3_1 num_instances 2
161
162 fi
163
164 #Update policies
165 use_agent_rest_http
166
167 api_put_service 200 "service1" 3600 "$CR_SERVICE_APP_PATH_0/1"
168
169 api_put_policy 200 "service1" ricsim_g1_1 1 2000 NOTRANSIENT $notificationurl testdata/OSC/pi1_template.json 1
170
171 sim_equal ricsim_g1_1 num_instances 2
172
173
174 use_agent_dmaap_http
175
176 api_put_policy 200 "service1" ricsim_g1_1 1 3000 NOTRANSIENT $notificationurl testdata/OSC/pi1_template.json 1
177
178 sim_equal ricsim_g1_1 num_instances 2
179
180
181 use_agent_rest_http
182
183
184 api_put_policy 200 "service1" ricsim_g2_1 NOTYPE 2100 NOTRANSIENT $notificationurl testdata/STD/pi1_template.json 1
185
186 sim_equal ricsim_g2_1 num_instances 2
187
188
189 use_agent_dmaap_http
190
191 api_put_policy 200 "service1" ricsim_g2_1 NOTYPE 3100 NOTRANSIENT $notificationurl testdata/STD/pi1_template.json 1
192
193 sim_equal ricsim_g2_1 num_instances 2
194
195 if [ "$PMS_VERSION" == "V2" ]; then
196     use_agent_rest_http
197
198     api_put_policy 200 "service1" ricsim_g3_1 STD_QOS_0_2_0 2200 true $notificationurl testdata/STD2/pi_qos_template.json 1
199
200     sim_equal ricsim_g3_1 num_instances 2
201
202
203     use_agent_dmaap_http
204
205     api_put_policy 200 "service1" ricsim_g3_1 STD_QOS_0_2_0 3200 true $notificationurl testdata/STD2/pi_qos_template.json 1
206
207     sim_equal ricsim_g3_1 num_instances 2
208 fi
209
210 # Check policies
211 if [ "$PMS_VERSION" == "V2" ]; then
212     api_get_policy 200 2000 testdata/OSC/pi1_template.json "service1" ricsim_g1_1 1 false $notificationurl
213     api_get_policy 200 3000 testdata/OSC/pi1_template.json "service1" ricsim_g1_1 1 false $notificationurl
214     api_get_policy 200 2100 testdata/STD/pi1_template.json "service1" ricsim_g2_1 NOTYPE false $notificationurl
215     api_get_policy 200 3100 testdata/STD/pi1_template.json "service1" ricsim_g2_1 NOTYPE false $notificationurl
216     api_get_policy 200 2200 testdata/STD2/pi_qos_template.json "service1" ricsim_g3_1 STD_QOS_0_2_0 true $notificationurl
217     api_get_policy 200 3200 testdata/STD2/pi_qos_template.json "service1" ricsim_g3_1 STD_QOS_0_2_0 true $notificationurl
218 else
219     api_get_policy 200 2000 testdata/OSC/pi1_template.json
220     api_get_policy 200 3000 testdata/OSC/pi1_template.json
221     api_get_policy 200 2100 testdata/STD/pi1_template.json
222     api_get_policy 200 3100 testdata/STD/pi1_template.json
223 fi
224
225 sim_equal ricsim_g1_1 num_instances 2
226 sim_equal ricsim_g2_1 num_instances 2
227
228 if [ "$PMS_VERSION" == "V2" ]; then
229     sim_equal ricsim_g3_1 num_instances 2
230 fi
231
232 # Remove policies
233
234 use_agent_dmaap_http
235 api_delete_policy 204 2000
236 use_agent_rest_http
237 api_delete_policy 204 3000
238 use_agent_dmaap_http
239 api_delete_policy 204 2100
240 use_agent_rest_http
241 api_delete_policy 204 3100
242 if [ "$PMS_VERSION" == "V2" ]; then
243     use_agent_dmaap_http
244     api_delete_policy 204 2200
245     use_agent_rest_http
246     api_delete_policy 204 3200
247 fi
248
249 sim_equal ricsim_g1_1 num_instances 0
250 sim_equal ricsim_g2_1 num_instances 0
251
252 if [ "$PMS_VERSION" == "V2" ]; then
253     sim_equal ricsim_g3_1 num_instances 0
254 fi
255
256 # Check remote host access to simulator
257
258 sim_contains_str ricsim_g1_1 remote_hosts $POLICY_AGENT_APP_NAME
259 sim_contains_str ricsim_g2_1 remote_hosts $POLICY_AGENT_APP_NAME
260 if [ "$PMS_VERSION" == "V2" ]; then
261     sim_contains_str ricsim_g3_1 remote_hosts $POLICY_AGENT_APP_NAME
262 fi
263
264 # Check policy removal
265 use_agent_rest_http
266 api_get_policy 404 2000
267 api_get_policy 404 3000
268 api_get_policy 404 2100
269 api_get_policy 404 3100
270
271 if [ "$PMS_VERSION" == "V2" ]; then
272     api_get_policy 404 2200
273     api_get_policy 404 3200
274 fi
275
276 # Remove the service
277 use_agent_dmaap_http
278 api_delete_services 204 "service1"
279
280 api_get_services 404 "service1"
281
282 check_policy_agent_logs
283
284 #### TEST COMPLETE ####
285
286 store_logs          END
287
288 print_result
289
290 auto_clean_environment