381e4659e867fb0f699d52479ceeaae8b890fcd5
[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 A1PMS RICSIM NGW KUBEPROXY"
24
25 #App names to include in the test when running kubernetes, space separated list
26 KUBE_INCLUDED_IMAGES=" MR CR A1PMS 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="CBS CONSUL 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_a1pms_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 [ "$A1PMS_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     if [[ "$A1PMS_FEATURE_LEVEL" != *"NOCONSUL"* ]]; then
71         start_consul_cbs
72     fi
73 fi
74
75 start_control_panel $SIM_GROUP/$CONTROL_PANEL_COMPOSE_DIR/$CONTROL_PANEL_CONFIG_FILE
76
77 if [ ! -z "$NRT_GATEWAY_APP_NAME" ]; then
78     start_gateway $SIM_GROUP/$NRT_GATEWAY_COMPOSE_DIR/$NRT_GATEWAY_CONFIG_FILE
79 fi
80
81 start_a1pms NORPOXY $SIM_GROUP/$A1PMS_COMPOSE_DIR/$A1PMS_CONFIG_FILE
82
83 set_a1pms_debug
84
85 use_a1pms_rest_http
86
87 __CONFIG_HEADER="NOHEADER"
88 if [ $RUNMODE == "KUBE" ]; then
89     __CONFIG_HEADER="HEADER"
90 else
91     if [[ "$A1PMS_FEATURE_LEVEL" == *"NOCONSUL"* ]]; then
92         __CONFIG_HEADER="HEADER"
93     fi
94 fi
95 prepare_consul_config      NOSDNC  ".consul_config.json" $__CONFIG_HEADER
96
97 if [ $RUNMODE == "KUBE" ]; then
98     a1pms_load_config                       ".consul_config.json"
99 else
100     if [[ "$A1PMS_FEATURE_LEVEL" == *"NOCONSUL"* ]]; then
101         a1pms_api_put_configuration 200 ".consul_config.json"
102     else
103         consul_config_app                   ".consul_config.json"
104     fi
105 fi
106
107 a1pms_api_get_status 200
108
109 sim_print ricsim_g1_1 interface
110
111 sim_print ricsim_g2_1 interface
112
113 if [ "$A1PMS_VERSION" == "V2" ]; then
114     sim_print ricsim_g3_1 interface
115 fi
116
117 sim_put_policy_type 201 ricsim_g1_1 1 testdata/OSC/sim_1.json
118
119 if [ "$A1PMS_VERSION" == "V2" ]; then
120     sim_put_policy_type 201 ricsim_g3_1 STD_QOS_0_2_0 testdata/STD2/sim_qos.json
121     a1pms_equal json:policy-types 3 300
122 else
123     a1pms_equal json:policy_types 2 300
124 fi
125
126 # Create policies
127
128 if [ "$A1PMS_VERSION" == "V2" ]; then
129     notificationurl=$CR_SERVICE_APP_PATH_0"/test"
130 else
131     notificationurl=""
132 fi
133
134 use_a1pms_rest_http
135
136 a1pms_api_put_service 201 "service1" 3600 "$CR_SERVICE_APP_PATH_0/1"
137
138 a1pms_api_put_policy 201 "service1" ricsim_g1_1 1 2000 NOTRANSIENT $notificationurl testdata/OSC/pi1_template.json 1
139
140 sim_equal ricsim_g1_1 num_instances 1
141
142
143 use_a1pms_dmaap_http
144
145 a1pms_api_put_policy 201 "service1" ricsim_g1_1 1 3000 NOTRANSIENT $notificationurl testdata/OSC/pi1_template.json 1
146
147 sim_equal ricsim_g1_1 num_instances 2
148
149
150 use_a1pms_rest_http
151
152 a1pms_api_put_policy 201 "service1" ricsim_g2_1 NOTYPE 2100 NOTRANSIENT $notificationurl testdata/STD/pi1_template.json 1
153
154 sim_equal ricsim_g2_1 num_instances 1
155
156
157 use_a1pms_dmaap_http
158
159 a1pms_api_put_policy 201 "service1" ricsim_g2_1 NOTYPE 3100 NOTRANSIENT $notificationurl testdata/STD/pi1_template.json 1
160
161 sim_equal ricsim_g2_1 num_instances 2
162
163 if [ "$A1PMS_VERSION" == "V2" ]; then
164     use_a1pms_rest_http
165
166     a1pms_api_put_policy 201 "service1" ricsim_g3_1 STD_QOS_0_2_0 2200 true $notificationurl testdata/STD2/pi_qos_template.json 1
167
168     sim_equal ricsim_g3_1 num_instances 1
169
170     use_a1pms_dmaap_http
171
172     a1pms_api_put_policy 201 "service1" ricsim_g3_1 STD_QOS_0_2_0 3200 NOTRANSIENT $notificationurl testdata/STD2/pi_qos_template.json 1
173
174     sim_equal ricsim_g3_1 num_instances 2
175
176 fi
177
178 #Update policies
179 use_a1pms_rest_http
180
181 a1pms_api_put_service 200 "service1" 3600 "$CR_SERVICE_APP_PATH_0/1"
182
183 a1pms_api_put_policy 200 "service1" ricsim_g1_1 1 2000 NOTRANSIENT $notificationurl testdata/OSC/pi1_template.json 1
184
185 sim_equal ricsim_g1_1 num_instances 2
186
187
188 use_a1pms_dmaap_http
189
190 a1pms_api_put_policy 200 "service1" ricsim_g1_1 1 3000 NOTRANSIENT $notificationurl testdata/OSC/pi1_template.json 1
191
192 sim_equal ricsim_g1_1 num_instances 2
193
194
195 use_a1pms_rest_http
196
197
198 a1pms_api_put_policy 200 "service1" ricsim_g2_1 NOTYPE 2100 NOTRANSIENT $notificationurl testdata/STD/pi1_template.json 1
199
200 sim_equal ricsim_g2_1 num_instances 2
201
202
203 use_a1pms_dmaap_http
204
205 a1pms_api_put_policy 200 "service1" ricsim_g2_1 NOTYPE 3100 NOTRANSIENT $notificationurl testdata/STD/pi1_template.json 1
206
207 sim_equal ricsim_g2_1 num_instances 2
208
209 if [ "$A1PMS_VERSION" == "V2" ]; then
210     use_a1pms_rest_http
211
212     a1pms_api_put_policy 200 "service1" ricsim_g3_1 STD_QOS_0_2_0 2200 true $notificationurl testdata/STD2/pi_qos_template.json 1
213
214     sim_equal ricsim_g3_1 num_instances 2
215
216
217     use_a1pms_dmaap_http
218
219     a1pms_api_put_policy 200 "service1" ricsim_g3_1 STD_QOS_0_2_0 3200 true $notificationurl testdata/STD2/pi_qos_template.json 1
220
221     sim_equal ricsim_g3_1 num_instances 2
222 fi
223
224 # Check policies
225 if [ "$A1PMS_VERSION" == "V2" ]; then
226     a1pms_api_get_policy 200 2000 testdata/OSC/pi1_template.json "service1" ricsim_g1_1 1 false $notificationurl
227     a1pms_api_get_policy 200 3000 testdata/OSC/pi1_template.json "service1" ricsim_g1_1 1 false $notificationurl
228     a1pms_api_get_policy 200 2100 testdata/STD/pi1_template.json "service1" ricsim_g2_1 NOTYPE false $notificationurl
229     a1pms_api_get_policy 200 3100 testdata/STD/pi1_template.json "service1" ricsim_g2_1 NOTYPE false $notificationurl
230     a1pms_api_get_policy 200 2200 testdata/STD2/pi_qos_template.json "service1" ricsim_g3_1 STD_QOS_0_2_0 true $notificationurl
231     a1pms_api_get_policy 200 3200 testdata/STD2/pi_qos_template.json "service1" ricsim_g3_1 STD_QOS_0_2_0 true $notificationurl
232 else
233     a1pms_api_get_policy 200 2000 testdata/OSC/pi1_template.json
234     a1pms_api_get_policy 200 3000 testdata/OSC/pi1_template.json
235     a1pms_api_get_policy 200 2100 testdata/STD/pi1_template.json
236     a1pms_api_get_policy 200 3100 testdata/STD/pi1_template.json
237 fi
238
239 sim_equal ricsim_g1_1 num_instances 2
240 sim_equal ricsim_g2_1 num_instances 2
241
242 if [ "$A1PMS_VERSION" == "V2" ]; then
243     sim_equal ricsim_g3_1 num_instances 2
244 fi
245
246 # Remove policies
247
248 use_a1pms_dmaap_http
249 a1pms_api_delete_policy 204 2000
250 use_a1pms_rest_http
251 a1pms_api_delete_policy 204 3000
252 use_a1pms_dmaap_http
253 a1pms_api_delete_policy 204 2100
254 use_a1pms_rest_http
255 a1pms_api_delete_policy 204 3100
256 if [ "$A1PMS_VERSION" == "V2" ]; then
257     use_a1pms_dmaap_http
258     a1pms_api_delete_policy 204 2200
259     use_a1pms_rest_http
260     a1pms_api_delete_policy 204 3200
261 fi
262
263 sim_equal ricsim_g1_1 num_instances 0
264 sim_equal ricsim_g2_1 num_instances 0
265
266 if [ "$A1PMS_VERSION" == "V2" ]; then
267     sim_equal ricsim_g3_1 num_instances 0
268 fi
269
270 # Check remote host access to simulator
271
272 sim_contains_str ricsim_g1_1 remote_hosts $A1PMS_APP_NAME
273 sim_contains_str ricsim_g2_1 remote_hosts $A1PMS_APP_NAME
274 if [ "$A1PMS_VERSION" == "V2" ]; then
275     sim_contains_str ricsim_g3_1 remote_hosts $A1PMS_APP_NAME
276 fi
277
278 # Check policy removal
279 use_a1pms_rest_http
280 a1pms_api_get_policy 404 2000
281 a1pms_api_get_policy 404 3000
282 a1pms_api_get_policy 404 2100
283 a1pms_api_get_policy 404 3100
284
285 if [ "$A1PMS_VERSION" == "V2" ]; then
286     a1pms_api_get_policy 404 2200
287     a1pms_api_get_policy 404 3200
288 fi
289
290 # Remove the service
291 use_a1pms_dmaap_http
292 a1pms_api_delete_services 204 "service1"
293
294 a1pms_api_get_services 404 "service1"
295
296 check_a1pms_logs
297
298 #### TEST COMPLETE ####
299
300 store_logs          END
301
302 print_result
303
304 auto_clean_environment