Functional Test Updates for I Release
[nonrtric.git] / test / auto-test / FTC110.sh
1 #!/bin/bash
2
3 #  ============LICENSE_START===============================================
4 #  Copyright (C) 2020-2023 Nordix Foundation. All rights reserved.
5 #  Copyright (C) 2023 OpenInfra Foundation Europe. All rights reserved.
6 #  ========================================================================
7 #  Licensed under the Apache License, Version 2.0 (the "License");
8 #  you may not use this file except in compliance with the License.
9 #  You may obtain a copy of the License at
10 #
11 #       http://www.apache.org/licenses/LICENSE-2.0
12 #
13 #  Unless required by applicable law or agreed to in writing, software
14 #  distributed under the License is distributed on an "AS IS" BASIS,
15 #  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 #  See the License for the specific language governing permissions and
17 #  limitations under the License.
18 #  ============LICENSE_END=================================================
19 #
20
21
22 TC_ONELINE_DESCR="Testing of service registration timeouts and keepalive"
23
24 #App names to include in the test when running docker, space separated list
25 DOCKER_INCLUDED_IMAGES="CP CR MR A1PMS RICSIM NGW KUBEPROXY"
26
27 #App names to include in the test when running kubernetes, space separated list
28 KUBE_INCLUDED_IMAGES="CP CR MR A1PMS RICSIM KUBEPROXY NGW"
29 #Pre-started app (not started by script) to include in the test when running kubernetes, space separated list
30 KUBE_PRESTARTED_IMAGES=""
31
32 #Ignore image in DOCKER_INCLUDED_IMAGES, KUBE_INCLUDED_IMAGES if
33 #the image is not configured in the supplied env_file
34 #Used for images not applicable to all supported profile
35 CONDITIONALLY_IGNORED_IMAGES="NGW"
36
37 #Supported test environment profiles
38 SUPPORTED_PROFILES="ONAP-KOHN ONAP-LONDON ONAP-MONTREAL  ORAN-G-RELEASE ORAN-H-RELEASE ORAN-I-RELEASE"
39 #Supported run modes
40 SUPPORTED_RUNMODES="DOCKER KUBE"
41
42 . ../common/testcase_common.sh $@
43
44 setup_testenvironment
45
46 #### TEST BEGIN ####
47
48 sim_generate_policy_uuid
49
50 use_cr_http
51 use_simulator_http
52 use_mr_http
53 use_a1pms_rest_http
54
55 clean_environment
56
57 start_kube_proxy
58
59 start_ric_simulators ricsim_g1 1  OSC_2.1.0
60 start_ric_simulators ricsim_g2 1  STD_1.1.3
61 start_ric_simulators ricsim_g3 1  STD_2.0.0
62
63 if [[ "$A1PMS_FEATURE_LEVEL" == *"NO-DMAAP"* ]]; then
64     :
65 else
66     start_mr
67 fi
68
69 start_cr 1
70
71 start_control_panel $SIM_GROUP/$CONTROL_PANEL_COMPOSE_DIR/$CONTROL_PANEL_CONFIG_FILE
72
73 if [ ! -z "$NRT_GATEWAY_APP_NAME" ]; then
74     start_gateway $SIM_GROUP/$NRT_GATEWAY_COMPOSE_DIR/$NRT_GATEWAY_CONFIG_FILE
75 fi
76
77 start_a1pms NORPOXY $SIM_GROUP/$A1PMS_COMPOSE_DIR/$A1PMS_CONFIG_FILE
78
79
80 prepare_a1pms_config      NOSDNC  ".a1pms_config.json"
81
82 if [ $RUNMODE == "KUBE" ]; then
83     a1pms_load_config                       ".a1pms_config.json"
84 else
85     a1pms_api_put_configuration 200 ".a1pms_config.json"
86 fi
87
88 set_a1pms_debug
89
90 if [[ "$A1PMS_FEATURE_LEVEL" == *"NO-DMAAP"* ]]; then
91     :
92 else
93     mr_equal requests_submitted 0
94 fi
95
96 sleep_wait 120 "Let A1PMS configuration take effect"
97
98 #Check a1pms alive
99 a1pms_api_get_status 200
100
101 #Print simulator interface version
102 sim_print ricsim_g1_1 interface
103 sim_print ricsim_g2_1 interface
104 sim_print ricsim_g3_1 interface
105
106 a1pms_api_put_service 201 "service1" 15 "$CR_SERVICE_APP_PATH_0/service1"
107
108 a1pms_api_get_services 200 "service1" "service1" 15 "$CR_SERVICE_APP_PATH_0/service1"
109
110 a1pms_api_put_service 201 "service2" 120 "$CR_SERVICE_APP_PATH_0/service2"
111
112 a1pms_api_get_services 200 "service2" "service2" 120 "$CR_SERVICE_APP_PATH_0/service2"
113
114 a1pms_api_put_service 200 "service1" 50 "$CR_SERVICE_APP_PATH_0/service1"
115 a1pms_api_put_service 200 "service2" 180 "$CR_SERVICE_APP_PATH_0/service2"
116
117 a1pms_api_get_services 200 "service1" "service1" 50 "$CR_SERVICE_APP_PATH_0/service1"
118 a1pms_api_get_services 200 "service2" "service2" 180 "$CR_SERVICE_APP_PATH_0/service2"
119
120 a1pms_api_get_service_ids 200 "service1" "service2"
121
122 sleep_wait 30 "Waiting for keep alive timeout"
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 sleep_wait 100 "Waiting for keep alive timeout"
128
129 a1pms_api_get_services 404 "service1"
130 a1pms_api_get_services 200 "service2" "service2" 180 "$CR_SERVICE_APP_PATH_0/service2"
131
132 a1pms_api_delete_services 204 "service2"
133
134 a1pms_api_get_services 404 "service1"
135 a1pms_api_get_services 404 "service2"
136
137 a1pms_api_put_service 201 "service3" 60 "$CR_SERVICE_APP_PATH_0/service3"
138
139 a1pms_api_get_services 200 "service3" "service3" 60 "$CR_SERVICE_APP_PATH_0/service3"
140
141 sleep_wait 30 "Waiting for keep alive timeout"
142
143 a1pms_api_put_service 200 "service3" 60 "$CR_SERVICE_APP_PATH_0/service3"
144
145 sleep_wait 100 "Waiting for keep alive timeout"
146
147 a1pms_api_get_services 404 "service3"
148
149 a1pms_api_put_service 201 "service4" 120 "$CR_SERVICE_APP_PATH_0/service4"
150
151 sleep_wait 60 "Waiting for keep alive timeout"
152
153 a1pms_api_get_services 200 "service4" "service4" 120 "$CR_SERVICE_APP_PATH_0/service4"
154
155 a1pms_api_put_services_keepalive 200 "service4"
156
157 sleep_wait 90 "Waiting for keep alive timeout"
158
159 a1pms_api_get_services 200 "service4" "service4" 120 "$CR_SERVICE_APP_PATH_0/service4"
160
161 a1pms_api_delete_services 204 "service4"
162
163 a1pms_api_get_services 404 "service4"
164
165 a1pms_api_get_services 404 "service1"
166 a1pms_api_get_services 404 "service2"
167 a1pms_api_get_services 404 "service3"
168
169 a1pms_api_get_service_ids 200
170
171 a1pms_api_delete_services 404 "service1"
172 a1pms_api_delete_services 404 "service2"
173 a1pms_api_delete_services 404 "service3"
174 a1pms_api_delete_services 404 "service4"
175
176 a1pms_api_put_services_keepalive 404 "service1"
177 a1pms_api_put_services_keepalive 404 "service2"
178 a1pms_api_put_services_keepalive 404 "service3"
179 a1pms_api_put_services_keepalive 404 "service4"
180
181 # Policy delete after timeout
182 a1pms_api_put_service 201 "service10" 600 "$CR_SERVICE_APP_PATH_0/service10"
183
184 sim_put_policy_type 201 ricsim_g1_1 1 testdata/OSC/sim_1.json
185
186 sim_put_policy_type 201 ricsim_g3_1 STD_QOS2_0.1.0 testdata/STD2/sim_qos2.json
187
188 a1pms_equal json:rics 3 300
189
190 #a1pms_equal json:policy_schemas 2 120
191
192 a1pms_equal json:policy-types 3 120
193
194 a1pms_equal json:policies 0
195
196 notificationurl=$CR_SERVICE_APP_PATH_0"/test"
197
198 a1pms_api_put_policy 201 "service10" ricsim_g1_1 1 5000 NOTRANSIENT $notificationurl testdata/OSC/pi1_template.json
199 a1pms_api_put_policy 201 "service10" ricsim_g2_1 NOTYPE 5100 NOTRANSIENT $notificationurl testdata/STD/pi1_template.json
200
201 a1pms_api_put_policy 201 "service10" ricsim_g3_1 STD_QOS2_0.1.0 5200 NOTRANSIENT $notificationurl testdata/STD2/pi_qos2_template.json
202 a1pms_equal json:policies 3
203
204 sim_equal ricsim_g1_1 num_instances 1
205 sim_equal ricsim_g2_1 num_instances 1
206
207 a1pms_api_put_policy 201 "service10" ricsim_g1_1 1 5001 true $notificationurl testdata/OSC/pi1_template.json
208 a1pms_api_put_policy 201 "service10" ricsim_g2_1 NOTYPE 5101 true $notificationurl testdata/STD/pi1_template.json
209
210 a1pms_api_put_policy 201 "service10" ricsim_g3_1 STD_QOS2_0.1.0 5201 true $notificationurl testdata/STD2/pi_qos2_template.json
211 a1pms_equal json:policies 6
212
213 sim_equal ricsim_g1_1 num_instances 2
214 sim_equal ricsim_g2_1 num_instances 2
215 sim_equal ricsim_g3_1 num_instances 2
216
217 sim_post_delete_instances 200 ricsim_g1_1
218 sim_post_delete_instances 200 ricsim_g2_1
219
220 sim_post_delete_instances 200 ricsim_g3_1
221
222 #Wait for recreate of non transient policy
223 a1pms_equal json:policies 3 180
224
225 sim_equal ricsim_g1_1 num_instances 1
226 sim_equal ricsim_g2_1 num_instances 1
227 sim_equal ricsim_g3_1 num_instances 1
228
229 a1pms_api_put_service 200 "service10" 10 "$CR_SERVICE_APP_PATH_0/service10"
230
231 #Wait for service expiry
232 a1pms_equal json:policies 0 120
233
234 sim_equal ricsim_g1_1 num_instances 0
235 sim_equal ricsim_g2_1 num_instances 0
236 sim_equal ricsim_g3_1 num_instances 0
237
238 a1pms_api_get_service_ids 200
239
240 if [[ "$A1PMS_FEATURE_LEVEL" == *"NO-DMAAP"* ]]; then
241     :
242 else
243     mr_equal requests_submitted 0
244 fi
245
246 check_a1pms_logs
247
248 #### TEST COMPLETE ####
249
250 store_logs          END
251
252 print_result
253
254 auto_clean_environment