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="Resync 10000 policies using OSC interface over REST"
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 # Tested variants of REST/DMAAP/SDNC config
34 TESTED_VARIANTS="REST DMAAP REST+SDNC DMAAP+SDNC DMAAP_BATCH DMAAP_BATCH+SDNC"
35 #Test agent and simulator protocol versions (others are http only)
36 TESTED_PROTOCOLS="HTTP HTTPS"
37 for __httpx in $TESTED_PROTOCOLS ; do
38 for interface in $TESTED_VARIANTS ; do
40 echo "#####################################################################"
41 echo "#####################################################################"
42 echo "### Testing agent: "$interface" and "$__httpx
43 echo "#####################################################################"
44 echo "#####################################################################"
46 #Local vars in test script
47 ##########################
49 if [ $__httpx == "HTTPS" ]; then
50 # Path to callback receiver
51 CR_PATH="https://$CR_APP_NAME:$CR_EXTERNAL_SECURE_PORT/callbacks"
54 # Path to callback receiver
55 CR_PATH="http://$CR_APP_NAME:$CR_EXTERNAL_PORT/callbacks"
59 # Clean container and start all needed containers #
62 if [ $__httpx == "HTTPS" ]; then
63 #echo "Using secure ports between agent and MR"
65 echo "Using secure ports towards simulators"
68 #"Using non-secure ports between agent and MR"
70 echo "Using non-secure ports towards simulators"
74 start_ric_simulators ricsim_g1 4 OSC_2.1.0
76 start_ric_simulators ricsim_g2 4 STD_1.1.3
84 if [[ $interface = *"SDNC"* ]]; then
86 if [ $__httpx == "HTTPS" ]; then
87 # "Using secure ports towards SDNC"
90 #"Using non-secure ports towards SDNC"
93 prepare_consul_config SDNC ".consul_config.json"
95 prepare_consul_config NOSDNC ".consul_config.json"
98 consul_config_app ".consul_config.json"
106 if [[ $interface == *"DMAAP"* ]]; then
107 if [ $__httpx == "HTTPS" ]; then
108 echo "Using secure ports towards dmaap"
109 use_agent_dmaap_https
111 echo "Using non-secure ports towards dmaap"
115 if [ $__httpx == "HTTPS" ]; then
116 echo "Using secure ports towards the agent"
119 echo "Using non-secure ports towards the agent"
126 sim_print ricsim_g1_1 interface
128 sim_print ricsim_g2_1 interface
130 sim_put_policy_type 201 ricsim_g1_1 1 testdata/OSC/sim_1.json
132 api_equal json:policy_types 2 120 #Wait for the agent to refresh types from the simulator
134 api_put_service 201 "serv1" 3600 "$CR_PATH/1"
139 if [[ $interface == *"BATCH"* ]]; then
140 api_put_policy_batch 201 "serv1" ricsim_g1_1 1 $START_ID NOTRANSIENT testdata/OSC/pi1_template.json $NUM_POLICIES
142 api_put_policy 201 "serv1" ricsim_g1_1 1 $START_ID NOTRANSIENT testdata/OSC/pi1_template.json $NUM_POLICIES
145 sim_equal ricsim_g1_1 num_instances 10000
147 sim_post_delete_instances 200 ricsim_g1_1
149 sim_equal ricsim_g1_1 num_instances 0
151 sim_equal ricsim_g1_1 num_instances 10000 300
153 START_ID=$(($START_ID+$NUM_POLICIES))
155 if [[ $interface == *"BATCH"* ]]; then
156 api_put_policy_batch 201 "serv1" ricsim_g2_1 NOTYPE $START_ID NOTRANSIENT testdata/STD/pi1_template.json $NUM_POLICIES
158 api_put_policy 201 "serv1" ricsim_g2_1 NOTYPE $START_ID NOTRANSIENT testdata/STD/pi1_template.json $NUM_POLICIES
160 sim_equal ricsim_g2_1 num_instances 10000
162 sim_post_delete_instances 200 ricsim_g2_1
164 sim_equal ricsim_g2_1 num_instances 0
166 sim_equal ricsim_g2_1 num_instances 10000 300
168 api_delete_policy 204 2435
170 api_delete_policy 204 8693
172 sim_post_delete_instances 200 ricsim_g1_1
174 sim_equal ricsim_g1_1 num_instances 9998 300
176 api_delete_policy 204 12435
178 api_delete_policy 204 18693
180 api_delete_policy 204 18697
182 sim_post_delete_instances 200 ricsim_g2_1
184 sim_equal ricsim_g1_1 num_instances 9998 300
186 sim_equal ricsim_g2_1 num_instances 9997 300
188 api_equal json:policies 19995
190 check_policy_agent_logs
192 store_logs "${__httpx}__${interface}"
199 #### TEST COMPLETE ####
204 auto_clean_containers