b9168cdc737e4e3670f56e7764c691b103da396b
[nonrtric.git] / test / auto-test / FTC110.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
21 TC_ONELINE_DESCR="Testing of service registration timeouts and keepalive"
22
23 #App names to include in the test when running docker, space separated list
24 DOCKER_INCLUDED_IMAGES="CBS CONSUL CP CR MR A1PMS RICSIM NGW KUBEPROXY"
25
26 #App names to include in the test when running kubernetes, space separated list
27 KUBE_INCLUDED_IMAGES="CP CR MR A1PMS RICSIM KUBEPROXY NGW"
28 #Prestarted app (not started by script) to include in the test when running kubernetes, space separated list
29 KUBE_PRESTARTED_IMAGES=""
30
31 #Ignore image in DOCKER_INCLUDED_IMAGES, KUBE_INCLUDED_IMAGES if
32 #the image is not configured in the supplied env_file
33 #Used for images not applicable to all supported profile
34 CONDITIONALLY_IGNORED_IMAGES="CBS CONSUL NGW"
35
36 #Supported test environment profiles
37 SUPPORTED_PROFILES="ONAP-GUILIN ONAP-HONOLULU ONAP-ISTANBUL ONAP-JAKARTA ONAP-KOHN ONAP-LONDON  ORAN-CHERRY ORAN-D-RELEASE ORAN-E-RELEASE ORAN-F-RELEASE ORAN-G-RELEASE ORAN-H-RELEASE"
38 #Supported run modes
39 SUPPORTED_RUNMODES="DOCKER KUBE"
40
41 . ../common/testcase_common.sh $@
42
43 setup_testenvironment
44
45 #### TEST BEGIN ####
46
47 generate_policy_uuid
48
49 use_cr_http
50 use_simulator_http
51 use_mr_http
52 use_a1pms_rest_http
53
54 clean_environment
55
56 start_kube_proxy
57
58 start_ric_simulators ricsim_g1 1  OSC_2.1.0
59 start_ric_simulators ricsim_g2 1  STD_1.1.3
60 if [ "$A1PMS_VERSION" == "V2" ]; then
61     start_ric_simulators ricsim_g3 1  STD_2.0.0
62 fi
63
64 start_mr
65
66 start_cr 1
67
68 start_control_panel $SIM_GROUP/$CONTROL_PANEL_COMPOSE_DIR/$CONTROL_PANEL_CONFIG_FILE
69
70 if [ ! -z "$NRT_GATEWAY_APP_NAME" ]; then
71     start_gateway $SIM_GROUP/$NRT_GATEWAY_COMPOSE_DIR/$NRT_GATEWAY_CONFIG_FILE
72 fi
73
74 start_a1pms NORPOXY $SIM_GROUP/$A1PMS_COMPOSE_DIR/$A1PMS_CONFIG_FILE
75
76 __CONFIG_HEADER="NOHEADER"
77 if [ $RUNMODE == "KUBE" ]; then
78     __CONFIG_HEADER="HEADER"
79 else
80     if [[ "$A1PMS_FEATURE_LEVEL" == *"NOCONSUL"* ]]; then
81         __CONFIG_HEADER="HEADER"
82     fi
83 fi
84 prepare_consul_config      NOSDNC  ".consul_config.json" $__CONFIG_HEADER
85
86 if [ $RUNMODE == "KUBE" ]; then
87     a1pms_load_config                       ".consul_config.json"
88 else
89     if [[ "$A1PMS_FEATURE_LEVEL" == *"NOCONSUL"* ]]; then
90         a1pms_api_put_configuration 200 ".consul_config.json"
91     else
92         start_consul_cbs
93         consul_config_app                   ".consul_config.json"
94     fi
95 fi
96
97 set_a1pms_debug
98
99 mr_equal requests_submitted 0
100
101 sleep_wait 120 "Let A1PMS cofiguration take effect"
102
103 #Check a1pms alive
104 a1pms_api_get_status 200
105
106 #Print simulator interface version
107 sim_print ricsim_g1_1 interface
108 sim_print ricsim_g2_1 interface
109 if [ "$A1PMS_VERSION" == "V2" ]; then
110     sim_print ricsim_g3_1 interface
111 fi
112
113 a1pms_api_put_service 201 "service1" 15 "$CR_SERVICE_APP_PATH_0/service1"
114
115 a1pms_api_get_services 200 "service1" "service1" 15 "$CR_SERVICE_APP_PATH_0/service1"
116
117 a1pms_api_put_service 201 "service2" 120 "$CR_SERVICE_APP_PATH_0/service2"
118
119 a1pms_api_get_services 200 "service2" "service2" 120 "$CR_SERVICE_APP_PATH_0/service2"
120
121 a1pms_api_put_service 200 "service1" 50 "$CR_SERVICE_APP_PATH_0/service1"
122 a1pms_api_put_service 200 "service2" 180 "$CR_SERVICE_APP_PATH_0/service2"
123
124 a1pms_api_get_services 200 "service1" "service1" 50 "$CR_SERVICE_APP_PATH_0/service1"
125 a1pms_api_get_services 200 "service2" "service2" 180 "$CR_SERVICE_APP_PATH_0/service2"
126
127 a1pms_api_get_service_ids 200 "service1" "service2"
128
129 sleep_wait 30 "Waiting for keep alive timeout"
130
131 a1pms_api_get_services 200 "service1" "service1" 50 "$CR_SERVICE_APP_PATH_0/service1"
132 a1pms_api_get_services 200 "service2" "service2" 180 "$CR_SERVICE_APP_PATH_0/service2"
133
134 sleep_wait 100 "Waiting for keep alive timeout"
135
136 a1pms_api_get_services 404 "service1"
137 a1pms_api_get_services 200 "service2" "service2" 180 "$CR_SERVICE_APP_PATH_0/service2"
138
139 a1pms_api_delete_services 204 "service2"
140
141 a1pms_api_get_services 404 "service1"
142 a1pms_api_get_services 404 "service2"
143
144 a1pms_api_put_service 201 "service3" 60 "$CR_SERVICE_APP_PATH_0/service3"
145
146 a1pms_api_get_services 200 "service3" "service3" 60 "$CR_SERVICE_APP_PATH_0/service3"
147
148 sleep_wait 30 "Waiting for keep alive timeout"
149
150 a1pms_api_put_service 200 "service3" 60 "$CR_SERVICE_APP_PATH_0/service3"
151
152 sleep_wait 100 "Waiting for keep alive timeout"
153
154 a1pms_api_get_services 404 "service3"
155
156 a1pms_api_put_service 201 "service4" 120 "$CR_SERVICE_APP_PATH_0/service4"
157
158 sleep_wait 60 "Waiting for keep alive timeout"
159
160 a1pms_api_get_services 200 "service4" "service4" 120 "$CR_SERVICE_APP_PATH_0/service4"
161
162 a1pms_api_put_services_keepalive 200 "service4"
163
164 sleep_wait 90 "Waiting for keep alive timeout"
165
166 a1pms_api_get_services 200 "service4" "service4" 120 "$CR_SERVICE_APP_PATH_0/service4"
167
168 a1pms_api_delete_services 204 "service4"
169
170 a1pms_api_get_services 404 "service4"
171
172 a1pms_api_get_services 404 "service1"
173 a1pms_api_get_services 404 "service2"
174 a1pms_api_get_services 404 "service3"
175
176 a1pms_api_get_service_ids 200
177
178 a1pms_api_delete_services 404 "service1"
179 a1pms_api_delete_services 404 "service2"
180 a1pms_api_delete_services 404 "service3"
181 a1pms_api_delete_services 404 "service4"
182
183 a1pms_api_put_services_keepalive 404 "service1"
184 a1pms_api_put_services_keepalive 404 "service2"
185 a1pms_api_put_services_keepalive 404 "service3"
186 a1pms_api_put_services_keepalive 404 "service4"
187
188 # Policy delete after timeout
189 a1pms_api_put_service 201 "service10" 600 "$CR_SERVICE_APP_PATH_0/service10"
190
191 sim_put_policy_type 201 ricsim_g1_1 1 testdata/OSC/sim_1.json
192
193 if [ "$A1PMS_VERSION" == "V2" ]; then
194
195     sim_put_policy_type 201 ricsim_g3_1 STD_QOS2_0.1.0 testdata/STD2/sim_qos2.json
196
197     a1pms_equal json:rics 3 300
198
199     #a1pms_equal json:policy_schemas 2 120
200
201     a1pms_equal json:policy-types 3 120
202
203     a1pms_equal json:policies 0
204 else
205     a1pms_equal json:rics 2 300
206
207     a1pms_equal json:policy_schemas 2 120
208
209     a1pms_equal json:policy_types 2
210
211     a1pms_equal json:policies 0
212 fi
213
214 if [ "$A1PMS_VERSION" == "V2" ]; then
215     notificationurl=$CR_SERVICE_APP_PATH_0"/test"
216 else
217     notificationurl=""
218 fi
219
220 a1pms_api_put_policy 201 "service10" ricsim_g1_1 1 5000 NOTRANSIENT $notificationurl testdata/OSC/pi1_template.json
221 a1pms_api_put_policy 201 "service10" ricsim_g2_1 NOTYPE 5100 NOTRANSIENT $notificationurl testdata/STD/pi1_template.json
222
223 if [ "$A1PMS_VERSION" == "V2" ]; then
224     a1pms_api_put_policy 201 "service10" ricsim_g3_1 STD_QOS2_0.1.0 5200 NOTRANSIENT $notificationurl testdata/STD2/pi_qos2_template.json
225     a1pms_equal json:policies 3
226 else
227     a1pms_equal json:policies 2
228 fi
229
230 sim_equal ricsim_g1_1 num_instances 1
231 sim_equal ricsim_g2_1 num_instances 1
232
233 a1pms_api_put_policy 201 "service10" ricsim_g1_1 1 5001 true $notificationurl testdata/OSC/pi1_template.json
234 a1pms_api_put_policy 201 "service10" ricsim_g2_1 NOTYPE 5101 true $notificationurl testdata/STD/pi1_template.json
235
236 if [ "$A1PMS_VERSION" == "V2" ]; then
237     a1pms_api_put_policy 201 "service10" ricsim_g3_1 STD_QOS2_0.1.0 5201 true $notificationurl testdata/STD2/pi_qos2_template.json
238     a1pms_equal json:policies 6
239 else
240     a1pms_equal json:policies 4
241 fi
242
243 sim_equal ricsim_g1_1 num_instances 2
244 sim_equal ricsim_g2_1 num_instances 2
245 if [ "$A1PMS_VERSION" == "V2" ]; then
246     sim_equal ricsim_g3_1 num_instances 2
247 fi
248
249 sim_post_delete_instances 200 ricsim_g1_1
250 sim_post_delete_instances 200 ricsim_g2_1
251
252 if [ "$A1PMS_VERSION" == "V2" ]; then
253     sim_post_delete_instances 200 ricsim_g3_1
254 fi
255
256 #Wait for recreate of non transient policy
257 if [ "$A1PMS_VERSION" == "V2" ]; then
258     a1pms_equal json:policies 3 180
259 else
260     a1pms_equal json:policies 2 180
261 fi
262
263 sim_equal ricsim_g1_1 num_instances 1
264 sim_equal ricsim_g2_1 num_instances 1
265 if [ "$A1PMS_VERSION" == "V2" ]; then
266     sim_equal ricsim_g3_1 num_instances 1
267 fi
268
269 a1pms_api_put_service 200 "service10" 10 "$CR_SERVICE_APP_PATH_0/service10"
270
271 #Wait for service expiry
272 a1pms_equal json:policies 0 120
273
274 sim_equal ricsim_g1_1 num_instances 0
275 sim_equal ricsim_g2_1 num_instances 0
276 if [ "$A1PMS_VERSION" == "V2" ]; then
277     sim_equal ricsim_g3_1 num_instances 0
278 fi
279
280 a1pms_api_get_service_ids 200
281
282 mr_equal requests_submitted 0
283
284 check_a1pms_logs
285
286 #### TEST COMPLETE ####
287
288 store_logs          END
289
290 print_result
291
292 auto_clean_environment