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