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