Merge "Adding owner to jobInfo"
[nonrtric.git] / test / auto-test / FTC10.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="Basic use case, register service, create/update policy, delete policy, de-register service using both STD and OSC interface while mixing REST and Dmaap"
21
22 #App names to include in the test, space separated list
23 INCLUDED_IMAGES="CBS CONSUL CP CR MR PA RICSIM"
24
25 #SUPPORTED TEST ENV FILE
26 SUPPORTED_PROFILES="ONAP-MASTER ONAP-GUILIN ORAN-CHERRY"
27
28 . ../common/testcase_common.sh $@
29 . ../common/agent_api_functions.sh
30 . ../common/ricsimulator_api_functions.sh
31
32 #### TEST BEGIN ####
33
34 generate_uuid
35
36 use_simulator_http
37 use_mr_http
38 use_agent_rest_http
39
40
41 clean_containers
42
43 start_ric_simulators  ricsim_g1 3 OSC_2.1.0
44
45 start_ric_simulators  ricsim_g2 5 STD_1.1.3
46
47 if [ "$PMS_VERSION" == "V2" ]; then
48     start_ric_simulators ricsim_g3 1  STD_2.0.0
49 fi
50
51 start_mr
52
53 start_consul_cbs
54
55 prepare_consul_config      NOSDNC  ".consul_config.json"
56 consul_config_app                  ".consul_config.json"
57
58 start_control_panel
59
60 start_policy_agent
61
62 set_agent_debug
63
64 use_agent_rest_http
65
66 api_get_status 200
67
68 sim_print ricsim_g1_1 interface
69
70 sim_print ricsim_g2_1 interface
71
72 if [ "$PMS_VERSION" == "V2" ]; then
73     sim_print ricsim_g3_1 interface
74 fi
75
76 sim_put_policy_type 201 ricsim_g1_1 1 testdata/OSC/sim_1.json
77
78 if [ "$PMS_VERSION" == "V2" ]; then
79     sim_put_policy_type 201 ricsim_g3_1 STD_QOS_0_2_0 testdata/STD2/sim_qos.json
80     api_equal json:policy-types 3 60
81 else
82     api_equal json:policy_types 2 60
83 fi
84
85 # Create policies
86
87 if [ "$PMS_VERSION" == "V2" ]; then
88     notificationurl=$CR_PATH"/test"
89 else
90     notificationurl=""
91 fi
92
93 use_agent_rest_http
94
95 api_put_service 201 "service1" 3600 "$CR_PATH/1"
96
97 api_put_policy 201 "service1" ricsim_g1_1 1 2000 NOTRANSIENT $notificationurl testdata/OSC/pi1_template.json 1
98
99 sim_equal ricsim_g1_1 num_instances 1
100
101
102 use_agent_dmaap_http
103
104 api_put_policy 201 "service1" ricsim_g1_1 1 3000 NOTRANSIENT $notificationurl testdata/OSC/pi1_template.json 1
105
106 sim_equal ricsim_g1_1 num_instances 2
107
108
109 use_agent_rest_http
110
111 api_put_policy 201 "service1" ricsim_g2_1 NOTYPE 2100 NOTRANSIENT $notificationurl testdata/STD/pi1_template.json 1
112
113 sim_equal ricsim_g2_1 num_instances 1
114
115
116 use_agent_dmaap_http
117
118 api_put_policy 201 "service1" ricsim_g2_1 NOTYPE 3100 NOTRANSIENT $notificationurl testdata/STD/pi1_template.json 1
119
120 sim_equal ricsim_g2_1 num_instances 2
121
122 if [ "$PMS_VERSION" == "V2" ]; then
123     use_agent_rest_http
124
125     api_put_policy 201 "service1" ricsim_g3_1 STD_QOS_0_2_0 2200 true $notificationurl testdata/STD2/pi_qos_template.json 1
126
127     sim_equal ricsim_g3_1 num_instances 1
128
129     use_agent_dmaap_http
130
131     api_put_policy 201 "service1" ricsim_g3_1 STD_QOS_0_2_0 3200 NOTRANSIENT $notificationurl testdata/STD2/pi_qos_template.json 1
132
133     sim_equal ricsim_g3_1 num_instances 2
134
135 fi
136
137 #Update policies
138 use_agent_rest_http
139
140 api_put_service 200 "service1" 3600 "$CR_PATH/1"
141
142 api_put_policy 200 "service1" ricsim_g1_1 1 2000 NOTRANSIENT $notificationurl testdata/OSC/pi1_template.json 1
143
144 sim_equal ricsim_g1_1 num_instances 2
145
146
147 use_agent_dmaap_http
148
149 api_put_policy 200 "service1" ricsim_g1_1 1 3000 NOTRANSIENT $notificationurl testdata/OSC/pi1_template.json 1
150
151 sim_equal ricsim_g1_1 num_instances 2
152
153
154 use_agent_rest_http
155
156
157 api_put_policy 200 "service1" ricsim_g2_1 NOTYPE 2100 NOTRANSIENT $notificationurl testdata/STD/pi1_template.json 1
158
159 sim_equal ricsim_g2_1 num_instances 2
160
161
162 use_agent_dmaap_http
163
164 api_put_policy 200 "service1" ricsim_g2_1 NOTYPE 3100 NOTRANSIENT $notificationurl testdata/STD/pi1_template.json 1
165
166 sim_equal ricsim_g2_1 num_instances 2
167
168 if [ "$PMS_VERSION" == "V2" ]; then
169     use_agent_rest_http
170
171     api_put_policy 200 "service1" ricsim_g3_1 STD_QOS_0_2_0 2200 true $notificationurl testdata/STD2/pi_qos_template.json 1
172
173     sim_equal ricsim_g3_1 num_instances 2
174
175
176     use_agent_dmaap_http
177
178     api_put_policy 200 "service1" ricsim_g3_1 STD_QOS_0_2_0 3200 true $notificationurl testdata/STD2/pi_qos_template.json 1
179
180     sim_equal ricsim_g3_1 num_instances 2
181 fi
182
183 # Check policies
184 if [ "$PMS_VERSION" == "V2" ]; then
185     api_get_policy 200 2000 testdata/OSC/pi1_template.json "service1" ricsim_g1_1 1 false $notificationurl
186     api_get_policy 200 3000 testdata/OSC/pi1_template.json "service1" ricsim_g1_1 1 false $notificationurl
187     api_get_policy 200 2100 testdata/STD/pi1_template.json "service1" ricsim_g2_1 NOTYPE false $notificationurl
188     api_get_policy 200 3100 testdata/STD/pi1_template.json "service1" ricsim_g2_1 NOTYPE false $notificationurl
189     api_get_policy 200 2200 testdata/STD2/pi_qos_template.json "service1" ricsim_g3_1 STD_QOS_0_2_0 true $notificationurl
190     api_get_policy 200 3200 testdata/STD2/pi_qos_template.json "service1" ricsim_g3_1 STD_QOS_0_2_0 true $notificationurl
191 else
192     api_get_policy 200 2000 testdata/OSC/pi1_template.json
193     api_get_policy 200 3000 testdata/OSC/pi1_template.json
194     api_get_policy 200 2100 testdata/STD/pi1_template.json
195     api_get_policy 200 3100 testdata/STD/pi1_template.json
196 fi
197
198 sim_equal ricsim_g1_1 num_instances 2
199 sim_equal ricsim_g2_1 num_instances 2
200
201 if [ "$PMS_VERSION" == "V2" ]; then
202     sim_equal ricsim_g3_1 num_instances 2
203 fi
204
205 # Remove policies
206
207 use_agent_dmaap_http
208 api_delete_policy 204 2000
209 use_agent_rest_http
210 api_delete_policy 204 3000
211 use_agent_dmaap_http
212 api_delete_policy 204 2100
213 use_agent_rest_http
214 api_delete_policy 204 3100
215 if [ "$PMS_VERSION" == "V2" ]; then
216     use_agent_dmaap_http
217     api_delete_policy 204 2200
218     use_agent_rest_http
219     api_delete_policy 204 3200
220 fi
221
222 sim_equal ricsim_g1_1 num_instances 0
223 sim_equal ricsim_g2_1 num_instances 0
224
225 if [ "$PMS_VERSION" == "V2" ]; then
226     sim_equal ricsim_g3_1 num_instances 0
227 fi
228
229 # Check remote host access to simulator
230
231 sim_contains_str ricsim_g1_1 remote_hosts "policy-agent"
232 sim_contains_str ricsim_g2_1 remote_hosts "policy-agent"
233 if [ "$PMS_VERSION" == "V2" ]; then
234     sim_contains_str ricsim_g3_1 remote_hosts "policy-agent"
235 fi
236
237 # Check policy removal
238 use_agent_rest_http
239 api_get_policy 404 2000
240 api_get_policy 404 3000
241 api_get_policy 404 2100
242 api_get_policy 404 3100
243
244 if [ "$PMS_VERSION" == "V2" ]; then
245     api_get_policy 404 2200
246     api_get_policy 404 3200
247 fi
248
249 # Remove the service
250 use_agent_dmaap_http
251 api_delete_services 204 "service1"
252
253 api_get_services 404 "service1"
254
255 check_policy_agent_logs
256
257 #### TEST COMPLETE ####
258
259 store_logs          END
260
261 print_result
262
263 auto_clean_containers