Merge "Adaptation of test env to helm chart"
[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 PA 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 PA 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="NGW"
35
36 #Supported test environment profiles
37 SUPPORTED_PROFILES="ONAP-GUILIN ONAP-HONOLULU ONAP-ISTANBUL ORAN-CHERRY ORAN-D-RELEASE ORAN-E-RELEASE"
38 #Supported run modes
39 SUPPORTED_RUNMODES="DOCKER KUBE"
40
41 . ../common/testcase_common.sh  $@
42 . ../common/agent_api_functions.sh
43 . ../common/consul_cbs_functions.sh
44 . ../common/control_panel_api_functions.sh
45 . ../common/cr_api_functions.sh
46 . ../common/mr_api_functions.sh
47 . ../common/ricsimulator_api_functions.sh
48 . ../common/kube_proxy_api_functions.sh
49 . ../common/gateway_api_functions.sh
50
51 setup_testenvironment
52
53 #### TEST BEGIN ####
54
55 generate_policy_uuid
56
57 use_cr_http
58 use_simulator_http
59 use_mr_http
60 use_agent_rest_http
61
62 clean_environment
63
64 start_kube_proxy
65
66 start_ric_simulators ricsim_g1 1  OSC_2.1.0
67 start_ric_simulators ricsim_g2 1  STD_1.1.3
68 if [ "$PMS_VERSION" == "V2" ]; then
69     start_ric_simulators ricsim_g3 1  STD_2.0.0
70 fi
71
72 start_mr
73
74 start_cr
75
76 if [ $RUNMODE == "DOCKER" ]; then
77     start_consul_cbs
78 fi
79
80 start_control_panel $SIM_GROUP/$CONTROL_PANEL_COMPOSE_DIR/$CONTROL_PANEL_CONFIG_FILE
81
82 if [ ! -z "$NRT_GATEWAY_APP_NAME" ]; then
83     start_gateway $SIM_GROUP/$NRT_GATEWAY_COMPOSE_DIR/$NRT_GATEWAY_CONFIG_FILE
84 fi
85
86 start_policy_agent NORPOXY $SIM_GROUP/$POLICY_AGENT_COMPOSE_DIR/$POLICY_AGENT_CONFIG_FILE
87
88 prepare_consul_config      NOSDNC  ".consul_config.json"
89
90 if [ $RUNMODE == "KUBE" ]; then
91     agent_load_config                       ".consul_config.json"
92 else
93     consul_config_app                      ".consul_config.json"
94 fi
95
96 set_agent_debug
97
98 mr_equal requests_submitted 0
99
100 #Check agent alive
101 api_get_status 200
102
103 #Print simulator interface version
104 sim_print ricsim_g1_1 interface
105 sim_print ricsim_g2_1 interface
106 if [ "$PMS_VERSION" == "V2" ]; then
107     sim_print ricsim_g3_1 interface
108 fi
109
110 api_put_service 201 "service1" 15 "$CR_SERVICE_APP_PATH/service1"
111
112 api_get_services 200 "service1" "service1" 15 "$CR_SERVICE_APP_PATH/service1"
113
114 api_put_service 201 "service2" 120 "$CR_SERVICE_APP_PATH/service2"
115
116 api_get_services 200 "service2" "service2" 120 "$CR_SERVICE_APP_PATH/service2"
117
118 api_put_service 200 "service1" 50 "$CR_SERVICE_APP_PATH/service1"
119 api_put_service 200 "service2" 180 "$CR_SERVICE_APP_PATH/service2"
120
121 api_get_services 200 "service1" "service1" 50 "$CR_SERVICE_APP_PATH/service1"
122 api_get_services 200 "service2" "service2" 180 "$CR_SERVICE_APP_PATH/service2"
123
124 api_get_service_ids 200 "service1" "service2"
125
126 sleep_wait 30 "Waiting for keep alive timeout"
127
128 api_get_services 200 "service1" "service1" 50 "$CR_SERVICE_APP_PATH/service1"
129 api_get_services 200 "service2" "service2" 180 "$CR_SERVICE_APP_PATH/service2"
130
131 sleep_wait 100 "Waiting for keep alive timeout"
132
133 api_get_services 404 "service1"
134 api_get_services 200 "service2" "service2" 180 "$CR_SERVICE_APP_PATH/service2"
135
136 api_delete_services 204 "service2"
137
138 api_get_services 404 "service1"
139 api_get_services 404 "service2"
140
141 api_put_service 201 "service3" 60 "$CR_SERVICE_APP_PATH/service3"
142
143 api_get_services 200 "service3" "service3" 60 "$CR_SERVICE_APP_PATH/service3"
144
145 sleep_wait 30 "Waiting for keep alive timeout"
146
147 api_put_service 200 "service3" 60 "$CR_SERVICE_APP_PATH/service3"
148
149 sleep_wait 100 "Waiting for keep alive timeout"
150
151 api_get_services 404 "service3"
152
153 api_put_service 201 "service4" 120 "$CR_SERVICE_APP_PATH/service4"
154
155 sleep_wait 60 "Waiting for keep alive timeout"
156
157 api_get_services 200 "service4" "service4" 120 "$CR_SERVICE_APP_PATH/service4"
158
159 api_put_services_keepalive 200 "service4"
160
161 sleep_wait 90 "Waiting for keep alive timeout"
162
163 api_get_services 200 "service4" "service4" 120 "$CR_SERVICE_APP_PATH/service4"
164
165 api_delete_services 204 "service4"
166
167 api_get_services 404 "service4"
168
169 api_get_services 404 "service1"
170 api_get_services 404 "service2"
171 api_get_services 404 "service3"
172
173 api_get_service_ids 200
174
175 api_delete_services 404 "service1"
176 api_delete_services 404 "service2"
177 api_delete_services 404 "service3"
178 api_delete_services 404 "service4"
179
180 api_put_services_keepalive 404 "service1"
181 api_put_services_keepalive 404 "service2"
182 api_put_services_keepalive 404 "service3"
183 api_put_services_keepalive 404 "service4"
184
185 # Policy delete after timeout
186 api_put_service 201 "service10" 600 "$CR_SERVICE_APP_PATH/service10"
187
188 sim_put_policy_type 201 ricsim_g1_1 1 testdata/OSC/sim_1.json
189
190 if [ "$PMS_VERSION" == "V2" ]; then
191
192     sim_put_policy_type 201 ricsim_g3_1 STD_QOS2_0.1.0 testdata/STD2/sim_qos2.json
193
194     api_equal json:rics 3 300
195
196     #api_equal json:policy_schemas 2 120
197
198     api_equal json:policy-types 3 120
199
200     api_equal json:policies 0
201 else
202     api_equal json:rics 2 300
203
204     api_equal json:policy_schemas 2 120
205
206     api_equal json:policy_types 2
207
208     api_equal json:policies 0
209 fi
210
211 if [ "$PMS_VERSION" == "V2" ]; then
212     notificationurl=$CR_SERVICE_APP_PATH"/test"
213 else
214     notificationurl=""
215 fi
216
217 api_put_policy 201 "service10" ricsim_g1_1 1 5000 NOTRANSIENT $notificationurl testdata/OSC/pi1_template.json
218 api_put_policy 201 "service10" ricsim_g2_1 NOTYPE 5100 NOTRANSIENT $notificationurl testdata/STD/pi1_template.json
219
220 if [ "$PMS_VERSION" == "V2" ]; then
221     api_put_policy 201 "service10" ricsim_g3_1 STD_QOS2_0.1.0 5200 NOTRANSIENT $notificationurl testdata/STD2/pi_qos2_template.json
222     api_equal json:policies 3
223 else
224     api_equal json:policies 2
225 fi
226
227 sim_equal ricsim_g1_1 num_instances 1
228 sim_equal ricsim_g2_1 num_instances 1
229
230 api_put_policy 201 "service10" ricsim_g1_1 1 5001 true $notificationurl testdata/OSC/pi1_template.json
231 api_put_policy 201 "service10" ricsim_g2_1 NOTYPE 5101 true $notificationurl testdata/STD/pi1_template.json
232
233 if [ "$PMS_VERSION" == "V2" ]; then
234     api_put_policy 201 "service10" ricsim_g3_1 STD_QOS2_0.1.0 5201 true $notificationurl testdata/STD2/pi_qos2_template.json
235     api_equal json:policies 6
236 else
237     api_equal json:policies 4
238 fi
239
240 sim_equal ricsim_g1_1 num_instances 2
241 sim_equal ricsim_g2_1 num_instances 2
242 if [ "$PMS_VERSION" == "V2" ]; then
243     sim_equal ricsim_g3_1 num_instances 2
244 fi
245
246 sim_post_delete_instances 200 ricsim_g1_1
247 sim_post_delete_instances 200 ricsim_g2_1
248
249 if [ "$PMS_VERSION" == "V2" ]; then
250     sim_post_delete_instances 200 ricsim_g3_1
251 fi
252
253 #Wait for recreate of non transient policy
254 if [ "$PMS_VERSION" == "V2" ]; then
255     api_equal json:policies 3 180
256 else
257     api_equal json:policies 2 180
258 fi
259
260 sim_equal ricsim_g1_1 num_instances 1
261 sim_equal ricsim_g2_1 num_instances 1
262 if [ "$PMS_VERSION" == "V2" ]; then
263     sim_equal ricsim_g3_1 num_instances 1
264 fi
265
266 api_put_service 200 "service10" 10 "$CR_SERVICE_APP_PATH/service10"
267
268 #Wait for service expiry
269 api_equal json:policies 0 120
270
271 sim_equal ricsim_g1_1 num_instances 0
272 sim_equal ricsim_g2_1 num_instances 0
273 if [ "$PMS_VERSION" == "V2" ]; then
274     sim_equal ricsim_g3_1 num_instances 0
275 fi
276
277 api_get_service_ids 200
278
279 mr_equal requests_submitted 0
280
281 check_policy_agent_logs
282
283 #### TEST COMPLETE ####
284
285 store_logs          END
286
287 print_result
288
289 auto_clean_environment