Added UUID to policy ids and new policy types
[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 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 # Number of policies in each sequence
38 NUM_POLICIES=10000
39
40 # Tested variants of REST/DMAAP/SDNC config
41 TESTED_VARIANTS="NOSDNC   SDNC"
42
43 #Test agent and simulator protocol versions (others are http only)
44 TESTED_PROTOCOLS="HTTP HTTPS"
45 for __httpx in $TESTED_PROTOCOLS ; do
46     for interface in $TESTED_VARIANTS ; do
47
48         echo "#####################################################################"
49         echo "#####################################################################"
50         echo "### Testing agent via $interface using $__httpx"
51         echo "#####################################################################"
52         echo "#####################################################################"
53
54         # Policy instance start id
55         START_ID=1
56
57         clean_containers
58
59         if [ $__httpx == "HTTPS" ]; then
60             #"Using secure ports towards simulators"
61             use_simulator_https
62         else
63             #"Using non-secure ports towards simulators"
64             use_simulator_http
65         fi
66
67         start_ric_simulators ricsim_g1 1 OSC_2.1.0
68         start_ric_simulators ricsim_g2 1 STD_1.1.3
69
70         start_mr
71
72         if [ $__httpx == "HTTPS" ]; then
73
74             deviation "TR17 - agent cannot use https towards MR - test combo $interface and $__httpx"
75             #This is the intention
76             #echo "Using secure ports between agent and MR"
77             #use_mr_https
78
79             #Work around until it is fixed
80             #"Using non-secure ports between agent and MR"
81             use_mr_http
82         else
83             #"Using non-secure ports between agent and MR"
84             use_mr_http
85         fi
86
87         start_cr
88
89         if [ $interface == "SDNC" ]; then
90
91             start_sdnc
92
93             if [ $__httpx == "HTTPS" ]; then
94                 # "Using secure ports towards SDNC"
95                 use_sdnc_https
96             else
97                 #"Using non-secure ports towards SDNC"
98                 use_sdnc_http
99             fi
100         fi
101
102         start_consul_cbs
103
104         if [ $interface == "SDNC" ]; then
105             prepare_consul_config      SDNC    ".consul_config.json"
106         else
107             prepare_consul_config      NOSDNC  ".consul_config.json"
108         fi
109
110         consul_config_app                      ".consul_config.json"
111
112         start_control_panel
113
114         start_policy_agent
115
116         set_agent_debug
117
118         if [ $__httpx == "HTTPS" ]; then
119             # "Using secure ports towards the agent"
120             use_agent_rest_https
121         else
122             # "Using non-secure ports towards the agent"
123             use_agent_rest_http
124         fi
125
126
127         cr_equal received_callbacks 0
128         mr_equal requests_submitted 0
129
130
131         api_get_status 200
132
133         sim_print ricsim_g1_1 interface
134         sim_print ricsim_g2_1 interface
135
136         sim_put_policy_type 201 ricsim_g1_1 1 testdata/OSC/sim_1.json
137
138
139         api_equal json:policy_types 2 120  #Wait for the agent to refresh types from the simulators
140
141         api_put_service 201 "serv1" 3600 "$CR_PATH/1"
142
143         start_timer "Create polices in OSC via agent REST and $interface using "$__httpx
144         api_put_policy 201 "serv1" ricsim_g1_1 1 $START_ID NOTRANSIENT testdata/OSC/pi1_template.json $NUM_POLICIES
145         print_timer "Create polices in OSC via agent REST and $interface using "$__httpx
146
147         sim_equal ricsim_g1_1 num_instances $NUM_POLICIES
148
149         START_ID=$(($START_ID+$NUM_POLICIES))
150
151         start_timer "Create polices in STD via agent REST and $interface using "$__httpx
152         api_put_policy 201 "serv1" ricsim_g2_1 NOTYPE $START_ID NOTRANSIENT testdata/STD/pi1_template.json $NUM_POLICIES
153         print_timer "Create polices in STD via agent REST and $interface using "$__httpx
154
155         sim_equal ricsim_g2_1 num_instances $NUM_POLICIES
156
157         use_agent_dmaap
158
159         START_ID=$(($START_ID+$NUM_POLICIES))
160
161         start_timer "Create polices in OSC via agent DMAAP, one by one, and $interface using "$__httpx
162         api_put_policy 201 "serv1" ricsim_g1_1 1 $START_ID NOTRANSIENT testdata/OSC/pi1_template.json $NUM_POLICIES
163         print_timer "Create polices in OSC via agent DMAAP, one by one, and $interface using "$__httpx
164
165         sim_equal ricsim_g1_1 num_instances $((2*$NUM_POLICIES))
166
167         START_ID=$(($START_ID+$NUM_POLICIES))
168
169         start_timer "Create polices in STD via agent DMAAP, one by one, and $interface using "$__httpx
170         api_put_policy 201 "serv1" ricsim_g2_1 NOTYPE $START_ID NOTRANSIENT testdata/STD/pi1_template.json $NUM_POLICIES
171         print_timer "Create polices in STD via agent DMAAP, one by one, and $interface using "$__httpx
172
173         sim_equal ricsim_g2_1 num_instances $((2*$NUM_POLICIES))
174
175         START_ID=$(($START_ID+$NUM_POLICIES))
176
177         start_timer "Create polices in OSC via agent DMAAP in batch and $interface using "$__httpx
178         api_put_policy_batch 201 "serv1" ricsim_g1_1 1 $START_ID NOTRANSIENT testdata/OSC/pi1_template.json $NUM_POLICIES
179         print_timer "Create polices in OSC via agent DMAAP in batch and $interface using "$__httpx
180
181         sim_equal ricsim_g1_1 num_instances $((3*$NUM_POLICIES))
182
183         START_ID=$(($START_ID+$NUM_POLICIES))
184
185         start_timer "Create polices in STD via agent DMAAP in batch and $interface using "$__httpx
186         api_put_policy_batch 201 "serv1" ricsim_g2_1 NOTYPE $START_ID NOTRANSIENT testdata/STD/pi1_template.json $NUM_POLICIES
187         print_timer "Create polices in STD via agent DMAAP in batch and $interface using "$__httpx
188
189         sim_equal ricsim_g2_1 num_instances $((3*$NUM_POLICIES))
190
191         if [ $interface == "SDNC" ]; then
192             sim_contains_str ricsim_g1_1 remote_hosts "a1-controller"
193             sim_contains_str ricsim_g2_1 remote_hosts "a1-controller"
194         else
195             sim_contains_str ricsim_g1_1 remote_hosts "policy-agent"
196             sim_contains_str ricsim_g2_1 remote_hosts "policy-agent"
197         fi
198
199         check_policy_agent_logs
200
201         store_logs          "${__httpx}__${interface}"
202     done
203 done
204
205 #### TEST COMPLETE ####
206
207 print_result
208
209 auto_clean_containers