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