Functional Test Updates for I Release
[nonrtric.git] / test / auto-test / FTC805.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 TC_ONELINE_DESCR="A1PMS Create 10000 policies and restart, test polices persistency"
22
23 #App names to include in the test when running docker, space separated list
24 DOCKER_INCLUDED_IMAGES="CP CR A1PMS RICSIM SDNC NGW KUBEPROXY"
25
26 #App names to include in the test when running kubernetes, space separated list
27 KUBE_INCLUDED_IMAGES="CP CR A1PMS RICSIM SDNC KUBEPROXY NGW"
28 #Pre-started 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-KOHN ONAP-LONDON ONAP-MONTREAL  ORAN-G-RELEASE ORAN-H-RELEASE ORAN-I-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 #Local vars in test script
48 ##########################
49
50 # Tested variants of REST/DMAAP/SDNC config
51 TESTED_VARIANTS="REST"
52
53 #Test a1pms and simulator protocol versions (others are http only)
54 TESTED_PROTOCOLS="HTTP"
55
56 NUM_RICS=5
57 NUM_POLICIES_PER_RIC=2000
58
59
60 sim_generate_policy_uuid
61
62 notificationurl=$CR_SERVICE_APP_PATH_0"/test"
63
64 for __httpx in $TESTED_PROTOCOLS ; do
65     for interface in $TESTED_VARIANTS ; do
66
67         echo "#####################################################################"
68         echo "#####################################################################"
69         echo "### Testing a1pms: "$interface" and "$__httpx
70         echo "#####################################################################"
71         echo "#####################################################################"
72
73         if [ $__httpx == "HTTPS" ]; then
74             use_cr_https
75             use_simulator_https
76             if [[ $interface = *"SDNC"* ]]; then
77                 if [[ "$SDNC_FEATURE_LEVEL" == *"NO_NB_HTTPS"* ]]; then
78                     deviation "SDNC does not support NB https"
79                     use_sdnc_http
80                 else
81                     use_sdnc_https
82                 fi
83             fi
84             use_a1pms_rest_https
85         else
86             use_cr_http
87             use_simulator_http
88             if [[ $interface = *"SDNC"* ]]; then
89                 use_sdnc_http
90             fi
91             use_a1pms_rest_http
92         fi
93
94         # Clean container and start all needed containers #
95         clean_environment
96
97         start_kube_proxy
98
99         start_ric_simulators ricsim_g1 $NUM_RICS STD_2.0.0
100
101         start_control_panel $SIM_GROUP/$CONTROL_PANEL_COMPOSE_DIR/$CONTROL_PANEL_CONFIG_FILE
102
103         if [ ! -z "$NRT_GATEWAY_APP_NAME" ]; then
104             start_gateway $SIM_GROUP/$NRT_GATEWAY_COMPOSE_DIR/$NRT_GATEWAY_CONFIG_FILE
105         fi
106
107         start_a1pms NORPOXY $SIM_GROUP/$A1PMS_COMPOSE_DIR/$A1PMS_CONFIG_FILE
108
109         set_a1pms_debug
110
111
112
113         if [[ $interface = *"SDNC"* ]]; then
114             start_sdnc
115             controller_api_wait_for_status_ok 200 ricsim_g1_1
116             prepare_a1pms_config      SDNC  ".a1pms_config.json"
117         else
118             prepare_a1pms_config      NOSDNC  ".a1pms_config.json"
119         fi
120
121         if [ $RUNMODE == "KUBE" ]; then
122             a1pms_load_config                       ".a1pms_config.json"
123         else
124             a1pms_api_put_configuration 200 ".a1pms_config.json"
125         fi
126
127         start_cr 1
128
129         sleep_wait 120 "Let A1PMS configuration take effect"
130
131         a1pms_api_get_status 200
132
133         for ((i=1; i<=$NUM_RICS; i++))
134         do
135             sim_print ricsim_g1_$i interface
136         done
137
138         echo "Load policy type in group 1 simulators"
139         for ((i=1; i<=$NUM_RICS; i++))
140         do
141             sim_put_policy_type 201 ricsim_g1_$i STD_QOS_0_2_0 testdata/STD2/sim_qos.json
142         done
143
144         a1pms_equal json:policy-types 1 300  #Wait for the a1pms to refresh types from the simulator
145
146         a1pms_api_put_service 201 "serv1" 0 "$CR_SERVICE_APP_PATH_0/1"
147
148         echo "Check the number of types in the a1pms for each ric is 1"
149         for ((i=1; i<=$NUM_RICS; i++))
150         do
151             a1pms_equal json:policy-types?ric_id=ricsim_g1_$i 1 120
152         done
153
154         START_ID=2000
155
156         start_timer "Create $((NUM_POLICIES_PER_RIC*$NUM_RICS)) polices over $interface using "$__httpx
157
158         a1pms_api_put_policy_parallel 201 "serv1" ricsim_g1_ $NUM_RICS STD_QOS_0_2_0 $START_ID NOTRANSIENT $notificationurl testdata/STD/pi1_template.json $NUM_POLICIES_PER_RIC 7
159
160         print_timer "Create $((NUM_POLICIES_PER_RIC*$NUM_RICS)) polices over $interface using "$__httpx
161
162         INSTANCES=$(($NUM_RICS*$NUM_POLICIES_PER_RIC))
163         a1pms_equal json:policies $INSTANCES
164
165         for ((i=1; i<=$NUM_RICS; i++))
166         do
167             sim_equal ricsim_g1_$i num_instances $NUM_POLICIES_PER_RIC
168         done
169
170         a1pms_api_get_services 200 "serv1" "serv1" 0 "$CR_SERVICE_APP_PATH_0/1"
171
172         stop_a1pms
173
174         sleep_wait 60
175
176         start_stopped_a1pms
177
178         set_a1pms_debug
179
180         a1pms_equal json:policies $INSTANCES 500
181
182         stop_a1pms
183
184         sleep_wait 60
185
186         for ((i=1; i<=$NUM_RICS; i++))
187         do
188             sim_post_delete_instances 200 ricsim_g1_$i
189         done
190
191         for ((i=1; i<=$NUM_RICS; i++))
192         do
193             sim_equal ricsim_g1_$i num_instances 0
194         done
195
196         start_stopped_a1pms
197
198         set_a1pms_debug
199
200         start_timer "Restore $((NUM_POLICIES_PER_RIC*$NUM_RICS)) polices after restart over $interface using "$__httpx
201
202         a1pms_equal json:policies $INSTANCES 500
203
204         for ((i=1; i<=$NUM_RICS; i++))
205         do
206             sim_equal ricsim_g1_$i num_instances $NUM_POLICIES_PER_RIC 500
207         done
208
209         print_timer "Restore $((NUM_POLICIES_PER_RIC*$NUM_RICS)) polices after restart over $interface using "$__httpx
210
211         a1pms_api_get_services 200 "serv1" "serv1" 0 "$CR_SERVICE_APP_PATH_0/1"
212
213         start_timer "Delete $((NUM_POLICIES_PER_RIC*$NUM_RICS)) polices over $interface using "$__httpx
214
215         a1pms_api_delete_policy_parallel 204 $NUM_RICS $START_ID $NUM_POLICIES_PER_RIC 7
216
217         print_timer "Delete $((NUM_POLICIES_PER_RIC*$NUM_RICS)) polices over $interface using "$__httpx
218
219         a1pms_equal json:policies 0
220
221         for ((i=1; i<=$NUM_RICS; i++))
222         do
223             sim_equal ricsim_g1_$i num_instances 0
224         done
225
226         stop_a1pms
227
228         sleep_wait 60
229
230         start_stopped_a1pms
231
232         set_a1pms_debug
233
234         a1pms_equal json:policies 0
235
236         for ((i=1; i<=$NUM_RICS; i++))
237         do
238             sim_equal ricsim_g1_$i num_instances 0
239         done
240
241         sleep_wait 200
242
243         a1pms_api_get_services 200 "serv1" "serv1" 0 "$CR_SERVICE_APP_PATH_0/1"
244
245         a1pms_equal json:policies 0
246
247         for ((i=1; i<=$NUM_RICS; i++))
248         do
249             sim_equal ricsim_g1_$i num_instances 0
250         done
251
252         for ((i=1; i<=$NUM_RICS; i++))
253         do
254             if [ $interface == "REST+SDNC" ]; then
255                 sim_contains_str ricsim_g1_$i remote_hosts $SDNC_APP_NAME
256             else
257                 sim_contains_str ricsim_g1_$i remote_hosts $A1PMS_APP_NAME
258             fi
259         done
260
261         check_a1pms_logs
262         if [[ $interface = *"SDNC"* ]]; then
263             check_sdnc_logs
264         fi
265
266         store_logs          "${__httpx}__${interface}"
267
268     done
269
270 done
271
272
273 #### TEST COMPLETE ####
274
275 print_result
276
277 auto_clean_environment