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
10 # http://www.apache.org/licenses/LICENSE-2.0
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=================================================
20 TC_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"
22 #App names to exclude checking pulling images for, space separated list
23 EXCLUDED_IMAGES="SDNC_ONAP"
25 . ../common/testcase_common.sh $@
26 . ../common/agent_api_functions.sh
27 . ../common/ricsimulator_api_functions.sh
33 #Local vars in test script
34 ##########################
36 # Number of RICs per interface type (OSC and STD)
38 # Number of policy instances per RIC
45 # use HTTP or HTTPS for all apis
48 if [ $HTTPX == "HTTP" ]; then
49 # Path to callback receiver
50 CR_PATH="http://$CR_APP_NAME:$CR_EXTERNAL_PORT/callbacks"
56 # Path to callback receiver
57 CR_PATH="https://$CR_APP_NAME:$CR_EXTERNAL_SECURE_PORT/callbacks"
64 start_ric_simulators ricsim_g1 $NUM_RICS OSC_2.1.0
66 start_ric_simulators ricsim_g2 $NUM_RICS STD_1.1.3
74 prepare_consul_config SDNC ".consul_config.json"
75 consul_config_app ".consul_config.json"
86 echo "Print the interface for group 1 simulators, shall be OSC"
87 for ((i=1; i<=$NUM_RICS; i++))
89 sim_print ricsim_g1_$i interface
92 echo "Print the interface for group 2 simulators, shall be STD"
93 for ((i=1; i<=$NUM_RICS; i++))
95 sim_print ricsim_g2_$i interface
98 echo "Load policy type in group 1 simulators"
99 for ((i=1; i<=$NUM_RICS; i++))
101 sim_put_policy_type 201 ricsim_g1_$i 1 testdata/OSC/sim_1.json
104 echo "Check the number of instances in group 1 simulators, shall be 0"
105 for ((i=1; i<=$NUM_RICS; i++))
107 sim_equal ricsim_g1_$i num_instances 0
110 echo "Check the number of instances in group 2 simulators, shall be 0"
111 for ((i=1; i<=$NUM_RICS; i++))
113 sim_equal ricsim_g2_$i num_instances 0
116 echo "Wait for the agent to refresh types from the simulator"
117 api_equal json:policy_types 2 120
119 echo "Check the number of types in the agent for each ric is 1"
120 for ((i=1; i<=$NUM_RICS; i++))
122 api_equal json:policy_types?ric=ricsim_g1_$i 1 120
125 echo "Register a service"
126 api_put_service 201 "serv1" 0 "$CR_PATH/1"
128 TEST_DURATION=$((24*3600*$DAYS))
131 AGENT_INTERFACES="REST REST_PARALLEL DMAAP DMAAP-BATCH"
135 while [ $(($SECONDS-$TEST_START)) -lt $TEST_DURATION ]; do
138 echo "#########################################################################################################"
139 echo -e $BOLD"INFO: Test executed for: "$(($SECONDS-$TEST_START)) "seconds. Target is: "$TEST_DURATION" seconds."$EBOLD
140 echo "#########################################################################################################"
143 for interface in $AGENT_INTERFACES ; do
145 echo "############################################"
146 echo "## Testing using agent interface: $interface ##"
147 echo "############################################"
149 if [ $interface == "REST" ] || [ $interface == "REST_PARALLEL" ]; then
150 if [ $HTTPX == "HTTP" ]; then
156 if [ $HTTPX == "HTTPS" ]; then
157 echo "Using secure ports towards dmaap"
158 use_agent_dmaap_https
160 echo "Using non-secure ports towards dmaap"
165 echo "Create $NUM_INSTANCES instances in each OSC RIC"
168 if [ $interface == "REST_PARALLEL" ]; then
169 api_put_policy_parallel 201 "serv1" ricsim_g1_ $NUM_RICS 1 $INSTANCE_ID NOTRANSIENT testdata/OSC/pi1_template.json $NUM_INSTANCES 3
171 for ((i=1; i<=$NUM_RICS; i++))
173 if [ $interface == "DMAAP-BATCH" ]; then
174 api_put_policy_batch 201 "serv1" ricsim_g1_$i 1 $INSTANCE_ID NOTRANSIENT testdata/OSC/pi1_template.json $NUM_INSTANCES
175 elif [ $interface == "DMAAP" ] || [ $interface == "REST" ]; then
176 api_put_policy 201 "serv1" ricsim_g1_$i 1 $INSTANCE_ID NOTRANSIENT testdata/OSC/pi1_template.json $NUM_INSTANCES
178 if [ $interface == "DMAAP" ] || [ $interface == "DMAAP-BATCH" ]; then
179 MR_MESSAGES=$(($MR_MESSAGES+$NUM_INSTANCES))
181 sim_equal ricsim_g1_$i num_instances $NUM_INSTANCES
182 INSTANCE_ID=$(($INSTANCE_ID+$NUM_INSTANCES))
183 INSTANCES=$(($INSTANCES+$NUM_INSTANCES))
186 api_equal json:policy_ids $INSTANCES
188 echo "Create $NUM_INSTANCES instances in each STD RIC"
189 if [ $interface == "REST_PARALLEL" ]; then
190 api_put_policy_parallel 201 "serv1" ricsim_g2_ $NUM_RICS NOTYPE $INSTANCE_ID NOTRANSIENT testdata/STD/pi1_template.json $NUM_INSTANCES 3
192 for ((i=1; i<=$NUM_RICS; i++))
194 if [ $interface == "DMAAP-BATCH" ]; then
195 api_put_policy_batch 201 "serv1" ricsim_g2_$i NOTYPE $INSTANCE_ID NOTRANSIENT testdata/STD/pi1_template.json $NUM_INSTANCES
196 elif [ $interface == "DMAAP" ] || [ $interface == "REST" ]; then
197 api_put_policy 201 "serv1" ricsim_g2_$i NOTYPE $INSTANCE_ID NOTRANSIENT testdata/STD/pi1_template.json $NUM_INSTANCES
199 if [ $interface == "DMAAP" ] || [ $interface == "DMAAP-BATCH" ]; then
200 MR_MESSAGES=$(($MR_MESSAGES+$NUM_INSTANCES))
202 sim_equal ricsim_g2_$i num_instances $NUM_INSTANCES
203 INSTANCE_ID=$(($INSTANCE_ID+$NUM_INSTANCES))
204 INSTANCES=$(($INSTANCES+$NUM_INSTANCES))
207 api_equal json:policy_ids $INSTANCES
210 echo "Delete all instances in each OSC RIC"
213 if [ $interface == "REST_PARALLEL" ]; then
214 api_delete_policy_parallel 204 $NUM_RICS $INSTANCE_ID $NUM_INSTANCES 3
216 for ((i=1; i<=$NUM_RICS; i++))
218 if [ $interface == "DMAAP-BATCH" ]; then
219 api_delete_policy_batch 204 $INSTANCE_ID $NUM_INSTANCES
220 elif [ $interface == "DMAAP" ] || [ $interface == "REST" ]; then
221 api_delete_policy 204 $INSTANCE_ID $NUM_INSTANCES
223 if [ $interface == "DMAAP" ] || [ $interface == "DMAAP-BATCH" ]; then
224 MR_MESSAGES=$(($MR_MESSAGES+$NUM_INSTANCES))
226 INSTANCES=$(($INSTANCES-$NUM_INSTANCES))
227 sim_equal ricsim_g1_$i num_instances 0
228 INSTANCE_ID=$(($INSTANCE_ID+$NUM_INSTANCES))
231 api_equal json:policy_ids $INSTANCES
233 echo "Delete all instances in each STD RIC"
235 if [ $interface == "REST_PARALLEL" ]; then
236 api_delete_policy_parallel 204 $NUM_RICS $INSTANCE_ID $NUM_INSTANCES 3
238 for ((i=1; i<=$NUM_RICS; i++))
240 if [ $interface == "DMAAP-BATCH" ]; then
241 api_delete_policy_batch 204 $INSTANCE_ID $NUM_INSTANCES
242 elif [ $interface == "DMAAP" ] || [ $interface == "REST" ]; then
243 api_delete_policy 204 $INSTANCE_ID $NUM_INSTANCES
245 if [ $interface == "DMAAP" ] || [ $interface == "DMAAP-BATCH" ]; then
246 MR_MESSAGES=$(($MR_MESSAGES+$NUM_INSTANCES))
248 INSTANCES=$(($INSTANCES-$NUM_INSTANCES))
249 sim_equal ricsim_g2_$i num_instances 0
250 INSTANCE_ID=$(($INSTANCE_ID+$NUM_INSTANCES))
253 api_equal json:policy_ids 0
255 cr_equal received_callbacks 0
257 mr_equal requests_submitted $MR_MESSAGES
258 mr_equal requests_fetched $MR_MESSAGES
259 mr_equal responses_submitted $MR_MESSAGES
260 mr_equal responses_fetched $MR_MESSAGES
261 mr_equal current_requests 0
262 mr_equal current_responses 0
265 for ((i=1; i<=$NUM_RICS; i++))
267 sim_contains_str ricsim_g1_$i remote_hosts "a1-controller"
268 sim_contains_str ricsim_g2_$i remote_hosts "a1-controller"
275 check_policy_agent_logs
277 #### TEST COMPLETE ####
283 auto_clean_containers