blob: 13647c9f7db39f2a56216d4f6c504153ffe91060 [file] [log] [blame]
BjornMagnussonXA70e878f2020-05-11 14:11:30 +02001#!/bin/bash
BjornMagnussonXA80a92002020-03-19 14:31:06 +01002
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="Resync 10000 policies using OSC interface over REST"
21
BjornMagnussonXAbbd2e9d2020-05-27 21:24:06 +020022#App names to exclude checking pulling images for, space separated list
23EXCLUDED_IMAGES="SDNC_ONAP"
24
BjornMagnussonXA80a92002020-03-19 14:31:06 +010025. ../common/testcase_common.sh $@
26. ../common/agent_api_functions.sh
27. ../common/ricsimulator_api_functions.sh
28
29#### TEST BEGIN ####
30
BjornMagnussonXAad047782020-06-08 15:54:11 +020031generate_uuid
32
BjornMagnussonXA70e878f2020-05-11 14:11:30 +020033# Tested variants of REST/DMAAP/SDNC config
34TESTED_VARIANTS="REST DMAAP REST+SDNC DMAAP+SDNC DMAAP_BATCH DMAAP_BATCH+SDNC"
35#Test agent and simulator protocol versions (others are http only)
36TESTED_PROTOCOLS="HTTP HTTPS"
37for __httpx in $TESTED_PROTOCOLS ; do
38 for interface in $TESTED_VARIANTS ; do
BjornMagnussonXA80a92002020-03-19 14:31:06 +010039
BjornMagnussonXA70e878f2020-05-11 14:11:30 +020040 echo "#####################################################################"
41 echo "#####################################################################"
42 echo "### Testing agent: "$interface" and "$__httpx
43 echo "#####################################################################"
44 echo "#####################################################################"
BjornMagnussonXA80a92002020-03-19 14:31:06 +010045
BjornMagnussonXA496156d2020-08-10 14:16:24 +020046 #Local vars in test script
47 ##########################
48
49 if [ $__httpx == "HTTPS" ]; then
50 # Path to callback receiver
51 CR_PATH="https://$CR_APP_NAME:$CR_EXTERNAL_SECURE_PORT/callbacks"
52 use_cr_https
53 else
54 # Path to callback receiver
55 CR_PATH="http://$CR_APP_NAME:$CR_EXTERNAL_PORT/callbacks"
56 use_cr_http
57 fi
BjornMagnussonXA80a92002020-03-19 14:31:06 +010058
BjornMagnussonXA70e878f2020-05-11 14:11:30 +020059 # Clean container and start all needed containers #
60 clean_containers
BjornMagnussonXA80a92002020-03-19 14:31:06 +010061
BjornMagnussonXA70e878f2020-05-11 14:11:30 +020062 if [ $__httpx == "HTTPS" ]; then
BjornMagnussonXA0f9d5172020-06-17 15:43:39 +020063 #echo "Using secure ports between agent and MR"
64 use_mr_https
BjornMagnussonXA70e878f2020-05-11 14:11:30 +020065 echo "Using secure ports towards simulators"
66 use_simulator_https
67 else
BjornMagnussonXA0f9d5172020-06-17 15:43:39 +020068 #"Using non-secure ports between agent and MR"
69 use_mr_http
BjornMagnussonXA70e878f2020-05-11 14:11:30 +020070 echo "Using non-secure ports towards simulators"
71 use_simulator_http
72 fi
BjornMagnussonXA80a92002020-03-19 14:31:06 +010073
BjornMagnussonXA70e878f2020-05-11 14:11:30 +020074 start_ric_simulators ricsim_g1 4 OSC_2.1.0
BjornMagnussonXA80a92002020-03-19 14:31:06 +010075
BjornMagnussonXA70e878f2020-05-11 14:11:30 +020076 start_ric_simulators ricsim_g2 4 STD_1.1.3
BjornMagnussonXA80a92002020-03-19 14:31:06 +010077
BjornMagnussonXA70e878f2020-05-11 14:11:30 +020078 start_mr
BjornMagnussonXA80a92002020-03-19 14:31:06 +010079
BjornMagnussonXA70e878f2020-05-11 14:11:30 +020080 start_cr
BjornMagnussonXA80a92002020-03-19 14:31:06 +010081
BjornMagnussonXA70e878f2020-05-11 14:11:30 +020082 start_consul_cbs
BjornMagnussonXA80a92002020-03-19 14:31:06 +010083
BjornMagnussonXA70e878f2020-05-11 14:11:30 +020084 if [[ $interface = *"SDNC"* ]]; then
85 start_sdnc
BjornMagnussonXA496156d2020-08-10 14:16:24 +020086 if [ $__httpx == "HTTPS" ]; then
87 # "Using secure ports towards SDNC"
88 use_sdnc_https
89 else
90 #"Using non-secure ports towards SDNC"
91 use_sdnc_http
92 fi
BjornMagnussonXA70e878f2020-05-11 14:11:30 +020093 prepare_consul_config SDNC ".consul_config.json"
94 else
95 prepare_consul_config NOSDNC ".consul_config.json"
96 fi
BjornMagnussonXA80a92002020-03-19 14:31:06 +010097
BjornMagnussonXA70e878f2020-05-11 14:11:30 +020098 consul_config_app ".consul_config.json"
BjornMagnussonXA80a92002020-03-19 14:31:06 +010099
BjornMagnussonXA70e878f2020-05-11 14:11:30 +0200100 start_control_panel
BjornMagnussonXA80a92002020-03-19 14:31:06 +0100101
BjornMagnussonXA70e878f2020-05-11 14:11:30 +0200102 start_policy_agent
BjornMagnussonXA80a92002020-03-19 14:31:06 +0100103
BjornMagnussonXA70e878f2020-05-11 14:11:30 +0200104 set_agent_debug
BjornMagnussonXA80a92002020-03-19 14:31:06 +0100105
BjornMagnussonXA70e878f2020-05-11 14:11:30 +0200106 if [[ $interface == *"DMAAP"* ]]; then
BjornMagnussonXA496156d2020-08-10 14:16:24 +0200107 if [ $__httpx == "HTTPS" ]; then
108 echo "Using secure ports towards dmaap"
109 use_agent_dmaap_https
110 else
111 echo "Using non-secure ports towards dmaap"
112 use_agent_dmaap_http
113 fi
BjornMagnussonXA70e878f2020-05-11 14:11:30 +0200114 else
115 if [ $__httpx == "HTTPS" ]; then
116 echo "Using secure ports towards the agent"
117 use_agent_rest_https
118 else
119 echo "Using non-secure ports towards the agent"
120 use_agent_rest_http
121 fi
122 fi
BjornMagnussonXA80a92002020-03-19 14:31:06 +0100123
BjornMagnussonXA70e878f2020-05-11 14:11:30 +0200124 api_get_status 200
BjornMagnussonXA80a92002020-03-19 14:31:06 +0100125
BjornMagnussonXA70e878f2020-05-11 14:11:30 +0200126 sim_print ricsim_g1_1 interface
BjornMagnussonXA80a92002020-03-19 14:31:06 +0100127
BjornMagnussonXA70e878f2020-05-11 14:11:30 +0200128 sim_print ricsim_g2_1 interface
BjornMagnussonXA80a92002020-03-19 14:31:06 +0100129
BjornMagnussonXA70e878f2020-05-11 14:11:30 +0200130 sim_put_policy_type 201 ricsim_g1_1 1 testdata/OSC/sim_1.json
131
132 api_equal json:policy_types 2 120 #Wait for the agent to refresh types from the simulator
133
BjornMagnussonXAbbd2e9d2020-05-27 21:24:06 +0200134 api_put_service 201 "serv1" 3600 "$CR_PATH/1"
BjornMagnussonXA70e878f2020-05-11 14:11:30 +0200135
136 START_ID=2000
137 NUM_POLICIES=10000
138
139 if [[ $interface == *"BATCH"* ]]; then
BjornMagnussonXAbbd2e9d2020-05-27 21:24:06 +0200140 api_put_policy_batch 201 "serv1" ricsim_g1_1 1 $START_ID NOTRANSIENT testdata/OSC/pi1_template.json $NUM_POLICIES
BjornMagnussonXA70e878f2020-05-11 14:11:30 +0200141 else
BjornMagnussonXAbbd2e9d2020-05-27 21:24:06 +0200142 api_put_policy 201 "serv1" ricsim_g1_1 1 $START_ID NOTRANSIENT testdata/OSC/pi1_template.json $NUM_POLICIES
BjornMagnussonXA70e878f2020-05-11 14:11:30 +0200143 fi
144
145 sim_equal ricsim_g1_1 num_instances 10000
146
147 sim_post_delete_instances 200 ricsim_g1_1
148
149 sim_equal ricsim_g1_1 num_instances 0
150
151 sim_equal ricsim_g1_1 num_instances 10000 300
152
153 START_ID=$(($START_ID+$NUM_POLICIES))
154
155 if [[ $interface == *"BATCH"* ]]; then
BjornMagnussonXAbbd2e9d2020-05-27 21:24:06 +0200156 api_put_policy_batch 201 "serv1" ricsim_g2_1 NOTYPE $START_ID NOTRANSIENT testdata/STD/pi1_template.json $NUM_POLICIES
BjornMagnussonXA70e878f2020-05-11 14:11:30 +0200157 else
BjornMagnussonXAbbd2e9d2020-05-27 21:24:06 +0200158 api_put_policy 201 "serv1" ricsim_g2_1 NOTYPE $START_ID NOTRANSIENT testdata/STD/pi1_template.json $NUM_POLICIES
BjornMagnussonXA70e878f2020-05-11 14:11:30 +0200159 fi
160 sim_equal ricsim_g2_1 num_instances 10000
161
162 sim_post_delete_instances 200 ricsim_g2_1
163
164 sim_equal ricsim_g2_1 num_instances 0
165
166 sim_equal ricsim_g2_1 num_instances 10000 300
167
168 api_delete_policy 204 2435
169
170 api_delete_policy 204 8693
171
172 sim_post_delete_instances 200 ricsim_g1_1
173
174 sim_equal ricsim_g1_1 num_instances 9998 300
175
176 api_delete_policy 204 12435
177
178 api_delete_policy 204 18693
179
180 api_delete_policy 204 18697
181
182 sim_post_delete_instances 200 ricsim_g2_1
183
184 sim_equal ricsim_g1_1 num_instances 9998 300
185
186 sim_equal ricsim_g2_1 num_instances 9997 300
187
188 api_equal json:policies 19995
189
BjornMagnussonXAbbd2e9d2020-05-27 21:24:06 +0200190 check_policy_agent_logs
191
192 store_logs "${__httpx}__${interface}"
193
BjornMagnussonXA70e878f2020-05-11 14:11:30 +0200194 done
195
196done
BjornMagnussonXA80a92002020-03-19 14:31:06 +0100197
198
BjornMagnussonXA80a92002020-03-19 14:31:06 +0100199#### TEST COMPLETE ####
200
BjornMagnussonXA80a92002020-03-19 14:31:06 +0100201
BjornMagnussonXA70e878f2020-05-11 14:11:30 +0200202print_result
203
204auto_clean_containers