Merge "Step version for release"
[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 #Local vars in test script
32 ##########################
33 # Path to callback receiver
34 CR_PATH="http://$CR_APP_NAME:$CR_EXTERNAL_PORT/callbacks"
35
36 # Tested variants of REST/DMAAP/SDNC config
37 TESTED_VARIANTS="REST   DMAAP   REST+SDNC   DMAAP+SDNC DMAAP_BATCH DMAAP_BATCH+SDNC"
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: "$interface" and "$__httpx
46         echo "#####################################################################"
47         echo "#####################################################################"
48
49
50         # Clean container and start all needed containers #
51         clean_containers
52
53         if [ $__httpx == "HTTPS" ]; then
54             echo "Using secure ports towards simulators"
55             use_simulator_https
56         else
57             echo "Using non-secure ports towards simulators"
58             use_simulator_http
59         fi
60
61         start_ric_simulators ricsim_g1 4 OSC_2.1.0
62
63         start_ric_simulators ricsim_g2 4 STD_1.1.3
64
65         start_mr
66
67         start_cr
68
69         start_consul_cbs
70
71         if [[ $interface = *"SDNC"* ]]; then
72             start_sdnc
73             prepare_consul_config      SDNC  ".consul_config.json"
74         else
75             prepare_consul_config      NOSDNC  ".consul_config.json"
76         fi
77
78         consul_config_app                  ".consul_config.json"
79
80         start_control_panel
81
82         start_policy_agent
83
84         set_agent_debug
85
86         if [[ $interface == *"DMAAP"* ]]; then
87             use_agent_dmaap
88         else
89             if [ $__httpx == "HTTPS" ]; then
90                 echo "Using secure ports towards the agent"
91                 use_agent_rest_https
92             else
93                 echo "Using non-secure ports towards the agent"
94                 use_agent_rest_http
95             fi
96         fi
97
98         api_get_status 200
99
100         sim_print ricsim_g1_1 interface
101
102         sim_print ricsim_g2_1 interface
103
104         sim_put_policy_type 201 ricsim_g1_1 1 testdata/OSC/sim_1.json
105
106         api_equal json:policy_types 2 120  #Wait for the agent to refresh types from the simulator
107
108         api_put_service 201 "serv1" 3600 "$CR_PATH/1"
109
110         START_ID=2000
111         NUM_POLICIES=10000
112
113         if [[ $interface == *"BATCH"* ]]; then
114             api_put_policy_batch 201 "serv1" ricsim_g1_1 1 $START_ID NOTRANSIENT testdata/OSC/pi1_template.json $NUM_POLICIES
115         else
116             api_put_policy 201 "serv1" ricsim_g1_1 1 $START_ID NOTRANSIENT testdata/OSC/pi1_template.json $NUM_POLICIES
117         fi
118
119         sim_equal ricsim_g1_1 num_instances 10000
120
121         sim_post_delete_instances 200 ricsim_g1_1
122
123         sim_equal ricsim_g1_1 num_instances 0
124
125         sim_equal ricsim_g1_1 num_instances 10000 300
126
127         START_ID=$(($START_ID+$NUM_POLICIES))
128
129         if [[ $interface == *"BATCH"* ]]; then
130             api_put_policy_batch 201 "serv1" ricsim_g2_1 NOTYPE $START_ID NOTRANSIENT testdata/STD/pi1_template.json $NUM_POLICIES
131         else
132             api_put_policy 201 "serv1" ricsim_g2_1 NOTYPE $START_ID NOTRANSIENT testdata/STD/pi1_template.json $NUM_POLICIES
133         fi
134         sim_equal ricsim_g2_1 num_instances 10000
135
136         sim_post_delete_instances 200 ricsim_g2_1
137
138         sim_equal ricsim_g2_1 num_instances 0
139
140         sim_equal ricsim_g2_1 num_instances 10000 300
141
142         api_delete_policy 204 2435
143
144         api_delete_policy 204 8693
145
146         sim_post_delete_instances 200 ricsim_g1_1
147
148         sim_equal ricsim_g1_1 num_instances 9998 300
149
150         api_delete_policy 204 12435
151
152         api_delete_policy 204 18693
153
154         api_delete_policy 204 18697
155
156         sim_post_delete_instances 200 ricsim_g2_1
157
158         sim_equal ricsim_g1_1 num_instances 9998 300
159
160         sim_equal ricsim_g2_1 num_instances 9997 300
161
162         api_equal json:policies 19995
163
164         check_policy_agent_logs
165
166         store_logs          "${__httpx}__${interface}"
167
168     done
169
170 done
171
172
173 #### TEST COMPLETE ####
174
175
176 print_result
177
178 auto_clean_containers