blob: 19fd96f5f36fbba3e119b60e9dd17e76008ebb00 [file] [log] [blame]
BjornMagnussonXA70e878f2020-05-11 14:11:30 +02001#!/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
20TC_ONELINE_DESCR="Create 10000 policies in sequence using http/https and Agent REST/DMAAP with/without SDNC controller"
21
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +010022#App names to include in the test when running docker, space separated list
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +010023DOCKER_INCLUDED_IMAGES="CBS CONSUL CP CR MR PA RICSIM SDNC NGW"
BjornMagnussonXAbbd2e9d2020-05-27 21:24:06 +020024
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +010025#App names to include in the test when running kubernetes, space separated list
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +010026KUBE_INCLUDED_IMAGES="CP CR MR PA RICSIM SDNC KUBEPROXY NGW"
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +010027#Prestarted app (not started by script) to include in the test when running kubernetes, space separated list
28KUBE_PRESTARTED_IMAGES=""
29
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +010030#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
33CONDITIONALLY_IGNORED_IMAGES="NGW"
34
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +010035#Supported test environment profiles
BjornMagnussonXAfec823b2021-08-03 14:14:05 +020036SUPPORTED_PROFILES="ONAP-GUILIN ONAP-HONOLULU ONAP-ISTANBUL ORAN-CHERRY ORAN-D-RELEASE ORAN-E-RELEASE"
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +010037#Supported run modes
38SUPPORTED_RUNMODES="DOCKER KUBE"
BjornMagnussonXA49f0e5a2020-11-08 22:41:39 +010039
BjornMagnussonXA70e878f2020-05-11 14:11:30 +020040. ../common/testcase_common.sh $@
41. ../common/agent_api_functions.sh
42. ../common/ricsimulator_api_functions.sh
BjornMagnussonXA49f0e5a2020-11-08 22:41:39 +010043. ../common/cr_api_functions.sh
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +010044. ../common/mr_api_functions.sh
45. ../common/control_panel_api_functions.sh
46. ../common/controller_api_functions.sh
BjornMagnussonXAc963b732021-01-20 14:24:13 +010047. ../common/consul_cbs_functions.sh
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +010048. ../common/kube_proxy_api_functions.sh
49. ../common/gateway_api_functions.sh
50
51setup_testenvironment
BjornMagnussonXA70e878f2020-05-11 14:11:30 +020052
53#### TEST BEGIN ####
54
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +010055generate_policy_uuid
BjornMagnussonXAad047782020-06-08 15:54:11 +020056
BjornMagnussonXA70e878f2020-05-11 14:11:30 +020057#Local vars in test script
58##########################
BjornMagnussonXA70e878f2020-05-11 14:11:30 +020059# Number of policies in each sequence
60NUM_POLICIES=10000
61
62# Tested variants of REST/DMAAP/SDNC config
63TESTED_VARIANTS="NOSDNC SDNC"
64
65#Test agent and simulator protocol versions (others are http only)
66TESTED_PROTOCOLS="HTTP HTTPS"
BjornMagnussonXA2791e082020-11-12 00:52:08 +010067
BjornMagnussonXA70e878f2020-05-11 14:11:30 +020068for __httpx in $TESTED_PROTOCOLS ; do
69 for interface in $TESTED_VARIANTS ; do
70
71 echo "#####################################################################"
72 echo "#####################################################################"
73 echo "### Testing agent via $interface using $__httpx"
74 echo "#####################################################################"
75 echo "#####################################################################"
76
BjornMagnussonXA496156d2020-08-10 14:16:24 +020077 if [ $__httpx == "HTTPS" ]; then
BjornMagnussonXA496156d2020-08-10 14:16:24 +020078 use_cr_https
BjornMagnussonXAbf3700b2020-10-05 08:39:40 +020079 use_simulator_https
80 use_mr_https
81 use_agent_rest_https
BjornMagnussonXA496156d2020-08-10 14:16:24 +020082 else
BjornMagnussonXA496156d2020-08-10 14:16:24 +020083 use_cr_http
BjornMagnussonXAbf3700b2020-10-05 08:39:40 +020084 use_simulator_http
85 use_mr_http
86 use_agent_rest_http
BjornMagnussonXA496156d2020-08-10 14:16:24 +020087 fi
88
BjornMagnussonXA70e878f2020-05-11 14:11:30 +020089 # Policy instance start id
90 START_ID=1
91
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +010092 clean_environment
BjornMagnussonXA70e878f2020-05-11 14:11:30 +020093
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +010094 if [ $RUNMODE == "KUBE" ]; then
95 start_kube_proxy
96 fi
97
BjornMagnussonXA70e878f2020-05-11 14:11:30 +020098 start_ric_simulators ricsim_g1 1 OSC_2.1.0
99 start_ric_simulators ricsim_g2 1 STD_1.1.3
BjornMagnussonXA4207b832020-11-03 09:52:49 +0100100 if [ "$PMS_VERSION" == "V2" ]; then
101 start_ric_simulators ricsim_g3 1 STD_2.0.0
102 fi
BjornMagnussonXA70e878f2020-05-11 14:11:30 +0200103
104 start_mr
105
BjornMagnussonXA70e878f2020-05-11 14:11:30 +0200106 start_cr
107
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +0100108 start_control_panel $SIM_GROUP/$CONTROL_PANEL_COMPOSE_DIR/$CONTROL_PANEL_CONFIG_FILE
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +0100109
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +0100110 if [ ! -z "$NRT_GATEWAY_APP_NAME" ]; then
111 start_gateway $SIM_GROUP/$NRT_GATEWAY_COMPOSE_DIR/$NRT_GATEWAY_CONFIG_FILE
112 fi
113
114 start_policy_agent NORPOXY $SIM_GROUP/$POLICY_AGENT_COMPOSE_DIR/$POLICY_AGENT_CONFIG_FILE
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +0100115
116 set_agent_debug
117
118 mr_equal requests_submitted 0
119
BjornMagnussonXAbf3700b2020-10-05 08:39:40 +0200120 if [[ $interface == "SDNC" ]]; then
BjornMagnussonXA70e878f2020-05-11 14:11:30 +0200121 start_sdnc
BjornMagnussonXA70e878f2020-05-11 14:11:30 +0200122 prepare_consul_config SDNC ".consul_config.json"
123 else
124 prepare_consul_config NOSDNC ".consul_config.json"
125 fi
126
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +0100127 if [ $RUNMODE == "DOCKER" ]; then
128 start_consul_cbs
129 fi
BjornMagnussonXAbf3700b2020-10-05 08:39:40 +0200130
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +0100131 if [ $RUNMODE == "KUBE" ]; then
132 agent_load_config ".consul_config.json"
133 else
134 consul_config_app ".consul_config.json"
135 fi
BjornMagnussonXA70e878f2020-05-11 14:11:30 +0200136
137
138 api_get_status 200
139
140 sim_print ricsim_g1_1 interface
141 sim_print ricsim_g2_1 interface
BjornMagnussonXA2791e082020-11-12 00:52:08 +0100142 if [ "$PMS_VERSION" == "V2" ]; then
143 sim_print ricsim_g3_1 interface
144 fi
BjornMagnussonXA70e878f2020-05-11 14:11:30 +0200145
146 sim_put_policy_type 201 ricsim_g1_1 1 testdata/OSC/sim_1.json
147
BjornMagnussonXA4207b832020-11-03 09:52:49 +0100148 if [ "$PMS_VERSION" == "V2" ]; then
BjornMagnussonXA2791e082020-11-12 00:52:08 +0100149 sim_put_policy_type 201 ricsim_g3_1 STD_QOS2_0.1.0 testdata/STD2/sim_qos2.json
150
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +0100151 api_equal json:policy-types 3 300 #Wait for the agent to refresh types from the simulators
BjornMagnussonXA4207b832020-11-03 09:52:49 +0100152 else
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +0100153 api_equal json:policy_types 2 300 #Wait for the agent to refresh types from the simulators
BjornMagnussonXA4207b832020-11-03 09:52:49 +0100154 fi
BjornMagnussonXA70e878f2020-05-11 14:11:30 +0200155
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +0100156 api_put_service 201 "serv1" 3600 "$CR_SERVICE_PATH/1"
BjornMagnussonXA70e878f2020-05-11 14:11:30 +0200157
BjornMagnussonXA4207b832020-11-03 09:52:49 +0100158 if [ "$PMS_VERSION" == "V2" ]; then
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +0100159 notificationurl=$CR_SERVICE_PATH"/test"
BjornMagnussonXA4207b832020-11-03 09:52:49 +0100160 else
161 notificationurl=""
162 fi
163
BjornMagnussonXA70e878f2020-05-11 14:11:30 +0200164 start_timer "Create polices in OSC via agent REST and $interface using "$__httpx
BjornMagnussonXA4207b832020-11-03 09:52:49 +0100165 api_put_policy 201 "serv1" ricsim_g1_1 1 $START_ID NOTRANSIENT $notificationurl testdata/OSC/pi1_template.json $NUM_POLICIES
BjornMagnussonXA70e878f2020-05-11 14:11:30 +0200166 print_timer "Create polices in OSC via agent REST and $interface using "$__httpx
167
168 sim_equal ricsim_g1_1 num_instances $NUM_POLICIES
169
170 START_ID=$(($START_ID+$NUM_POLICIES))
171
172 start_timer "Create polices in STD via agent REST and $interface using "$__httpx
BjornMagnussonXA4207b832020-11-03 09:52:49 +0100173 api_put_policy 201 "serv1" ricsim_g2_1 NOTYPE $START_ID NOTRANSIENT $notificationurl testdata/STD/pi1_template.json $NUM_POLICIES
BjornMagnussonXA70e878f2020-05-11 14:11:30 +0200174 print_timer "Create polices in STD via agent REST and $interface using "$__httpx
175
176 sim_equal ricsim_g2_1 num_instances $NUM_POLICIES
177
BjornMagnussonXA2791e082020-11-12 00:52:08 +0100178 if [ "$PMS_VERSION" == "V2" ]; then
179
180 START_ID=$(($START_ID+$NUM_POLICIES))
181
182 start_timer "Create polices in STD 2 via agent REST and $interface using "$__httpx
183 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
184 print_timer "Create polices in STD via agent REST and $interface using "$__httpx
185
186 sim_equal ricsim_g3_1 num_instances $NUM_POLICIES
187 fi
188
BjornMagnussonXA496156d2020-08-10 14:16:24 +0200189 if [ $__httpx == "HTTPS" ]; then
190 echo "Using secure ports towards dmaap"
191 use_agent_dmaap_https
192 else
193 echo "Using non-secure ports towards dmaap"
194 use_agent_dmaap_http
195 fi
BjornMagnussonXA70e878f2020-05-11 14:11:30 +0200196
197 START_ID=$(($START_ID+$NUM_POLICIES))
198
199 start_timer "Create polices in OSC via agent DMAAP, one by one, and $interface using "$__httpx
BjornMagnussonXA4207b832020-11-03 09:52:49 +0100200 api_put_policy 201 "serv1" ricsim_g1_1 1 $START_ID NOTRANSIENT $notificationurl testdata/OSC/pi1_template.json $NUM_POLICIES
BjornMagnussonXA70e878f2020-05-11 14:11:30 +0200201 print_timer "Create polices in OSC via agent DMAAP, one by one, and $interface using "$__httpx
202
203 sim_equal ricsim_g1_1 num_instances $((2*$NUM_POLICIES))
204
205 START_ID=$(($START_ID+$NUM_POLICIES))
206
207 start_timer "Create polices in STD via agent DMAAP, one by one, and $interface using "$__httpx
BjornMagnussonXA4207b832020-11-03 09:52:49 +0100208 api_put_policy 201 "serv1" ricsim_g2_1 NOTYPE $START_ID NOTRANSIENT $notificationurl testdata/STD/pi1_template.json $NUM_POLICIES
BjornMagnussonXA70e878f2020-05-11 14:11:30 +0200209 print_timer "Create polices in STD via agent DMAAP, one by one, and $interface using "$__httpx
210
211 sim_equal ricsim_g2_1 num_instances $((2*$NUM_POLICIES))
212
BjornMagnussonXA2791e082020-11-12 00:52:08 +0100213 if [ "$PMS_VERSION" == "V2" ]; then
214
215 START_ID=$(($START_ID+$NUM_POLICIES))
216
217 start_timer "Create polices in STD 2 via agent DMAAP, one by one, and $interface using "$__httpx
218 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
219 print_timer "Create polices in STD via agent DMAAP, one by one, and $interface using "$__httpx
220
221 sim_equal ricsim_g3_1 num_instances $((2*$NUM_POLICIES))
222 fi
223
BjornMagnussonXA70e878f2020-05-11 14:11:30 +0200224 START_ID=$(($START_ID+$NUM_POLICIES))
225
226 start_timer "Create polices in OSC via agent DMAAP in batch and $interface using "$__httpx
BjornMagnussonXA4207b832020-11-03 09:52:49 +0100227 api_put_policy_batch 201 "serv1" ricsim_g1_1 1 $START_ID NOTRANSIENT $notificationurl testdata/OSC/pi1_template.json $NUM_POLICIES
BjornMagnussonXA70e878f2020-05-11 14:11:30 +0200228 print_timer "Create polices in OSC via agent DMAAP in batch and $interface using "$__httpx
229
230 sim_equal ricsim_g1_1 num_instances $((3*$NUM_POLICIES))
231
232 START_ID=$(($START_ID+$NUM_POLICIES))
233
234 start_timer "Create polices in STD via agent DMAAP in batch and $interface using "$__httpx
BjornMagnussonXA4207b832020-11-03 09:52:49 +0100235 api_put_policy_batch 201 "serv1" ricsim_g2_1 NOTYPE $START_ID NOTRANSIENT $notificationurl testdata/STD/pi1_template.json $NUM_POLICIES
BjornMagnussonXA70e878f2020-05-11 14:11:30 +0200236 print_timer "Create polices in STD via agent DMAAP in batch and $interface using "$__httpx
237
238 sim_equal ricsim_g2_1 num_instances $((3*$NUM_POLICIES))
239
BjornMagnussonXA2791e082020-11-12 00:52:08 +0100240 if [ "$PMS_VERSION" == "V2" ]; then
241
242 START_ID=$(($START_ID+$NUM_POLICIES))
243
244 start_timer "Create polices in STD via agent DMAAP in batch and $interface using "$__httpx
245 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
246 print_timer "Create polices in STD via agent DMAAP in batch and $interface using "$__httpx
247
248 sim_equal ricsim_g3_1 num_instances $((3*$NUM_POLICIES))
249 fi
250
BjornMagnussonXA70e878f2020-05-11 14:11:30 +0200251 if [ $interface == "SDNC" ]; then
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +0100252 sim_contains_str ricsim_g1_1 remote_hosts $SDNC_APP_NAME
253 sim_contains_str ricsim_g2_1 remote_hosts $SDNC_APP_NAME
BjornMagnussonXA4207b832020-11-03 09:52:49 +0100254 if [ "$PMS_VERSION" == "V2" ]; then
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +0100255 sim_contains_str ricsim_g3_1 remote_hosts $SDNC_APP_NAME
BjornMagnussonXA4207b832020-11-03 09:52:49 +0100256 fi
BjornMagnussonXA70e878f2020-05-11 14:11:30 +0200257 else
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +0100258 sim_contains_str ricsim_g1_1 remote_hosts $POLICY_AGENT_APP_NAME
259 sim_contains_str ricsim_g2_1 remote_hosts $POLICY_AGENT_APP_NAME
BjornMagnussonXA4207b832020-11-03 09:52:49 +0100260 if [ "$PMS_VERSION" == "V2" ]; then
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +0100261 sim_contains_str ricsim_g3_1 remote_hosts $POLICY_AGENT_APP_NAME
BjornMagnussonXA4207b832020-11-03 09:52:49 +0100262 fi
BjornMagnussonXA70e878f2020-05-11 14:11:30 +0200263 fi
264
265 check_policy_agent_logs
BjornMagnussonXA49f0e5a2020-11-08 22:41:39 +0100266 if [[ $interface = *"SDNC"* ]]; then
267 check_sdnc_logs
268 fi
BjornMagnussonXA70e878f2020-05-11 14:11:30 +0200269
270 store_logs "${__httpx}__${interface}"
271 done
272done
273
274#### TEST COMPLETE ####
275
276print_result
277
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +0100278auto_clean_environment