Updates of function test for f-release
[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 ONAP-JAKARTA ORAN-CHERRY ORAN-D-RELEASE ORAN-E-RELEASE ORAN-F-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_agent_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 [ "$PMS_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 if [ $RUNMODE == "DOCKER" ]; then
69     start_consul_cbs
70 fi
71
72 start_control_panel $SIM_GROUP/$CONTROL_PANEL_COMPOSE_DIR/$CONTROL_PANEL_CONFIG_FILE
73
74 if [ ! -z "$NRT_GATEWAY_APP_NAME" ]; then
75     start_gateway $SIM_GROUP/$NRT_GATEWAY_COMPOSE_DIR/$NRT_GATEWAY_CONFIG_FILE
76 fi
77
78 start_policy_agent NORPOXY $SIM_GROUP/$POLICY_AGENT_COMPOSE_DIR/$POLICY_AGENT_CONFIG_FILE
79
80 prepare_consul_config      NOSDNC  ".consul_config.json"
81
82 if [ $RUNMODE == "KUBE" ]; then
83     agent_load_config                       ".consul_config.json"
84 else
85     consul_config_app                      ".consul_config.json"
86 fi
87
88 set_agent_debug
89
90 mr_equal requests_submitted 0
91
92 #Check agent alive
93 api_get_status 200
94
95 #Print simulator interface version
96 sim_print ricsim_g1_1 interface
97 sim_print ricsim_g2_1 interface
98 if [ "$PMS_VERSION" == "V2" ]; then
99     sim_print ricsim_g3_1 interface
100 fi
101
102 api_put_service 201 "service1" 15 "$CR_SERVICE_APP_PATH_0/service1"
103
104 api_get_services 200 "service1" "service1" 15 "$CR_SERVICE_APP_PATH_0/service1"
105
106 api_put_service 201 "service2" 120 "$CR_SERVICE_APP_PATH_0/service2"
107
108 api_get_services 200 "service2" "service2" 120 "$CR_SERVICE_APP_PATH_0/service2"
109
110 api_put_service 200 "service1" 50 "$CR_SERVICE_APP_PATH_0/service1"
111 api_put_service 200 "service2" 180 "$CR_SERVICE_APP_PATH_0/service2"
112
113 api_get_services 200 "service1" "service1" 50 "$CR_SERVICE_APP_PATH_0/service1"
114 api_get_services 200 "service2" "service2" 180 "$CR_SERVICE_APP_PATH_0/service2"
115
116 api_get_service_ids 200 "service1" "service2"
117
118 sleep_wait 30 "Waiting for keep alive timeout"
119
120 api_get_services 200 "service1" "service1" 50 "$CR_SERVICE_APP_PATH_0/service1"
121 api_get_services 200 "service2" "service2" 180 "$CR_SERVICE_APP_PATH_0/service2"
122
123 sleep_wait 100 "Waiting for keep alive timeout"
124
125 api_get_services 404 "service1"
126 api_get_services 200 "service2" "service2" 180 "$CR_SERVICE_APP_PATH_0/service2"
127
128 api_delete_services 204 "service2"
129
130 api_get_services 404 "service1"
131 api_get_services 404 "service2"
132
133 api_put_service 201 "service3" 60 "$CR_SERVICE_APP_PATH_0/service3"
134
135 api_get_services 200 "service3" "service3" 60 "$CR_SERVICE_APP_PATH_0/service3"
136
137 sleep_wait 30 "Waiting for keep alive timeout"
138
139 api_put_service 200 "service3" 60 "$CR_SERVICE_APP_PATH_0/service3"
140
141 sleep_wait 100 "Waiting for keep alive timeout"
142
143 api_get_services 404 "service3"
144
145 api_put_service 201 "service4" 120 "$CR_SERVICE_APP_PATH_0/service4"
146
147 sleep_wait 60 "Waiting for keep alive timeout"
148
149 api_get_services 200 "service4" "service4" 120 "$CR_SERVICE_APP_PATH_0/service4"
150
151 api_put_services_keepalive 200 "service4"
152
153 sleep_wait 90 "Waiting for keep alive timeout"
154
155 api_get_services 200 "service4" "service4" 120 "$CR_SERVICE_APP_PATH_0/service4"
156
157 api_delete_services 204 "service4"
158
159 api_get_services 404 "service4"
160
161 api_get_services 404 "service1"
162 api_get_services 404 "service2"
163 api_get_services 404 "service3"
164
165 api_get_service_ids 200
166
167 api_delete_services 404 "service1"
168 api_delete_services 404 "service2"
169 api_delete_services 404 "service3"
170 api_delete_services 404 "service4"
171
172 api_put_services_keepalive 404 "service1"
173 api_put_services_keepalive 404 "service2"
174 api_put_services_keepalive 404 "service3"
175 api_put_services_keepalive 404 "service4"
176
177 # Policy delete after timeout
178 api_put_service 201 "service10" 600 "$CR_SERVICE_APP_PATH_0/service10"
179
180 sim_put_policy_type 201 ricsim_g1_1 1 testdata/OSC/sim_1.json
181
182 if [ "$PMS_VERSION" == "V2" ]; then
183
184     sim_put_policy_type 201 ricsim_g3_1 STD_QOS2_0.1.0 testdata/STD2/sim_qos2.json
185
186     api_equal json:rics 3 300
187
188     #api_equal json:policy_schemas 2 120
189
190     api_equal json:policy-types 3 120
191
192     api_equal json:policies 0
193 else
194     api_equal json:rics 2 300
195
196     api_equal json:policy_schemas 2 120
197
198     api_equal json:policy_types 2
199
200     api_equal json:policies 0
201 fi
202
203 if [ "$PMS_VERSION" == "V2" ]; then
204     notificationurl=$CR_SERVICE_APP_PATH_0"/test"
205 else
206     notificationurl=""
207 fi
208
209 api_put_policy 201 "service10" ricsim_g1_1 1 5000 NOTRANSIENT $notificationurl testdata/OSC/pi1_template.json
210 api_put_policy 201 "service10" ricsim_g2_1 NOTYPE 5100 NOTRANSIENT $notificationurl testdata/STD/pi1_template.json
211
212 if [ "$PMS_VERSION" == "V2" ]; then
213     api_put_policy 201 "service10" ricsim_g3_1 STD_QOS2_0.1.0 5200 NOTRANSIENT $notificationurl testdata/STD2/pi_qos2_template.json
214     api_equal json:policies 3
215 else
216     api_equal json:policies 2
217 fi
218
219 sim_equal ricsim_g1_1 num_instances 1
220 sim_equal ricsim_g2_1 num_instances 1
221
222 api_put_policy 201 "service10" ricsim_g1_1 1 5001 true $notificationurl testdata/OSC/pi1_template.json
223 api_put_policy 201 "service10" ricsim_g2_1 NOTYPE 5101 true $notificationurl testdata/STD/pi1_template.json
224
225 if [ "$PMS_VERSION" == "V2" ]; then
226     api_put_policy 201 "service10" ricsim_g3_1 STD_QOS2_0.1.0 5201 true $notificationurl testdata/STD2/pi_qos2_template.json
227     api_equal json:policies 6
228 else
229     api_equal json:policies 4
230 fi
231
232 sim_equal ricsim_g1_1 num_instances 2
233 sim_equal ricsim_g2_1 num_instances 2
234 if [ "$PMS_VERSION" == "V2" ]; then
235     sim_equal ricsim_g3_1 num_instances 2
236 fi
237
238 sim_post_delete_instances 200 ricsim_g1_1
239 sim_post_delete_instances 200 ricsim_g2_1
240
241 if [ "$PMS_VERSION" == "V2" ]; then
242     sim_post_delete_instances 200 ricsim_g3_1
243 fi
244
245 #Wait for recreate of non transient policy
246 if [ "$PMS_VERSION" == "V2" ]; then
247     api_equal json:policies 3 180
248 else
249     api_equal json:policies 2 180
250 fi
251
252 sim_equal ricsim_g1_1 num_instances 1
253 sim_equal ricsim_g2_1 num_instances 1
254 if [ "$PMS_VERSION" == "V2" ]; then
255     sim_equal ricsim_g3_1 num_instances 1
256 fi
257
258 api_put_service 200 "service10" 10 "$CR_SERVICE_APP_PATH_0/service10"
259
260 #Wait for service expiry
261 api_equal json:policies 0 120
262
263 sim_equal ricsim_g1_1 num_instances 0
264 sim_equal ricsim_g2_1 num_instances 0
265 if [ "$PMS_VERSION" == "V2" ]; then
266     sim_equal ricsim_g3_1 num_instances 0
267 fi
268
269 api_get_service_ids 200
270
271 mr_equal requests_submitted 0
272
273 check_policy_agent_logs
274
275 #### TEST COMPLETE ####
276
277 store_logs          END
278
279 print_result
280
281 auto_clean_environment