Functional Test Updates for I Release
[nonrtric.git] / test / auto-test / FTC850.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="Create/delete policies in parallel over a number of rics using a number of child process"
22
23 #App names to include in the test when running docker, space separated list
24 DOCKER_INCLUDED_IMAGES="CP CR MR 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 MR 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   REST+SDNC"
52
53 #Test a1pms and simulator protocol versions (others are http only)
54 TESTED_PROTOCOLS="HTTP HTTPS"
55
56 NUM_RICS=20
57 NUM_POLICIES_PER_RIC=500
58
59 sim_generate_policy_uuid
60
61 notificationurl=$CR_SERVICE_APP_PATH_0"/test"
62
63 for __httpx in $TESTED_PROTOCOLS ; do
64     for interface in $TESTED_VARIANTS ; do
65
66         echo "#####################################################################"
67         echo "#####################################################################"
68         echo "### Testing a1pms: "$interface" and "$__httpx
69         echo "#####################################################################"
70         echo "#####################################################################"
71
72         if [ $__httpx == "HTTPS" ]; then
73             use_cr_https
74             use_simulator_https
75             if [[ "$A1PMS_FEATURE_LEVEL" == *"NO-DMAAP"* ]]; then
76                 :
77             else
78                 use_mr_https
79             fi
80             if [[ $interface = *"SDNC"* ]]; then
81                 if [[ "$SDNC_FEATURE_LEVEL" == *"NO_NB_HTTPS"* ]]; then
82                     deviation "SDNC does not support NB https"
83                     use_sdnc_http
84                 else
85                     use_sdnc_https
86                 fi
87             fi
88             use_a1pms_rest_https
89         else
90             use_cr_http
91             use_simulator_http
92             if [[ "$A1PMS_FEATURE_LEVEL" == *"NO-DMAAP"* ]]; then
93                 :
94             else
95                 use_mr_http
96             fi
97             if [[ $interface = *"SDNC"* ]]; then
98                 use_sdnc_http
99             fi
100             use_a1pms_rest_http
101         fi
102
103         # Clean container and start all needed containers #
104         clean_environment
105
106         start_kube_proxy
107
108         start_ric_simulators ricsim_g1 $NUM_RICS OSC_2.1.0
109
110         start_control_panel $SIM_GROUP/$CONTROL_PANEL_COMPOSE_DIR/$CONTROL_PANEL_CONFIG_FILE
111
112         if [ ! -z "$NRT_GATEWAY_APP_NAME" ]; then
113             start_gateway $SIM_GROUP/$NRT_GATEWAY_COMPOSE_DIR/$NRT_GATEWAY_CONFIG_FILE
114         fi
115
116         start_a1pms NORPOXY $SIM_GROUP/$A1PMS_COMPOSE_DIR/$A1PMS_CONFIG_FILE
117
118         set_a1pms_debug
119
120
121
122         if [[ $interface = *"SDNC"* ]]; then
123             start_sdnc
124             controller_api_wait_for_status_ok 200 ricsim_g1_1
125             prepare_a1pms_config      SDNC  ".a1pms_config.json"
126         else
127             prepare_a1pms_config      NOSDNC  ".a1pms_config.json"
128         fi
129
130         if [ $RUNMODE == "KUBE" ]; then
131             a1pms_load_config                       ".a1pms_config.json"
132         else
133             a1pms_api_put_configuration 200 ".a1pms_config.json"
134         fi
135
136         if [[ "$A1PMS_FEATURE_LEVEL" == *"NO-DMAAP"* ]]; then
137             :
138         else
139             start_mr #Just to prevent errors in the a1pms log...
140         fi
141
142         start_cr 1
143
144         sleep_wait 120 "Let A1PMS configuration take effect"
145
146         a1pms_api_get_status 200
147
148         for ((i=1; i<=$NUM_RICS; i++))
149         do
150             sim_print ricsim_g1_$i interface
151         done
152
153         echo "Load policy type in group 1 simulators"
154         for ((i=1; i<=$NUM_RICS; i++))
155         do
156             sim_put_policy_type 201 ricsim_g1_$i 1 testdata/OSC/sim_1.json
157         done
158
159          a1pms_equal json:policy-types 1 300  #Wait for the a1pms to refresh types from the simulator
160
161         a1pms_api_put_service 201 "serv1" 600 "$CR_SERVICE_APP_PATH_0/1"
162
163         echo "Check the number of types in the a1pms for each ric is 1"
164         for ((i=1; i<=$NUM_RICS; i++))
165         do
166             a1pms_equal json:policy-types?ric_id=ricsim_g1_$i 1 120
167         done
168
169         START_ID=2000
170
171         start_timer "Create $((NUM_POLICIES_PER_RIC*$NUM_RICS)) polices over $interface using "$__httpx
172
173         a1pms_api_put_policy_parallel 201 "serv1" ricsim_g1_ $NUM_RICS 1 $START_ID NOTRANSIENT $notificationurl testdata/OSC/pi1_template.json $NUM_POLICIES_PER_RIC 7
174
175         print_timer "Create $((NUM_POLICIES_PER_RIC*$NUM_RICS)) polices over $interface using "$__httpx
176
177         INSTANCES=$(($NUM_RICS*$NUM_POLICIES_PER_RIC))
178         a1pms_equal json:policies $INSTANCES
179
180         for ((i=1; i<=$NUM_RICS; i++))
181         do
182             sim_equal ricsim_g1_$i num_instances $NUM_POLICIES_PER_RIC
183         done
184
185         start_timer "Delete $((NUM_POLICIES_PER_RIC*$NUM_RICS)) polices over $interface using "$__httpx
186
187         a1pms_api_delete_policy_parallel 204 $NUM_RICS $START_ID $NUM_POLICIES_PER_RIC 7
188
189         print_timer "Delete $((NUM_POLICIES_PER_RIC*$NUM_RICS)) polices over $interface using "$__httpx
190
191         a1pms_equal json:policies 0
192
193         for ((i=1; i<=$NUM_RICS; i++))
194         do
195             sim_equal ricsim_g1_$i num_instances 0
196         done
197
198         for ((i=1; i<=$NUM_RICS; i++))
199         do
200             if [ $interface == "REST+SDNC" ]; then
201                 sim_contains_str ricsim_g1_$i remote_hosts $SDNC_APP_NAME
202             else
203                 sim_contains_str ricsim_g1_$i remote_hosts $A1PMS_APP_NAME
204             fi
205         done
206
207         check_a1pms_logs
208         if [[ $interface = *"SDNC"* ]]; then
209             check_sdnc_logs
210         fi
211
212         store_logs          "${__httpx}__${interface}"
213
214     done
215
216 done
217
218
219 #### TEST COMPLETE ####
220
221 print_result
222
223 auto_clean_environment