d9bca7df295764717e5909f6e498d5e1673ac758
[nonrtric.git] / test / auto-test / FTC300.sh
1 #!/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
20 TC_ONELINE_DESCR="Resync 10000 policies using OSC interface over REST"
21
22 #App names to exclude checking pulling images for, space separated list
23 EXCLUDED_IMAGES="SDNC_ONAP"
24
25 . ../common/testcase_common.sh  $@
26 . ../common/agent_api_functions.sh
27 . ../common/ricsimulator_api_functions.sh
28
29 #### TEST BEGIN ####
30
31 generate_uuid
32
33 #Local vars in test script
34 ##########################
35 # Path to callback receiver
36 CR_PATH="http://$CR_APP_NAME:$CR_EXTERNAL_PORT/callbacks"
37
38 # Tested variants of REST/DMAAP/SDNC config
39 TESTED_VARIANTS="REST   DMAAP   REST+SDNC   DMAAP+SDNC DMAAP_BATCH DMAAP_BATCH+SDNC"
40 #Test agent and simulator protocol versions (others are http only)
41 TESTED_PROTOCOLS="HTTP HTTPS"
42 for __httpx in $TESTED_PROTOCOLS ; do
43     for interface in $TESTED_VARIANTS ; do
44
45         echo "#####################################################################"
46         echo "#####################################################################"
47         echo "### Testing agent: "$interface" and "$__httpx
48         echo "#####################################################################"
49         echo "#####################################################################"
50
51
52         # Clean container and start all needed containers #
53         clean_containers
54
55         if [ $__httpx == "HTTPS" ]; then
56             #echo "Using secure ports between agent and MR"
57             use_mr_https
58             echo "Using secure ports towards simulators"
59             use_simulator_https
60         else
61             #"Using non-secure ports between agent and MR"
62             use_mr_http
63             echo "Using non-secure ports towards simulators"
64             use_simulator_http
65         fi
66
67         start_ric_simulators ricsim_g1 4 OSC_2.1.0
68
69         start_ric_simulators ricsim_g2 4 STD_1.1.3
70
71         start_mr
72
73         start_cr
74
75         start_consul_cbs
76
77         if [[ $interface = *"SDNC"* ]]; then
78             start_sdnc
79             prepare_consul_config      SDNC  ".consul_config.json"
80         else
81             prepare_consul_config      NOSDNC  ".consul_config.json"
82         fi
83
84         consul_config_app                  ".consul_config.json"
85
86         start_control_panel
87
88         start_policy_agent
89
90         set_agent_debug
91
92         if [[ $interface == *"DMAAP"* ]]; then
93             use_agent_dmaap
94         else
95             if [ $__httpx == "HTTPS" ]; then
96                 echo "Using secure ports towards the agent"
97                 use_agent_rest_https
98             else
99                 echo "Using non-secure ports towards the agent"
100                 use_agent_rest_http
101             fi
102         fi
103
104         api_get_status 200
105
106         sim_print ricsim_g1_1 interface
107
108         sim_print ricsim_g2_1 interface
109
110         sim_put_policy_type 201 ricsim_g1_1 1 testdata/OSC/sim_1.json
111
112         api_equal json:policy_types 2 120  #Wait for the agent to refresh types from the simulator
113
114         api_put_service 201 "serv1" 3600 "$CR_PATH/1"
115
116         START_ID=2000
117         NUM_POLICIES=10000
118
119         if [[ $interface == *"BATCH"* ]]; then
120             api_put_policy_batch 201 "serv1" ricsim_g1_1 1 $START_ID NOTRANSIENT testdata/OSC/pi1_template.json $NUM_POLICIES
121         else
122             api_put_policy 201 "serv1" ricsim_g1_1 1 $START_ID NOTRANSIENT testdata/OSC/pi1_template.json $NUM_POLICIES
123         fi
124
125         sim_equal ricsim_g1_1 num_instances 10000
126
127         sim_post_delete_instances 200 ricsim_g1_1
128
129         sim_equal ricsim_g1_1 num_instances 0
130
131         sim_equal ricsim_g1_1 num_instances 10000 300
132
133         START_ID=$(($START_ID+$NUM_POLICIES))
134
135         if [[ $interface == *"BATCH"* ]]; then
136             api_put_policy_batch 201 "serv1" ricsim_g2_1 NOTYPE $START_ID NOTRANSIENT testdata/STD/pi1_template.json $NUM_POLICIES
137         else
138             api_put_policy 201 "serv1" ricsim_g2_1 NOTYPE $START_ID NOTRANSIENT testdata/STD/pi1_template.json $NUM_POLICIES
139         fi
140         sim_equal ricsim_g2_1 num_instances 10000
141
142         sim_post_delete_instances 200 ricsim_g2_1
143
144         sim_equal ricsim_g2_1 num_instances 0
145
146         sim_equal ricsim_g2_1 num_instances 10000 300
147
148         api_delete_policy 204 2435
149
150         api_delete_policy 204 8693
151
152         sim_post_delete_instances 200 ricsim_g1_1
153
154         sim_equal ricsim_g1_1 num_instances 9998 300
155
156         api_delete_policy 204 12435
157
158         api_delete_policy 204 18693
159
160         api_delete_policy 204 18697
161
162         sim_post_delete_instances 200 ricsim_g2_1
163
164         sim_equal ricsim_g1_1 num_instances 9998 300
165
166         sim_equal ricsim_g2_1 num_instances 9997 300
167
168         api_equal json:policies 19995
169
170         check_policy_agent_logs
171
172         store_logs          "${__httpx}__${interface}"
173
174     done
175
176 done
177
178
179 #### TEST COMPLETE ####
180
181
182 print_result
183
184 auto_clean_containers