blob: 911a1ebd6aa8850f83538877d2ba6c0db00f699d [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
BjornMagnussonXAbbd2e9d2020-05-27 21:24:06 +020020TC_ONELINE_DESCR="Repeatedly create and delete policies in each RICs for 24h (or configured number of days). Via agent REST/DMAAP/DMAAP_BATCH and SDNC using http or https"
21
BjornMagnussonXAf38e1e82020-10-11 23:05:02 +020022#App names to include in the test, space separated list
23INCLUDED_IMAGES="CBS CONSUL CP CR MR PA RICSIM SDNC"
BjornMagnussonXA70e878f2020-05-11 14:11:30 +020024
BjornMagnussonXA49f0e5a2020-11-08 22:41:39 +010025#SUPPORTED TEST ENV FILE
26SUPPORTED_PROFILES="ONAP-MASTER ONAP-GUILIN"
27
BjornMagnussonXA70e878f2020-05-11 14:11:30 +020028. ../common/testcase_common.sh $@
29. ../common/agent_api_functions.sh
30. ../common/ricsimulator_api_functions.sh
BjornMagnussonXA49f0e5a2020-11-08 22:41:39 +010031. ../common/cr_api_functions.sh
BjornMagnussonXA70e878f2020-05-11 14:11:30 +020032
33#### TEST BEGIN ####
34
BjornMagnussonXAad047782020-06-08 15:54:11 +020035generate_uuid
36
BjornMagnussonXA70e878f2020-05-11 14:11:30 +020037#Local vars in test script
38##########################
BjornMagnussonXA496156d2020-08-10 14:16:24 +020039
BjornMagnussonXA70e878f2020-05-11 14:11:30 +020040# Number of RICs per interface type (OSC and STD)
41NUM_RICS=30
42# Number of policy instances per RIC
43NUM_INSTANCES=5
44
BjornMagnussonXAbbd2e9d2020-05-27 21:24:06 +020045DAYS=3
46
BjornMagnussonXA70e878f2020-05-11 14:11:30 +020047clean_containers
48
BjornMagnussonXA496156d2020-08-10 14:16:24 +020049# use HTTP or HTTPS for all apis
50HTTPX=HTTPS
BjornMagnussonXAbbd2e9d2020-05-27 21:24:06 +020051
BjornMagnussonXA496156d2020-08-10 14:16:24 +020052if [ $HTTPX == "HTTP" ]; then
BjornMagnussonXA496156d2020-08-10 14:16:24 +020053 use_cr_http
BjornMagnussonXAbbd2e9d2020-05-27 21:24:06 +020054 use_agent_rest_http
55 use_sdnc_http
56 use_simulator_http
57else
BjornMagnussonXA496156d2020-08-10 14:16:24 +020058 use_cr_https
BjornMagnussonXAbbd2e9d2020-05-27 21:24:06 +020059 use_agent_rest_https
60 use_sdnc_https
61 use_simulator_https
62fi
63
BjornMagnussonXA70e878f2020-05-11 14:11:30 +020064start_ric_simulators ricsim_g1 $NUM_RICS OSC_2.1.0
65
66start_ric_simulators ricsim_g2 $NUM_RICS STD_1.1.3
67
68start_mr
69
70start_cr
71
72start_consul_cbs
73
74prepare_consul_config SDNC ".consul_config.json"
75consul_config_app ".consul_config.json"
76
77start_sdnc
78
79start_control_panel
80
81start_policy_agent
82
BjornMagnussonXA70e878f2020-05-11 14:11:30 +020083
84api_get_status 200
85
86echo "Print the interface for group 1 simulators, shall be OSC"
87for ((i=1; i<=$NUM_RICS; i++))
88do
89 sim_print ricsim_g1_$i interface
90done
91
92echo "Print the interface for group 2 simulators, shall be STD"
93for ((i=1; i<=$NUM_RICS; i++))
94do
95 sim_print ricsim_g2_$i interface
96done
97
98echo "Load policy type in group 1 simulators"
99for ((i=1; i<=$NUM_RICS; i++))
100do
101 sim_put_policy_type 201 ricsim_g1_$i 1 testdata/OSC/sim_1.json
102done
103
104echo "Check the number of instances in group 1 simulators, shall be 0"
105for ((i=1; i<=$NUM_RICS; i++))
106do
107 sim_equal ricsim_g1_$i num_instances 0
108done
109
110echo "Check the number of instances in group 2 simulators, shall be 0"
111for ((i=1; i<=$NUM_RICS; i++))
112do
113 sim_equal ricsim_g2_$i num_instances 0
114done
115
116echo "Wait for the agent to refresh types from the simulator"
BjornMagnussonXA4207b832020-11-03 09:52:49 +0100117if [ "$PMS_VERSION" == "V2" ]; then
118 api_equal json:policy-types 2 120
119else
120 api_equal json:policy_types 2 120
121fi
BjornMagnussonXA70e878f2020-05-11 14:11:30 +0200122
123echo "Check the number of types in the agent for each ric is 1"
124for ((i=1; i<=$NUM_RICS; i++))
125do
BjornMagnussonXA4207b832020-11-03 09:52:49 +0100126 if [ "$PMS_VERSION" == "V2" ]; then
127 api_equal json:policy-types?ric_id=ricsim_g1_$i 1 120
128 else
129 api_equal json:policy_types?ric=ricsim_g1_$i 1 120
130 fi
BjornMagnussonXA70e878f2020-05-11 14:11:30 +0200131done
132
133echo "Register a service"
134api_put_service 201 "serv1" 0 "$CR_PATH/1"
135
BjornMagnussonXAbbd2e9d2020-05-27 21:24:06 +0200136TEST_DURATION=$((24*3600*$DAYS))
BjornMagnussonXA70e878f2020-05-11 14:11:30 +0200137TEST_START=$SECONDS
138
BjornMagnussonXAbbd2e9d2020-05-27 21:24:06 +0200139AGENT_INTERFACES="REST REST_PARALLEL DMAAP DMAAP-BATCH"
BjornMagnussonXA70e878f2020-05-11 14:11:30 +0200140
141MR_MESSAGES=0
142
BjornMagnussonXA4207b832020-11-03 09:52:49 +0100143if [ "$PMS_VERSION" == "V2" ]; then
BjornMagnussonXA49f0e5a2020-11-08 22:41:39 +0100144 notificationurl=$CR_PATH"/test"
BjornMagnussonXA4207b832020-11-03 09:52:49 +0100145else
146 notificationurl=""
147fi
148
BjornMagnussonXA70e878f2020-05-11 14:11:30 +0200149while [ $(($SECONDS-$TEST_START)) -lt $TEST_DURATION ]; do
150
151 echo ""
152 echo "#########################################################################################################"
153 echo -e $BOLD"INFO: Test executed for: "$(($SECONDS-$TEST_START)) "seconds. Target is: "$TEST_DURATION" seconds."$EBOLD
154 echo "#########################################################################################################"
155 echo ""
156
157 for interface in $AGENT_INTERFACES ; do
158
159 echo "############################################"
160 echo "## Testing using agent interface: $interface ##"
161 echo "############################################"
162
BjornMagnussonXAbbd2e9d2020-05-27 21:24:06 +0200163 if [ $interface == "REST" ] || [ $interface == "REST_PARALLEL" ]; then
BjornMagnussonXA496156d2020-08-10 14:16:24 +0200164 if [ $HTTPX == "HTTP" ]; then
BjornMagnussonXAbbd2e9d2020-05-27 21:24:06 +0200165 use_agent_rest_http
166 else
167 use_agent_rest_https
168 fi
BjornMagnussonXA70e878f2020-05-11 14:11:30 +0200169 else
BjornMagnussonXA496156d2020-08-10 14:16:24 +0200170 if [ $HTTPX == "HTTPS" ]; then
171 echo "Using secure ports towards dmaap"
172 use_agent_dmaap_https
173 else
174 echo "Using non-secure ports towards dmaap"
175 use_agent_dmaap_http
176 fi
BjornMagnussonXA70e878f2020-05-11 14:11:30 +0200177 fi
178
179 echo "Create $NUM_INSTANCES instances in each OSC RIC"
180 INSTANCE_ID=200000
181 INSTANCES=0
BjornMagnussonXAbbd2e9d2020-05-27 21:24:06 +0200182 if [ $interface == "REST_PARALLEL" ]; then
BjornMagnussonXA4207b832020-11-03 09:52:49 +0100183 api_put_policy_parallel 201 "serv1" ricsim_g1_ $NUM_RICS 1 $INSTANCE_ID NOTRANSIENT $notificationurl testdata/OSC/pi1_template.json $NUM_INSTANCES 3
BjornMagnussonXAbbd2e9d2020-05-27 21:24:06 +0200184 fi
BjornMagnussonXA70e878f2020-05-11 14:11:30 +0200185 for ((i=1; i<=$NUM_RICS; i++))
186 do
187 if [ $interface == "DMAAP-BATCH" ]; then
BjornMagnussonXA4207b832020-11-03 09:52:49 +0100188 api_put_policy_batch 201 "serv1" ricsim_g1_$i 1 $INSTANCE_ID NOTRANSIENT $notificationurl testdata/OSC/pi1_template.json $NUM_INSTANCES
BjornMagnussonXAbbd2e9d2020-05-27 21:24:06 +0200189 elif [ $interface == "DMAAP" ] || [ $interface == "REST" ]; then
BjornMagnussonXA4207b832020-11-03 09:52:49 +0100190 api_put_policy 201 "serv1" ricsim_g1_$i 1 $INSTANCE_ID NOTRANSIENT $notificationurl testdata/OSC/pi1_template.json $NUM_INSTANCES
BjornMagnussonXA70e878f2020-05-11 14:11:30 +0200191 fi
BjornMagnussonXAbbd2e9d2020-05-27 21:24:06 +0200192 if [ $interface == "DMAAP" ] || [ $interface == "DMAAP-BATCH" ]; then
BjornMagnussonXA70e878f2020-05-11 14:11:30 +0200193 MR_MESSAGES=$(($MR_MESSAGES+$NUM_INSTANCES))
194 fi
195 sim_equal ricsim_g1_$i num_instances $NUM_INSTANCES
196 INSTANCE_ID=$(($INSTANCE_ID+$NUM_INSTANCES))
197 INSTANCES=$(($INSTANCES+$NUM_INSTANCES))
198 done
199
BjornMagnussonXA4207b832020-11-03 09:52:49 +0100200 if [ "$PMS_VERSION" == "V2" ]; then
BjornMagnussonXA49f0e5a2020-11-08 22:41:39 +0100201 api_equal json:policy-instances $INSTANCES
BjornMagnussonXA4207b832020-11-03 09:52:49 +0100202 else
203 api_equal json:policy_ids $INSTANCES
204 fi
BjornMagnussonXA70e878f2020-05-11 14:11:30 +0200205
206 echo "Create $NUM_INSTANCES instances in each STD RIC"
BjornMagnussonXAbbd2e9d2020-05-27 21:24:06 +0200207 if [ $interface == "REST_PARALLEL" ]; then
BjornMagnussonXA4207b832020-11-03 09:52:49 +0100208 api_put_policy_parallel 201 "serv1" ricsim_g2_ $NUM_RICS NOTYPE $INSTANCE_ID NOTRANSIENT $notificationurl testdata/STD/pi1_template.json $NUM_INSTANCES 3
BjornMagnussonXAbbd2e9d2020-05-27 21:24:06 +0200209 fi
BjornMagnussonXA70e878f2020-05-11 14:11:30 +0200210 for ((i=1; i<=$NUM_RICS; i++))
211 do
212 if [ $interface == "DMAAP-BATCH" ]; then
BjornMagnussonXA4207b832020-11-03 09:52:49 +0100213 api_put_policy_batch 201 "serv1" ricsim_g2_$i NOTYPE $INSTANCE_ID NOTRANSIENT $notificationurl testdata/STD/pi1_template.json $NUM_INSTANCES
BjornMagnussonXAbbd2e9d2020-05-27 21:24:06 +0200214 elif [ $interface == "DMAAP" ] || [ $interface == "REST" ]; then
BjornMagnussonXA4207b832020-11-03 09:52:49 +0100215 api_put_policy 201 "serv1" ricsim_g2_$i NOTYPE $INSTANCE_ID NOTRANSIENT $notificationurl testdata/STD/pi1_template.json $NUM_INSTANCES
BjornMagnussonXA70e878f2020-05-11 14:11:30 +0200216 fi
BjornMagnussonXAbbd2e9d2020-05-27 21:24:06 +0200217 if [ $interface == "DMAAP" ] || [ $interface == "DMAAP-BATCH" ]; then
BjornMagnussonXA70e878f2020-05-11 14:11:30 +0200218 MR_MESSAGES=$(($MR_MESSAGES+$NUM_INSTANCES))
219 fi
220 sim_equal ricsim_g2_$i num_instances $NUM_INSTANCES
221 INSTANCE_ID=$(($INSTANCE_ID+$NUM_INSTANCES))
222 INSTANCES=$(($INSTANCES+$NUM_INSTANCES))
223 done
224
BjornMagnussonXA4207b832020-11-03 09:52:49 +0100225 if [ "$PMS_VERSION" == "V2" ]; then
BjornMagnussonXA49f0e5a2020-11-08 22:41:39 +0100226 api_equal json:policy-instances $INSTANCES
BjornMagnussonXA4207b832020-11-03 09:52:49 +0100227 else
228 api_equal json:policy_ids $INSTANCES
229 fi
BjornMagnussonXA70e878f2020-05-11 14:11:30 +0200230
231
232 echo "Delete all instances in each OSC RIC"
233
234 INSTANCE_ID=200000
BjornMagnussonXAbbd2e9d2020-05-27 21:24:06 +0200235 if [ $interface == "REST_PARALLEL" ]; then
236 api_delete_policy_parallel 204 $NUM_RICS $INSTANCE_ID $NUM_INSTANCES 3
237 fi
BjornMagnussonXA70e878f2020-05-11 14:11:30 +0200238 for ((i=1; i<=$NUM_RICS; i++))
239 do
240 if [ $interface == "DMAAP-BATCH" ]; then
241 api_delete_policy_batch 204 $INSTANCE_ID $NUM_INSTANCES
BjornMagnussonXAbbd2e9d2020-05-27 21:24:06 +0200242 elif [ $interface == "DMAAP" ] || [ $interface == "REST" ]; then
BjornMagnussonXA70e878f2020-05-11 14:11:30 +0200243 api_delete_policy 204 $INSTANCE_ID $NUM_INSTANCES
244 fi
BjornMagnussonXAbbd2e9d2020-05-27 21:24:06 +0200245 if [ $interface == "DMAAP" ] || [ $interface == "DMAAP-BATCH" ]; then
BjornMagnussonXA70e878f2020-05-11 14:11:30 +0200246 MR_MESSAGES=$(($MR_MESSAGES+$NUM_INSTANCES))
247 fi
248 INSTANCES=$(($INSTANCES-$NUM_INSTANCES))
249 sim_equal ricsim_g1_$i num_instances 0
250 INSTANCE_ID=$(($INSTANCE_ID+$NUM_INSTANCES))
251 done
252
BjornMagnussonXA4207b832020-11-03 09:52:49 +0100253 if [ "$PMS_VERSION" == "V2" ]; then
BjornMagnussonXA49f0e5a2020-11-08 22:41:39 +0100254 api_equal json:policy-instances $INSTANCES
BjornMagnussonXA4207b832020-11-03 09:52:49 +0100255 else
256 api_equal json:policy_ids $INSTANCES
257 fi
BjornMagnussonXA70e878f2020-05-11 14:11:30 +0200258
259 echo "Delete all instances in each STD RIC"
260
BjornMagnussonXAbbd2e9d2020-05-27 21:24:06 +0200261 if [ $interface == "REST_PARALLEL" ]; then
262 api_delete_policy_parallel 204 $NUM_RICS $INSTANCE_ID $NUM_INSTANCES 3
263 fi
BjornMagnussonXA70e878f2020-05-11 14:11:30 +0200264 for ((i=1; i<=$NUM_RICS; i++))
265 do
266 if [ $interface == "DMAAP-BATCH" ]; then
267 api_delete_policy_batch 204 $INSTANCE_ID $NUM_INSTANCES
BjornMagnussonXAbbd2e9d2020-05-27 21:24:06 +0200268 elif [ $interface == "DMAAP" ] || [ $interface == "REST" ]; then
BjornMagnussonXA70e878f2020-05-11 14:11:30 +0200269 api_delete_policy 204 $INSTANCE_ID $NUM_INSTANCES
270 fi
BjornMagnussonXAbbd2e9d2020-05-27 21:24:06 +0200271 if [ $interface == "DMAAP" ] || [ $interface == "DMAAP-BATCH" ]; then
BjornMagnussonXA70e878f2020-05-11 14:11:30 +0200272 MR_MESSAGES=$(($MR_MESSAGES+$NUM_INSTANCES))
273 fi
274 INSTANCES=$(($INSTANCES-$NUM_INSTANCES))
275 sim_equal ricsim_g2_$i num_instances 0
276 INSTANCE_ID=$(($INSTANCE_ID+$NUM_INSTANCES))
277 done
278
BjornMagnussonXA4207b832020-11-03 09:52:49 +0100279 if [ "$PMS_VERSION" == "V2" ]; then
BjornMagnussonXA49f0e5a2020-11-08 22:41:39 +0100280 api_equal json:policy-instances $INSTANCES
BjornMagnussonXA4207b832020-11-03 09:52:49 +0100281 else
282 api_equal json:policy_ids $INSTANCES
283 fi
BjornMagnussonXA70e878f2020-05-11 14:11:30 +0200284
BjornMagnussonXA70e878f2020-05-11 14:11:30 +0200285 mr_equal requests_submitted $MR_MESSAGES
286 mr_equal requests_fetched $MR_MESSAGES
287 mr_equal responses_submitted $MR_MESSAGES
288 mr_equal responses_fetched $MR_MESSAGES
289 mr_equal current_requests 0
290 mr_equal current_responses 0
291
292
293 for ((i=1; i<=$NUM_RICS; i++))
294 do
295 sim_contains_str ricsim_g1_$i remote_hosts "a1-controller"
296 sim_contains_str ricsim_g2_$i remote_hosts "a1-controller"
297 done
298
299 done
300
301done
302
303check_policy_agent_logs
BjornMagnussonXA49f0e5a2020-11-08 22:41:39 +0100304check_sdnc_logs
BjornMagnussonXA70e878f2020-05-11 14:11:30 +0200305
306#### TEST COMPLETE ####
307
308store_logs END
309
310print_result
311
312auto_clean_containers