Merge "Improved specification of images and tags"
[nonrtric.git] / test / auto-test / FTC800.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="Create 10000 policies in sequence using http/https and Agent REST/DMAAP with/without SDNC controller"
21
22 #App names to include in the test, space separated list
23 INCLUDED_IMAGES="CBS CONSUL CP CR MR PA RICSIM SDNC"
24
25 #SUPPORTED TEST ENV FILE
26 SUPPORTED_PROFILES="ONAP-GUILIN ONAP-HONOLULU  ORAN-CHERRY ORAN-DAWN"
27
28 . ../common/testcase_common.sh  $@
29 . ../common/agent_api_functions.sh
30 . ../common/ricsimulator_api_functions.sh
31 . ../common/cr_api_functions.sh
32
33 #### TEST BEGIN ####
34
35 generate_uuid
36
37 #Local vars in test script
38 ##########################
39 # Number of policies in each sequence
40 NUM_POLICIES=10000
41
42 # Tested variants of REST/DMAAP/SDNC config
43 TESTED_VARIANTS="NOSDNC   SDNC"
44
45 #Test agent and simulator protocol versions (others are http only)
46 TESTED_PROTOCOLS="HTTP HTTPS"
47
48 for __httpx in $TESTED_PROTOCOLS ; do
49     for interface in $TESTED_VARIANTS ; do
50
51         echo "#####################################################################"
52         echo "#####################################################################"
53         echo "### Testing agent via $interface using $__httpx"
54         echo "#####################################################################"
55         echo "#####################################################################"
56
57         if [ $__httpx == "HTTPS" ]; then
58             use_cr_https
59             use_simulator_https
60             use_mr_https
61             use_agent_rest_https
62         else
63             use_cr_http
64             use_simulator_http
65             use_mr_http
66             use_agent_rest_http
67         fi
68
69         # Policy instance start id
70         START_ID=1
71
72         clean_containers
73
74         start_ric_simulators ricsim_g1 1 OSC_2.1.0
75         start_ric_simulators ricsim_g2 1 STD_1.1.3
76         if [ "$PMS_VERSION" == "V2" ]; then
77             start_ric_simulators ricsim_g3 1  STD_2.0.0
78         fi
79
80         start_mr
81
82         start_cr
83
84         if [[ $interface == "SDNC" ]]; then
85             start_sdnc
86             prepare_consul_config      SDNC    ".consul_config.json"
87         else
88             prepare_consul_config      NOSDNC  ".consul_config.json"
89         fi
90
91         start_consul_cbs
92
93         consul_config_app                      ".consul_config.json"
94
95         start_control_panel
96
97         start_policy_agent
98
99         set_agent_debug
100
101         mr_equal requests_submitted 0
102
103
104         api_get_status 200
105
106         sim_print ricsim_g1_1 interface
107         sim_print ricsim_g2_1 interface
108         if [ "$PMS_VERSION" == "V2" ]; then
109             sim_print ricsim_g3_1 interface
110         fi
111
112         sim_put_policy_type 201 ricsim_g1_1 1 testdata/OSC/sim_1.json
113
114         if [ "$PMS_VERSION" == "V2" ]; then
115             sim_put_policy_type 201 ricsim_g3_1 STD_QOS2_0.1.0 testdata/STD2/sim_qos2.json
116
117             api_equal json:policy-types 3 120  #Wait for the agent to refresh types from the simulators
118         else
119             api_equal json:policy_types 2 120  #Wait for the agent to refresh types from the simulators
120         fi
121
122         api_put_service 201 "serv1" 3600 "$CR_PATH/1"
123
124         if [ "$PMS_VERSION" == "V2" ]; then
125             notificationurl=$CR_PATH"/test"
126         else
127             notificationurl=""
128         fi
129
130         start_timer "Create polices in OSC via agent REST and $interface using "$__httpx
131         api_put_policy 201 "serv1" ricsim_g1_1 1 $START_ID NOTRANSIENT $notificationurl testdata/OSC/pi1_template.json $NUM_POLICIES
132         print_timer "Create polices in OSC via agent REST and $interface using "$__httpx
133
134         sim_equal ricsim_g1_1 num_instances $NUM_POLICIES
135
136         START_ID=$(($START_ID+$NUM_POLICIES))
137
138         start_timer "Create polices in STD via agent REST and $interface using "$__httpx
139         api_put_policy 201 "serv1" ricsim_g2_1 NOTYPE $START_ID NOTRANSIENT $notificationurl testdata/STD/pi1_template.json $NUM_POLICIES
140         print_timer "Create polices in STD via agent REST and $interface using "$__httpx
141
142         sim_equal ricsim_g2_1 num_instances $NUM_POLICIES
143
144         if [ "$PMS_VERSION" == "V2" ]; then
145
146             START_ID=$(($START_ID+$NUM_POLICIES))
147
148             start_timer "Create polices in STD 2 via agent REST and $interface using "$__httpx
149             api_put_policy 201 "serv1" ricsim_g3_1 STD_QOS2_0.1.0 $START_ID NOTRANSIENT $notificationurl testdata/STD2/pi_qos2_template.json $NUM_POLICIES
150             print_timer "Create polices in STD via agent REST and $interface using "$__httpx
151
152             sim_equal ricsim_g3_1 num_instances $NUM_POLICIES
153         fi
154
155         if [ $__httpx == "HTTPS" ]; then
156             echo "Using secure ports towards dmaap"
157             use_agent_dmaap_https
158         else
159             echo "Using non-secure ports towards dmaap"
160             use_agent_dmaap_http
161         fi
162
163         START_ID=$(($START_ID+$NUM_POLICIES))
164
165         start_timer "Create polices in OSC via agent DMAAP, one by one, and $interface using "$__httpx
166         api_put_policy 201 "serv1" ricsim_g1_1 1 $START_ID NOTRANSIENT $notificationurl testdata/OSC/pi1_template.json $NUM_POLICIES
167         print_timer "Create polices in OSC via agent DMAAP, one by one, and $interface using "$__httpx
168
169         sim_equal ricsim_g1_1 num_instances $((2*$NUM_POLICIES))
170
171         START_ID=$(($START_ID+$NUM_POLICIES))
172
173         start_timer "Create polices in STD via agent DMAAP, one by one, and $interface using "$__httpx
174         api_put_policy 201 "serv1" ricsim_g2_1 NOTYPE $START_ID NOTRANSIENT $notificationurl testdata/STD/pi1_template.json $NUM_POLICIES
175         print_timer "Create polices in STD via agent DMAAP, one by one, and $interface using "$__httpx
176
177         sim_equal ricsim_g2_1 num_instances $((2*$NUM_POLICIES))
178
179         if [ "$PMS_VERSION" == "V2" ]; then
180
181             START_ID=$(($START_ID+$NUM_POLICIES))
182
183             start_timer "Create polices in STD 2 via agent DMAAP, one by one, and $interface using "$__httpx
184             api_put_policy 201 "serv1" ricsim_g3_1 STD_QOS2_0.1.0 $START_ID NOTRANSIENT $notificationurl testdata/STD2/pi_qos2_template.json $NUM_POLICIES
185             print_timer "Create polices in STD via agent DMAAP, one by one, and $interface using "$__httpx
186
187             sim_equal ricsim_g3_1 num_instances $((2*$NUM_POLICIES))
188         fi
189
190         START_ID=$(($START_ID+$NUM_POLICIES))
191
192         start_timer "Create polices in OSC via agent DMAAP in batch and $interface using "$__httpx
193         api_put_policy_batch 201 "serv1" ricsim_g1_1 1 $START_ID NOTRANSIENT $notificationurl testdata/OSC/pi1_template.json $NUM_POLICIES
194         print_timer "Create polices in OSC via agent DMAAP in batch and $interface using "$__httpx
195
196         sim_equal ricsim_g1_1 num_instances $((3*$NUM_POLICIES))
197
198         START_ID=$(($START_ID+$NUM_POLICIES))
199
200         start_timer "Create polices in STD via agent DMAAP in batch and $interface using "$__httpx
201         api_put_policy_batch 201 "serv1" ricsim_g2_1 NOTYPE $START_ID NOTRANSIENT $notificationurl testdata/STD/pi1_template.json $NUM_POLICIES
202         print_timer "Create polices in STD via agent DMAAP in batch and $interface using "$__httpx
203
204         sim_equal ricsim_g2_1 num_instances $((3*$NUM_POLICIES))
205
206         if [ "$PMS_VERSION" == "V2" ]; then
207
208             START_ID=$(($START_ID+$NUM_POLICIES))
209
210             start_timer "Create polices in STD via agent DMAAP in batch and $interface using "$__httpx
211             api_put_policy_batch 201 "serv1" ricsim_g3_1 STD_QOS2_0.1.0 $START_ID NOTRANSIENT $notificationurl testdata/STD2/pi_qos2_template.json $NUM_POLICIES
212             print_timer "Create polices in STD via agent DMAAP in batch and $interface using "$__httpx
213
214             sim_equal ricsim_g3_1 num_instances $((3*$NUM_POLICIES))
215         fi
216
217         if [ $interface == "SDNC" ]; then
218             sim_contains_str ricsim_g1_1 remote_hosts "a1-controller"
219             sim_contains_str ricsim_g2_1 remote_hosts "a1-controller"
220             if [ "$PMS_VERSION" == "V2" ]; then
221                 sim_contains_str ricsim_g3_1 remote_hosts "a1-controller"
222             fi
223         else
224             sim_contains_str ricsim_g1_1 remote_hosts "policy-agent"
225             sim_contains_str ricsim_g2_1 remote_hosts "policy-agent"
226             if [ "$PMS_VERSION" == "V2" ]; then
227                 sim_contains_str ricsim_g3_1 remote_hosts "policy-agent"
228             fi
229         fi
230
231         check_policy_agent_logs
232         if [[ $interface = *"SDNC"* ]]; then
233             check_sdnc_logs
234         fi
235
236         store_logs          "${__httpx}__${interface}"
237     done
238 done
239
240 #### TEST COMPLETE ####
241
242 print_result
243
244 auto_clean_containers