Adapted test scripts to changes in PMS 2.0
[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-MASTER ONAP-GUILIN"
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 for __httpx in $TESTED_PROTOCOLS ; do
48     for interface in $TESTED_VARIANTS ; do
49
50         echo "#####################################################################"
51         echo "#####################################################################"
52         echo "### Testing agent via $interface using $__httpx"
53         echo "#####################################################################"
54         echo "#####################################################################"
55
56         if [ $__httpx == "HTTPS" ]; then
57             use_cr_https
58             use_simulator_https
59             use_mr_https
60             use_agent_rest_https
61         else
62             use_cr_http
63             use_simulator_http
64             use_mr_http
65             use_agent_rest_http
66         fi
67
68         # Policy instance start id
69         START_ID=1
70
71         clean_containers
72
73         start_ric_simulators ricsim_g1 1 OSC_2.1.0
74         start_ric_simulators ricsim_g2 1 STD_1.1.3
75         if [ "$PMS_VERSION" == "V2" ]; then
76             start_ric_simulators ricsim_g3 1  STD_2.0.0
77         fi
78
79         start_mr
80
81         start_cr
82
83         if [[ $interface == "SDNC" ]]; then
84             start_sdnc
85             prepare_consul_config      SDNC    ".consul_config.json"
86         else
87             prepare_consul_config      NOSDNC  ".consul_config.json"
88         fi
89
90         start_consul_cbs
91
92         consul_config_app                      ".consul_config.json"
93
94         start_control_panel
95
96         start_policy_agent
97
98         set_agent_debug
99
100         mr_equal requests_submitted 0
101
102
103         api_get_status 200
104
105         sim_print ricsim_g1_1 interface
106         sim_print ricsim_g2_1 interface
107
108         sim_put_policy_type 201 ricsim_g1_1 1 testdata/OSC/sim_1.json
109
110         if [ "$PMS_VERSION" == "V2" ]; then
111             api_equal json:policy-types 2 120  #Wait for the agent to refresh types from the simulators
112         else
113             api_equal json:policy_types 2 120  #Wait for the agent to refresh types from the simulators
114         fi
115
116         api_put_service 201 "serv1" 3600 "$CR_PATH/1"
117
118         if [ "$PMS_VERSION" == "V2" ]; then
119             notificationurl=$CR_PATH"/test"
120         else
121             notificationurl=""
122         fi
123
124         start_timer "Create polices in OSC via agent REST and $interface using "$__httpx
125         api_put_policy 201 "serv1" ricsim_g1_1 1 $START_ID NOTRANSIENT $notificationurl testdata/OSC/pi1_template.json $NUM_POLICIES
126         print_timer "Create polices in OSC via agent REST and $interface using "$__httpx
127
128         sim_equal ricsim_g1_1 num_instances $NUM_POLICIES
129
130         START_ID=$(($START_ID+$NUM_POLICIES))
131
132         start_timer "Create polices in STD via agent REST and $interface using "$__httpx
133         api_put_policy 201 "serv1" ricsim_g2_1 NOTYPE $START_ID NOTRANSIENT $notificationurl testdata/STD/pi1_template.json $NUM_POLICIES
134         print_timer "Create polices in STD via agent REST and $interface using "$__httpx
135
136         sim_equal ricsim_g2_1 num_instances $NUM_POLICIES
137
138         if [ $__httpx == "HTTPS" ]; then
139             echo "Using secure ports towards dmaap"
140             use_agent_dmaap_https
141         else
142             echo "Using non-secure ports towards dmaap"
143             use_agent_dmaap_http
144         fi
145
146         START_ID=$(($START_ID+$NUM_POLICIES))
147
148         start_timer "Create polices in OSC via agent DMAAP, one by one, and $interface using "$__httpx
149         api_put_policy 201 "serv1" ricsim_g1_1 1 $START_ID NOTRANSIENT $notificationurl testdata/OSC/pi1_template.json $NUM_POLICIES
150         print_timer "Create polices in OSC via agent DMAAP, one by one, and $interface using "$__httpx
151
152         sim_equal ricsim_g1_1 num_instances $((2*$NUM_POLICIES))
153
154         START_ID=$(($START_ID+$NUM_POLICIES))
155
156         start_timer "Create polices in STD via agent DMAAP, one by one, and $interface using "$__httpx
157         api_put_policy 201 "serv1" ricsim_g2_1 NOTYPE $START_ID NOTRANSIENT $notificationurl testdata/STD/pi1_template.json $NUM_POLICIES
158         print_timer "Create polices in STD via agent DMAAP, one by one, and $interface using "$__httpx
159
160         sim_equal ricsim_g2_1 num_instances $((2*$NUM_POLICIES))
161
162         START_ID=$(($START_ID+$NUM_POLICIES))
163
164         start_timer "Create polices in OSC via agent DMAAP in batch and $interface using "$__httpx
165         api_put_policy_batch 201 "serv1" ricsim_g1_1 1 $START_ID NOTRANSIENT $notificationurl testdata/OSC/pi1_template.json $NUM_POLICIES
166         print_timer "Create polices in OSC via agent DMAAP in batch and $interface using "$__httpx
167
168         sim_equal ricsim_g1_1 num_instances $((3*$NUM_POLICIES))
169
170         START_ID=$(($START_ID+$NUM_POLICIES))
171
172         start_timer "Create polices in STD via agent DMAAP in batch and $interface using "$__httpx
173         api_put_policy_batch 201 "serv1" ricsim_g2_1 NOTYPE $START_ID NOTRANSIENT $notificationurl testdata/STD/pi1_template.json $NUM_POLICIES
174         print_timer "Create polices in STD via agent DMAAP in batch and $interface using "$__httpx
175
176         sim_equal ricsim_g2_1 num_instances $((3*$NUM_POLICIES))
177
178         if [ $interface == "SDNC" ]; then
179             sim_contains_str ricsim_g1_1 remote_hosts "a1-controller"
180             sim_contains_str ricsim_g2_1 remote_hosts "a1-controller"
181             if [ "$PMS_VERSION" == "V2" ]; then
182                 sim_contains_str ricsim_g3_1 remote_hosts "a1-controller"
183             fi
184         else
185             sim_contains_str ricsim_g1_1 remote_hosts "policy-agent"
186             sim_contains_str ricsim_g2_1 remote_hosts "policy-agent"
187             if [ "$PMS_VERSION" == "V2" ]; then
188                 sim_contains_str ricsim_g3_1 remote_hosts "policy-agent"
189             fi
190         fi
191
192         check_policy_agent_logs
193         if [[ $interface = *"SDNC"* ]]; then
194             check_sdnc_logs
195         fi
196
197         store_logs          "${__httpx}__${interface}"
198     done
199 done
200
201 #### TEST COMPLETE ####
202
203 print_result
204
205 auto_clean_containers