Merge "Updated documentation and scripts using https between agent and MR"
[nonrtric.git] / test / auto-test / FTC100.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
21 TC_ONELINE_DESCR="Full agent API walk through using agent REST/DMAAP and with/without SDNC A1 Controller"
22
23 #App names to exclude checking pulling images for, space separated list
24 EXCLUDED_IMAGES="SDNC_ONAP"
25
26 . ../common/testcase_common.sh  $@
27 . ../common/agent_api_functions.sh
28 . ../common/ricsimulator_api_functions.sh
29
30 #### TEST BEGIN ####
31
32 generate_uuid
33
34 #Local vars in test script
35 ##########################
36
37 # Path to callback receiver
38 CR_PATH="http://$CR_APP_NAME:$CR_EXTERNAL_PORT/callbacks"
39
40 # Tested variants of REST/DMAAP/SDNC config
41 TESTED_VARIANTS="REST   DMAAP   REST+SDNC   DMAAP+SDNC"
42 #Test agent and simulator protocol versions (others are http only)
43 TESTED_PROTOCOLS="HTTP HTTPS"
44 for __httpx in $TESTED_PROTOCOLS ; do
45     for interface in $TESTED_VARIANTS ; do
46
47         echo "#####################################################################"
48         echo "#####################################################################"
49         echo "### Testing agent: $interface using $__httpx"
50         echo "#####################################################################"
51         echo "#####################################################################"
52
53
54         # Clean container and start all needed containers #
55         clean_containers
56
57         if [ $__httpx == "HTTPS" ]; then
58             #"Using secure ports towards simulators"
59             use_simulator_https
60         else
61             #"Using non-secure ports towards simulators"
62             use_simulator_http
63         fi
64
65         start_ric_simulators ricsim_g1 1  OSC_2.1.0
66         start_ric_simulators ricsim_g2 1  STD_1.1.3
67
68         start_mr
69
70         if [ $__httpx == "HTTPS" ]; then
71             #echo "Using secure ports between agent and MR"
72             use_mr_https
73         else
74             #"Using non-secure ports between agent and MR"
75             use_mr_http
76         fi
77
78         start_cr
79
80         if [ $interface == "REST+SDNC" ] || [ $interface == "DMAAP+SDNC" ]; then
81
82             start_sdnc
83
84             if [ $__httpx == "HTTPS" ]; then
85                 # "Using secure ports towards SDNC"
86                 use_sdnc_https
87             else
88                 #"Using non-secure ports towards SDNC"
89                 use_sdnc_http
90             fi
91         fi
92
93         start_consul_cbs
94
95         if [ $interface == "REST+SDNC" ] || [ $interface == "DMAAP+SDNC" ]; then
96             prepare_consul_config      SDNC    ".consul_config.json"
97         else
98             prepare_consul_config      NOSDNC  ".consul_config.json"
99         fi
100
101         consul_config_app                      ".consul_config.json"
102
103         start_control_panel
104
105         start_policy_agent
106
107         set_agent_debug
108
109         if [ $interface == "DMAAP" ] || [ $interface == "DMAAP+SDNC" ]; then
110             use_agent_dmaap
111         else
112             if [ $__httpx == "HTTPS" ]; then
113                 #"Using secure ports towards the agent"
114                 use_agent_rest_https
115             else
116                 #"Using non-secure ports towards the agent"
117                 use_agent_rest_http
118             fi
119         fi
120
121
122         cr_equal received_callbacks 0
123         mr_equal requests_submitted 0
124
125         sim_put_policy_type 201 ricsim_g1_1 1 testdata/OSC/sim_1.json
126         sim_put_policy_type 201 ricsim_g1_1 2 testdata/OSC/sim_2.json
127
128         api_equal json:rics 2 60
129
130         api_equal json:policy_schemas 3 120
131
132         api_equal json:policy_types 3
133
134         api_equal json:policies 0
135
136         api_equal json:policy_ids 0
137
138
139
140
141         echo "############################################"
142         echo "############## Health check ################"
143         echo "############################################"
144
145         api_get_status 200
146
147         echo "############################################"
148         echo "##### Service registry and supervision #####"
149         echo "############################################"
150
151         api_get_services 404 "service1"
152
153         api_put_service 201 "service1" 1000 "$CR_PATH/1"
154
155         api_put_service 200 "service1" 2000 "$CR_PATH/1"
156
157
158         api_put_service 400 "service2" -1 "$CR_PATH/2"
159
160         api_put_service 400 "service2" "wrong" "$CR_PATH/2"
161
162         api_put_service 400 "service2" 100 "/test"
163
164         api_put_service 400 "service2" 100 "test-path"
165
166         api_put_service 201 "service2" 300 "ftp://localhost:80/test"
167
168         api_get_services 200 "service1" "service1" 2000 "$CR_PATH/1"
169
170         api_get_service_ids 200 "service1" "service2"
171
172
173         api_put_service 201 "service3" 5000 "$CR_PATH/3"
174
175
176         api_get_service_ids 200 "service1" "service2" "service3"
177
178
179         api_get_services 200 "service1" "service1" 2000 "$CR_PATH/1"
180
181         api_get_services 200 NOSERVICE "service1" 2000 "$CR_PATH/1" "service2" 300 "ftp://localhost:80/test" "service3" 5000 "$CR_PATH/3"
182
183         api_get_services 200
184
185         deviation "TR2 - Keep alive shall return 200/201 according to doc, only 200 works - test combo $interface and $__httpx"
186         #The below should work, keept here until fixed or other decision made
187         #api_put_services_keepalive 201 "service1"
188         #Using the below until decision
189         api_put_services_keepalive 200 "service1"
190
191         deviation "TR2 - Keep alive shall return 200/201 according to doc, only 200 works - test combo $interface and $__httpx"
192         #The below should work, keept here until fixed or other decision made
193         #api_put_services_keepalive 201 "service3"
194         #Using the below until decision
195         api_put_services_keepalive 200 "service3"
196
197         api_put_services_keepalive 200 "service1"
198
199         api_put_services_keepalive 200 "service3"
200
201         api_put_services_keepalive 404 "service5"
202
203         api_get_service_ids 200 "service1" "service2" "service3"
204
205         api_delete_services 204 "service1"
206
207         api_get_service_ids 200 "service2" "service3"
208
209
210         api_put_service 201 "service1" 50 "$CR_PATH/1"
211
212         api_get_service_ids 200 "service1" "service2" "service3"
213
214
215         api_delete_services 204 "service1"
216         api_delete_services 204 "service3"
217
218         api_equal json:services 1
219
220         api_delete_services 204 "service2"
221
222         api_equal json:services 0
223
224
225         echo "############################################"
226         echo "############## RIC Repository ##############"
227         echo "############################################"
228
229         api_get_rics 200 NOTYPE "ricsim_g1_1:me1_ricsim_g1_1,me2_ricsim_g1_1:1,2:AVAILABLE  ricsim_g2_1:me1_ricsim_g2_1,me2_ricsim_g2_1:EMPTYTYPE:AVAILABLE"
230
231         api_get_rics 200 1 "ricsim_g1_1:me1_ricsim_g1_1,me2_ricsim_g1_1:1,2:AVAILABLE"
232
233         api_get_rics 404 47
234
235         api_get_rics 404 "test"
236
237
238         api_get_ric 200 me1_ricsim_g1_1 ricsim_g1_1
239
240         api_get_ric 200 me2_ricsim_g1_1 ricsim_g1_1
241
242         api_get_ric 200 me1_ricsim_g2_1 ricsim_g2_1
243
244         api_get_ric 200 me2_ricsim_g2_1 ricsim_g2_1
245
246         api_get_ric 404 test
247
248
249         echo "############################################"
250         echo "########### A1 Policy Management ###########"
251         echo "############################################"
252         deviation "TR9 - agent modify the type with type id - test combo $interface and $__httpx"
253         #Behaviour accepted for now
254         api_get_policy_schema 200 1 testdata/OSC/1-agent-modified.json
255         deviation "TR9 - agent modify the type with type id - test combo $interface and $__httpx"
256         #Behaviour accepted for now
257         api_get_policy_schema 200 2 testdata/OSC/2-agent-modified.json
258
259         api_get_policy_schema 404 3
260         deviation "TR9 - agent modify the type with type id - test combo $interface and $__httpx"
261         #Behaviour accepted for now
262         api_get_policy_schemas 200 NORIC testdata/OSC/1-agent-modified.json testdata/OSC/2-agent-modified.json NOFILE
263         deviation "TR9 - agent modify the type with type id - test combo $interface and $__httpx"
264         #Behaviour accepted for now
265         api_get_policy_schemas 200 ricsim_g1_1 testdata/OSC/1-agent-modified.json testdata/OSC/2-agent-modified.json
266
267         api_get_policy_schemas 200 ricsim_g2_1 NOFILE
268
269         api_get_policy_schemas 404 test
270
271
272
273         api_get_policy_types 200 NORIC 1 2 EMPTY
274
275         api_get_policy_types 200 ricsim_g1_1 1 2
276
277         api_get_policy_types 200 ricsim_g2_1 EMPTY
278
279         api_get_policy_types 404 dummy-ric
280
281
282
283         api_put_service 201 "service10" 3600 "$CR_PATH/1"
284
285         deviation "TR10 - agent allows policy creation on unregistered service (orig problem) - test combo $interface and $__httpx"
286         #Kept until decison
287         #api_put_policy 400 "unregistered-service" ricsim_g1_1 1 2000 NOTRANSIENT testdata/OSC/pi1_template.json
288         #Allow 201 for now
289         api_put_policy 201 "unregistered-service" ricsim_g1_1 1 2000 NOTRANSIENT testdata/OSC/pi1_template.json
290
291         api_put_policy 201 "service10" ricsim_g1_1 1 5000 NOTRANSIENT testdata/OSC/pi1_template.json
292         api_put_policy 200 "service10" ricsim_g1_1 1 5000 NOTRANSIENT testdata/OSC/pi1_template.json
293
294         api_put_policy 200 "service10" ricsim_g1_1 1 5000 true testdata/OSC/pi1_template.json
295         api_put_policy 200 "service10" ricsim_g1_1 1 5000 false testdata/OSC/pi1_template.json
296
297         api_put_policy 201 "service10" ricsim_g2_1 NOTYPE 5100 NOTRANSIENT testdata/STD/pi1_template.json
298         api_put_policy 200 "service10" ricsim_g2_1 NOTYPE 5100 NOTRANSIENT testdata/STD/pi1_template.json
299
300         api_put_policy 200 "service10" ricsim_g2_1 NOTYPE 5100 true testdata/STD/pi1_template.json
301         api_put_policy 200 "service10" ricsim_g2_1 NOTYPE 5100 false testdata/STD/pi1_template.json
302
303         VAL='NOT IN EFFECT'
304         api_get_policy_status 200 5000 OSC "$VAL" "false"
305         api_get_policy_status 200 5100 STD "UNDEFINED"
306
307
308         deviation "TR10 - agent allows policy creation on unregistered service (side effect of orig. problem)- test combo $interface and $__httpx"
309         #kept until decision
310         #api_equal json:policies 2
311         #Allow 3 for now
312         api_equal json:policies 3
313
314         deviation "TR10 - agent allows policy creation on unregistered service (side effect of orig. problem)- test combo $interface and $__httpx"
315         #kept until decision
316         #api_equal json:policy_ids 2
317         #Allow 3 for now
318         api_equal json:policy_ids 3
319
320         deviation "TR10 - agent allows policy creation on unregistered service (side effect of orig. problem)- test combo $interface and $__httpx"
321         #kept until decision
322         #api_get_policy_ids 200 NORIC NOSERVICE NOTYPE 5000 5100
323         #Allow policy create with unregistered service for now
324         api_get_policy_ids 200 NORIC NOSERVICE NOTYPE 5000 5100 2000
325
326
327         deviation "TR10 - agent allows policy creation on unregistered service (side effect of orig. problem)- test combo $interface and $__httpx"
328         #kept until decision
329         #api_get_policy_ids 200 ricsim_g1_1 NOSERVICE NOTYPE 5000
330         #Allow policy create with unregistered service for now
331         api_get_policy_ids 200 ricsim_g1_1 NOSERVICE NOTYPE 5000 2000
332
333         api_get_policy_ids 200 ricsim_g2_1 NOSERVICE NOTYPE 5100
334
335
336         api_get_policy_ids 200 NORIC "service10" NOTYPE 5000 5100
337
338         deviation "TR10 - agent allows policy creation on unregistered service (side effect of orig. problem)- test combo $interface and $__httpx"
339         #kept until decision
340         #api_get_policy_ids 200 NORIC NOSERVICE 1 5000
341         #Allow policy create with unregistered service for now
342         api_get_policy_ids 200 NORIC NOSERVICE 1 5000 2000
343
344         api_get_policy_ids 200 NORIC NOSERVICE 2 NOID
345
346         api_get_policy_ids 200 ricsim_g2_1 NOSERVICE 1 NOID
347
348
349         api_get_policy 200 5000 testdata/OSC/pi1_template.json
350
351         api_get_policy 200 5100 testdata/STD/pi1_template.json
352
353
354         api_get_policies 200 ricsim_g1_1 "service10" 1 5000 ricsim_g1_1 "service10" 1 testdata/OSC/pi1_template.json
355
356
357         deviation "TR10 - agent allows policy creation on unregistered service (side effect of orig. problem)- test combo $interface and $__httpx"
358         #kept until decision
359         #api_delete_policy 404 2000
360         #Allow policy create with unregistered service for now
361         api_delete_policy 204 2000
362
363         api_delete_policy 404 1500
364
365         api_delete_policy 204 5000
366
367         api_equal json:policies 1
368
369         api_equal json:policy_ids 1
370
371         api_delete_policy 204 5100
372
373         api_equal json:policies 0
374
375         api_equal json:policy_ids 0
376
377         cr_equal received_callbacks 0
378
379         if [ $interface == "DMAAP" ] || [ $interface == "DMAAP+SDNC" ]; then
380             mr_greater requests_submitted 0
381             VAL=$(mr_read requests_submitted)
382             mr_equal requests_fetched $VAL
383             mr_equal responses_submitted $VAL
384             mr_equal responses_fetched $VAL
385             mr_equal current_requests 0
386             mr_equal current_responses 0
387         else
388             mr_equal requests_submitted 0
389         fi
390
391         if [ $interface == "REST+SDNC" ] || [ $interface == "DMAAP+SDNC" ]; then
392             sim_contains_str ricsim_g1_1 remote_hosts "a1-controller"
393             sim_contains_str ricsim_g2_1 remote_hosts "a1-controller"
394         else
395             sim_contains_str ricsim_g1_1 remote_hosts "policy-agent"
396             sim_contains_str ricsim_g2_1 remote_hosts "policy-agent"
397         fi
398
399         check_policy_agent_logs
400         check_control_panel_logs
401
402         store_logs          "${__httpx}__${interface}"
403
404     done
405
406 done
407
408 #### TEST COMPLETE ####
409
410
411 print_result
412
413 auto_clean_containers