blob: e3181bd2947353e36547d4870ed9cda0e0e3a4c9 [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
22. ../common/testcase_common.sh $@
23. ../common/agent_api_functions.sh
24. ../common/ricsimulator_api_functions.sh
25
26#### TEST BEGIN ####
27
28#Local vars in test script
29##########################
30# Path to callback receiver
31CR_PATH="http://$CR_APP_NAME:$CR_EXTERNAL_PORT/callbacks"
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
46
BjornMagnussonXA70e878f2020-05-11 14:11:30 +020047 # Clean container and start all needed containers #
48 clean_containers
BjornMagnussonXA80a92002020-03-19 14:31:06 +010049
BjornMagnussonXA70e878f2020-05-11 14:11:30 +020050 if [ $__httpx == "HTTPS" ]; then
51 echo "Using secure ports towards simulators"
52 use_simulator_https
53 else
54 echo "Using non-secure ports towards simulators"
55 use_simulator_http
56 fi
BjornMagnussonXA80a92002020-03-19 14:31:06 +010057
BjornMagnussonXA70e878f2020-05-11 14:11:30 +020058 start_ric_simulators ricsim_g1 4 OSC_2.1.0
BjornMagnussonXA80a92002020-03-19 14:31:06 +010059
BjornMagnussonXA70e878f2020-05-11 14:11:30 +020060 start_ric_simulators ricsim_g2 4 STD_1.1.3
BjornMagnussonXA80a92002020-03-19 14:31:06 +010061
BjornMagnussonXA70e878f2020-05-11 14:11:30 +020062 start_mr
BjornMagnussonXA80a92002020-03-19 14:31:06 +010063
BjornMagnussonXA70e878f2020-05-11 14:11:30 +020064 start_cr
BjornMagnussonXA80a92002020-03-19 14:31:06 +010065
BjornMagnussonXA70e878f2020-05-11 14:11:30 +020066 start_consul_cbs
BjornMagnussonXA80a92002020-03-19 14:31:06 +010067
BjornMagnussonXA70e878f2020-05-11 14:11:30 +020068 if [[ $interface = *"SDNC"* ]]; then
69 start_sdnc
70 prepare_consul_config SDNC ".consul_config.json"
71 else
72 prepare_consul_config NOSDNC ".consul_config.json"
73 fi
BjornMagnussonXA80a92002020-03-19 14:31:06 +010074
BjornMagnussonXA70e878f2020-05-11 14:11:30 +020075 consul_config_app ".consul_config.json"
BjornMagnussonXA80a92002020-03-19 14:31:06 +010076
BjornMagnussonXA70e878f2020-05-11 14:11:30 +020077 start_control_panel
BjornMagnussonXA80a92002020-03-19 14:31:06 +010078
BjornMagnussonXA70e878f2020-05-11 14:11:30 +020079 start_policy_agent
BjornMagnussonXA80a92002020-03-19 14:31:06 +010080
BjornMagnussonXA70e878f2020-05-11 14:11:30 +020081 set_agent_debug
BjornMagnussonXA80a92002020-03-19 14:31:06 +010082
BjornMagnussonXA70e878f2020-05-11 14:11:30 +020083 if [[ $interface == *"DMAAP"* ]]; then
84 use_agent_dmaap
85 else
86 if [ $__httpx == "HTTPS" ]; then
87 echo "Using secure ports towards the agent"
88 use_agent_rest_https
89 else
90 echo "Using non-secure ports towards the agent"
91 use_agent_rest_http
92 fi
93 fi
BjornMagnussonXA80a92002020-03-19 14:31:06 +010094
BjornMagnussonXA70e878f2020-05-11 14:11:30 +020095 api_get_status 200
BjornMagnussonXA80a92002020-03-19 14:31:06 +010096
BjornMagnussonXA70e878f2020-05-11 14:11:30 +020097 sim_print ricsim_g1_1 interface
BjornMagnussonXA80a92002020-03-19 14:31:06 +010098
BjornMagnussonXA70e878f2020-05-11 14:11:30 +020099 sim_print ricsim_g2_1 interface
BjornMagnussonXA80a92002020-03-19 14:31:06 +0100100
BjornMagnussonXA70e878f2020-05-11 14:11:30 +0200101 sim_put_policy_type 201 ricsim_g1_1 1 testdata/OSC/sim_1.json
102
103 api_equal json:policy_types 2 120 #Wait for the agent to refresh types from the simulator
104
105 api_put_service 201 "rapp1" 3600 "$CR_PATH/callbacks/1"
106
107 START_ID=2000
108 NUM_POLICIES=10000
109
110 if [[ $interface == *"BATCH"* ]]; then
111 api_put_policy_batch 201 "rapp1" ricsim_g1_1 1 $START_ID testdata/OSC/pi1_template.json $NUM_POLICIES
112 else
113 api_put_policy 201 "rapp1" ricsim_g1_1 1 $START_ID testdata/OSC/pi1_template.json $NUM_POLICIES
114 fi
115
116 sim_equal ricsim_g1_1 num_instances 10000
117
118 sim_post_delete_instances 200 ricsim_g1_1
119
120 sim_equal ricsim_g1_1 num_instances 0
121
122 sim_equal ricsim_g1_1 num_instances 10000 300
123
124 START_ID=$(($START_ID+$NUM_POLICIES))
125
126 if [[ $interface == *"BATCH"* ]]; then
127 api_put_policy_batch 201 "rapp1" ricsim_g2_1 NOTYPE $START_ID testdata/STD/pi1_template.json $NUM_POLICIES
128 else
129 api_put_policy 201 "rapp1" ricsim_g2_1 NOTYPE $START_ID testdata/STD/pi1_template.json $NUM_POLICIES
130 fi
131 sim_equal ricsim_g2_1 num_instances 10000
132
133 sim_post_delete_instances 200 ricsim_g2_1
134
135 sim_equal ricsim_g2_1 num_instances 0
136
137 sim_equal ricsim_g2_1 num_instances 10000 300
138
139 api_delete_policy 204 2435
140
141 api_delete_policy 204 8693
142
143 sim_post_delete_instances 200 ricsim_g1_1
144
145 sim_equal ricsim_g1_1 num_instances 9998 300
146
147 api_delete_policy 204 12435
148
149 api_delete_policy 204 18693
150
151 api_delete_policy 204 18697
152
153 sim_post_delete_instances 200 ricsim_g2_1
154
155 sim_equal ricsim_g1_1 num_instances 9998 300
156
157 sim_equal ricsim_g2_1 num_instances 9997 300
158
159 api_equal json:policies 19995
160
161 done
162
163done
BjornMagnussonXA80a92002020-03-19 14:31:06 +0100164
165
166check_policy_agent_logs
167
168#### TEST COMPLETE ####
169
170store_logs END
171
BjornMagnussonXA70e878f2020-05-11 14:11:30 +0200172print_result
173
174auto_clean_containers