Removal of older test profiles
[nonrtric.git] / test / auto-test / FTC800.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 TC_ONELINE_DESCR="Create 10000 policies in sequence using http/https and a1pms REST/DMAAP with/without SDNC controller"
21
22 #App names to include in the test when running docker, space separated list
23 DOCKER_INCLUDED_IMAGES="CP CR MR A1PMS RICSIM SDNC NGW KUBEPROXY"
24
25 #App names to include in the test when running kubernetes, space separated list
26 KUBE_INCLUDED_IMAGES="CP CR MR A1PMS RICSIM SDNC KUBEPROXY NGW"
27 #Prestarted app (not started by script) to include in the test when running kubernetes, space separated list
28 KUBE_PRESTARTED_IMAGES=""
29
30 #Ignore image in DOCKER_INCLUDED_IMAGES, KUBE_INCLUDED_IMAGES if
31 #the image is not configured in the supplied env_file
32 #Used for images not applicable to all supported profile
33 CONDITIONALLY_IGNORED_IMAGES="NGW"
34
35 #Supported test environment profiles
36 SUPPORTED_PROFILES="ONAP-JAKARTA ONAP-KOHN ONAP-LONDON  ORAN-F-RELEASE ORAN-G-RELEASE ORAN-H-RELEASE"
37 #Supported run modes
38 SUPPORTED_RUNMODES="DOCKER KUBE"
39
40 . ../common/testcase_common.sh $@
41
42 setup_testenvironment
43
44 #### TEST BEGIN ####
45
46 generate_policy_uuid
47
48 #Local vars in test script
49 ##########################
50 # Number of policies in each sequence
51 NUM_POLICIES=10000
52
53 # Tested variants of REST/DMAAP/SDNC config
54 TESTED_VARIANTS="NOSDNC   SDNC"
55
56 #Test a1pms and simulator protocol versions (others are http only)
57 TESTED_PROTOCOLS="HTTP HTTPS"
58
59 for __httpx in $TESTED_PROTOCOLS ; do
60     for interface in $TESTED_VARIANTS ; do
61
62         echo "#####################################################################"
63         echo "#####################################################################"
64         echo "### Testing a1pms via $interface using $__httpx"
65         echo "#####################################################################"
66         echo "#####################################################################"
67
68         if [ $__httpx == "HTTPS" ]; then
69             use_cr_https
70             use_simulator_https
71             use_mr_https
72             use_a1pms_rest_https
73         else
74             use_cr_http
75             use_simulator_http
76             use_mr_http
77             use_a1pms_rest_http
78         fi
79
80         # Policy instance start id
81         START_ID=1
82
83         clean_environment
84
85         start_kube_proxy
86
87         start_ric_simulators ricsim_g1 1 OSC_2.1.0
88         start_ric_simulators ricsim_g2 1 STD_1.1.3
89         start_ric_simulators ricsim_g3 1  STD_2.0.0
90
91         start_mr
92
93         start_cr 1
94
95         start_control_panel $SIM_GROUP/$CONTROL_PANEL_COMPOSE_DIR/$CONTROL_PANEL_CONFIG_FILE
96
97         if [ ! -z "$NRT_GATEWAY_APP_NAME" ]; then
98             start_gateway $SIM_GROUP/$NRT_GATEWAY_COMPOSE_DIR/$NRT_GATEWAY_CONFIG_FILE
99         fi
100
101         start_a1pms NORPOXY $SIM_GROUP/$A1PMS_COMPOSE_DIR/$A1PMS_CONFIG_FILE
102
103         set_a1pms_debug
104
105         mr_equal requests_submitted 0
106
107         sim_put_policy_type 201 ricsim_g1_1 1 testdata/OSC/sim_1.json
108         sim_put_policy_type 201 ricsim_g3_1 STD_QOS2_0.1.0 testdata/STD2/sim_qos2.json
109
110
111         if [[ $interface == "SDNC" ]]; then
112             start_sdnc
113             prepare_a1pms_config      SDNC    ".a1pms_config.json"
114         else
115             prepare_a1pms_config      NOSDNC  ".a1pms_config.json"
116         fi
117
118         if [ $RUNMODE == "KUBE" ]; then
119             a1pms_load_config                       ".a1pms_config.json"
120         else
121             a1pms_api_put_configuration 200 ".a1pms_config.json"
122         fi
123
124         sleep_wait 120 "Let A1PMS cofiguration take effect"
125
126         a1pms_api_get_status 200
127
128         sim_print ricsim_g1_1 interface
129         sim_print ricsim_g2_1 interface
130         sim_print ricsim_g3_1 interface
131
132         a1pms_equal json:policy-types 3 300  #Wait for the a1pms to refresh types from the simulators
133
134         a1pms_api_put_service 201 "serv1" 3600 "$CR_SERVICE_APP_PATH_0/1"
135
136         notificationurl=$CR_SERVICE_APP_PATH_0"/test"
137
138         start_timer "Create polices in OSC via a1pms REST and $interface using "$__httpx
139         a1pms_api_put_policy 201 "serv1" ricsim_g1_1 1 $START_ID NOTRANSIENT $notificationurl testdata/OSC/pi1_template.json $NUM_POLICIES
140         print_timer "Create polices in OSC via a1pms REST and $interface using "$__httpx
141
142         sim_equal ricsim_g1_1 num_instances $NUM_POLICIES
143
144         START_ID=$(($START_ID+$NUM_POLICIES))
145
146         start_timer "Create polices in STD via a1pms REST and $interface using "$__httpx
147         a1pms_api_put_policy 201 "serv1" ricsim_g2_1 NOTYPE $START_ID NOTRANSIENT $notificationurl testdata/STD/pi1_template.json $NUM_POLICIES
148         print_timer "Create polices in STD via a1pms REST and $interface using "$__httpx
149
150         sim_equal ricsim_g2_1 num_instances $NUM_POLICIES
151
152
153
154         START_ID=$(($START_ID+$NUM_POLICIES))
155
156         start_timer "Create polices in STD 2 via a1pms REST and $interface using "$__httpx
157         a1pms_api_put_policy 201 "serv1" ricsim_g3_1 STD_QOS2_0.1.0 $START_ID NOTRANSIENT $notificationurl testdata/STD2/pi_qos2_template.json $NUM_POLICIES
158         print_timer "Create polices in STD via a1pms REST and $interface using "$__httpx
159
160         sim_equal ricsim_g3_1 num_instances $NUM_POLICIES
161
162
163         if [ $__httpx == "HTTPS" ]; then
164             echo "Using secure ports towards dmaap"
165             use_a1pms_dmaap_https
166         else
167             echo "Using non-secure ports towards dmaap"
168             use_a1pms_dmaap_http
169         fi
170
171         START_ID=$(($START_ID+$NUM_POLICIES))
172
173         start_timer "Create polices in OSC via a1pms DMAAP, one by one, and $interface using "$__httpx
174         a1pms_api_put_policy 201 "serv1" ricsim_g1_1 1 $START_ID NOTRANSIENT $notificationurl testdata/OSC/pi1_template.json $NUM_POLICIES
175         print_timer "Create polices in OSC via a1pms DMAAP, one by one, and $interface using "$__httpx
176
177         sim_equal ricsim_g1_1 num_instances $((2*$NUM_POLICIES))
178
179         START_ID=$(($START_ID+$NUM_POLICIES))
180
181         start_timer "Create polices in STD via a1pms DMAAP, one by one, and $interface using "$__httpx
182         a1pms_api_put_policy 201 "serv1" ricsim_g2_1 NOTYPE $START_ID NOTRANSIENT $notificationurl testdata/STD/pi1_template.json $NUM_POLICIES
183         print_timer "Create polices in STD via a1pms DMAAP, one by one, and $interface using "$__httpx
184
185         sim_equal ricsim_g2_1 num_instances $((2*$NUM_POLICIES))
186
187
188         START_ID=$(($START_ID+$NUM_POLICIES))
189
190         start_timer "Create polices in STD 2 via a1pms DMAAP, one by one, and $interface using "$__httpx
191         a1pms_api_put_policy 201 "serv1" ricsim_g3_1 STD_QOS2_0.1.0 $START_ID NOTRANSIENT $notificationurl testdata/STD2/pi_qos2_template.json $NUM_POLICIES
192         print_timer "Create polices in STD via a1pms DMAAP, one by one, and $interface using "$__httpx
193
194         sim_equal ricsim_g3_1 num_instances $((2*$NUM_POLICIES))
195
196
197         START_ID=$(($START_ID+$NUM_POLICIES))
198
199         start_timer "Create polices in OSC via a1pms DMAAP in batch and $interface using "$__httpx
200         a1pms_api_put_policy_batch 201 "serv1" ricsim_g1_1 1 $START_ID NOTRANSIENT $notificationurl testdata/OSC/pi1_template.json $NUM_POLICIES
201         print_timer "Create polices in OSC via a1pms DMAAP in batch and $interface using "$__httpx
202
203         sim_equal ricsim_g1_1 num_instances $((3*$NUM_POLICIES))
204
205         START_ID=$(($START_ID+$NUM_POLICIES))
206
207         start_timer "Create polices in STD via a1pms DMAAP in batch and $interface using "$__httpx
208         a1pms_api_put_policy_batch 201 "serv1" ricsim_g2_1 NOTYPE $START_ID NOTRANSIENT $notificationurl testdata/STD/pi1_template.json $NUM_POLICIES
209         print_timer "Create polices in STD via a1pms DMAAP in batch and $interface using "$__httpx
210
211         sim_equal ricsim_g2_1 num_instances $((3*$NUM_POLICIES))
212
213
214         START_ID=$(($START_ID+$NUM_POLICIES))
215
216         start_timer "Create polices in STD via a1pms DMAAP in batch and $interface using "$__httpx
217         a1pms_api_put_policy_batch 201 "serv1" ricsim_g3_1 STD_QOS2_0.1.0 $START_ID NOTRANSIENT $notificationurl testdata/STD2/pi_qos2_template.json $NUM_POLICIES
218         print_timer "Create polices in STD via a1pms DMAAP in batch and $interface using "$__httpx
219
220         sim_equal ricsim_g3_1 num_instances $((3*$NUM_POLICIES))
221
222
223         if [ $interface == "SDNC" ]; then
224             sim_contains_str ricsim_g1_1 remote_hosts $SDNC_APP_NAME
225             sim_contains_str ricsim_g2_1 remote_hosts $SDNC_APP_NAME
226             sim_contains_str ricsim_g3_1 remote_hosts $SDNC_APP_NAME
227         else
228             sim_contains_str ricsim_g1_1 remote_hosts $A1PMS_APP_NAME
229             sim_contains_str ricsim_g2_1 remote_hosts $A1PMS_APP_NAME
230             sim_contains_str ricsim_g3_1 remote_hosts $A1PMS_APP_NAME
231         fi
232
233         check_a1pms_logs
234         if [[ $interface = *"SDNC"* ]]; then
235             check_sdnc_logs
236         fi
237
238         store_logs          "${__httpx}__${interface}"
239     done
240 done
241
242 #### TEST COMPLETE ####
243
244 print_result
245
246 auto_clean_environment