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