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