Corrected rApp Catalogue image tag for d release test
[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 walkthrough using agent REST/DMAAP and with/without SDNC A1 Controller"
22
23 #App names to include in the test when running docker, space separated list
24 DOCKER_INCLUDED_IMAGES="CBS CONSUL CP CR MR PA RICSIM SDNC NGW"
25
26 #App names to include in the test when running kubernetes, space separated list
27 KUBE_INCLUDED_IMAGES="CP CR MR PA RICSIM SDNC KUBEPROXY NGW"
28 #Prestarted app (not started by script) to include in the test when running kubernetes, space separated list
29 KUBE_PRESTARTED_IMAGES=""
30
31 #Ignore image in DOCKER_INCLUDED_IMAGES, KUBE_INCLUDED_IMAGES if
32 #the image is not configured in the supplied env_file
33 #Used for images not applicable to all supported profile
34 CONDITIONALLY_IGNORED_IMAGES="NGW"
35
36 #Supported test environment profiles
37 SUPPORTED_PROFILES="ONAP-GUILIN ONAP-HONOLULU ONAP-ISTANBUL ORAN-CHERRY ORAN-D-RELEASE"
38 #Supported run modes
39 SUPPORTED_RUNMODES="DOCKER KUBE"
40
41 . ../common/testcase_common.sh  $@
42 . ../common/agent_api_functions.sh
43 . ../common/consul_cbs_functions.sh
44 . ../common/control_panel_api_functions.sh
45 . ../common/controller_api_functions.sh
46 . ../common/cr_api_functions.sh
47 . ../common/mr_api_functions.sh
48 . ../common/ricsimulator_api_functions.sh
49 . ../common/kube_proxy_api_functions.sh
50 . ../common/gateway_api_functions.sh
51
52 setup_testenvironment
53
54 #### TEST BEGIN ####
55
56 generate_policy_uuid
57
58 # Tested variants of REST/DMAAP/SDNC config
59 TESTED_VARIANTS="REST   DMAAP   REST+SDNC   DMAAP+SDNC"
60
61 #Test agent and simulator protocol versions (others are http only)
62 TESTED_PROTOCOLS="HTTP HTTPS"
63
64 for __httpx in $TESTED_PROTOCOLS ; do
65     for interface in $TESTED_VARIANTS ; do
66
67         echo "#####################################################################"
68         echo "#####################################################################"
69         echo "### Testing agent: $interface using $__httpx"
70         echo "#####################################################################"
71         echo "#####################################################################"
72
73         # Clean container and start all needed containers #
74         clean_environment
75
76         if [ $RUNMODE == "KUBE" ]; then
77             start_kube_proxy
78         fi
79
80         if [ $__httpx == "HTTPS" ]; then
81             use_cr_https
82             use_agent_rest_https
83         else
84             use_agent_rest_http
85             use_cr_http
86         fi
87
88         start_policy_agent NORPOXY $SIM_GROUP/$POLICY_AGENT_COMPOSE_DIR/$POLICY_AGENT_CONFIG_FILE
89
90         set_agent_debug
91
92         # Create service to be able to receive events when rics becomes available
93         # Must use rest towards the agent since dmaap is not configured yet
94         api_put_service 201 "ric-registration" 0 "$CR_SERVICE_PATH/ric-registration"
95
96
97         if [ $__httpx == "HTTPS" ]; then
98             use_simulator_https
99             use_mr_https
100             if [[ $interface = *"SDNC"* ]]; then
101                 use_sdnc_https
102             fi
103             if [[ $interface = *"DMAAP"* ]]; then
104                 use_agent_dmaap_https
105             else
106                 use_agent_rest_https
107             fi
108         else
109             use_simulator_http
110             use_mr_http
111             if [[ $interface = *"SDNC"* ]]; then
112                 use_sdnc_http
113             fi
114             if [[ $interface = *"DMAAP"* ]]; then
115                 use_agent_dmaap_http
116             else
117                 use_agent_rest_http
118             fi
119         fi
120
121         start_ric_simulators ricsim_g1 1  OSC_2.1.0
122         start_ric_simulators ricsim_g2 1  STD_1.1.3
123         if [ "$PMS_VERSION" == "V2" ]; then
124             start_ric_simulators ricsim_g3 1  STD_2.0.0
125         fi
126
127         start_mr
128
129         start_cr
130
131         start_control_panel $SIM_GROUP/$CONTROL_PANEL_COMPOSE_DIR/$CONTROL_PANEL_CONFIG_FILE
132
133         if [ ! -z "$NRT_GATEWAY_APP_NAME" ]; then
134             start_gateway $SIM_GROUP/$NRT_GATEWAY_COMPOSE_DIR/$NRT_GATEWAY_CONFIG_FILE
135         fi
136
137         if [ $RUNMODE == "DOCKER" ]; then
138             start_consul_cbs
139         fi
140
141         if [[ $interface = *"SDNC"* ]]; then
142             start_sdnc
143             prepare_consul_config      SDNC    ".consul_config.json"
144         else
145             prepare_consul_config      NOSDNC  ".consul_config.json"
146         fi
147
148         if [ $RUNMODE == "KUBE" ]; then
149             agent_load_config                       ".consul_config.json"
150         else
151             consul_config_app                      ".consul_config.json"
152         fi
153
154         sim_put_policy_type 201 ricsim_g1_1 1 testdata/OSC/sim_1.json
155         sim_put_policy_type 201 ricsim_g1_1 2 testdata/OSC/sim_2.json
156
157         if [ "$PMS_VERSION" == "V2" ]; then
158             sim_put_policy_type 201 ricsim_g3_1 STD_QOS_0_2_0 testdata/STD2/sim_qos.json
159             sim_put_policy_type 201 ricsim_g3_1 STD_QOS2_0.1.0 testdata/STD2/sim_qos2.json
160
161             api_equal json:rics 3 300
162
163             api_equal json:policy-types 5 120
164
165             api_equal json:policies 0
166
167             api_equal json:policy-instances 0
168         else
169             api_equal json:rics 2 300
170
171             api_equal json:policy_schemas 3 120
172
173             api_equal json:policy_types 3
174
175             api_equal json:policies 0
176
177             api_equal json:policy_ids 0
178         fi
179
180         if [ "$PMS_VERSION" == "V2" ]; then
181             cr_equal received_callbacks 3 120
182             cr_api_check_all_sync_events 200 ric-registration ricsim_g1_1 ricsim_g2_1 ricsim_g3_1
183         fi
184         mr_equal requests_submitted 0
185
186
187         echo "############################################"
188         echo "############## Health check ################"
189         echo "############################################"
190
191         api_get_status 200
192
193         echo "############################################"
194         echo "##### Service registry and supervision #####"
195         echo "############################################"
196
197         api_get_services 404 "service1"
198
199         api_put_service 201 "service1" 1000 "$CR_SERVICE_PATH/1"
200
201         api_put_service 200 "service1" 2000 "$CR_SERVICE_PATH/1"
202
203
204         api_put_service 400 "service2" -1 "$CR_SERVICE_PATH/2"
205
206         api_put_service 400 "service2" "wrong" "$CR_SERVICE_PATH/2"
207
208         api_put_service 400 "service2" 100 "/test"
209
210         api_put_service 400 "service2" 100 "test-path"
211
212         api_put_service 201 "service2" 300 "ftp://localhost:80/test"
213
214         api_get_services 200 "service1" "service1" 2000 "$CR_SERVICE_PATH/1"
215
216         api_get_service_ids 200 "service1" "service2" "ric-registration"
217
218
219         api_put_service 201 "service3" 5000 "$CR_SERVICE_PATH/3"
220
221
222         api_get_service_ids 200 "service1" "service2" "service3" "ric-registration"
223
224
225         api_get_services 200 "service1" "service1" 2000 "$CR_SERVICE_PATH/1"
226
227         api_get_services 200 NOSERVICE "service1" 2000 "$CR_SERVICE_PATH/1" "service2" 300 "ftp://localhost:80/test" "service3" 5000 "$CR_SERVICE_PATH/3"  "ric-registration" 0 "$CR_SERVICE_PATH/ric-registration"
228
229         api_get_services 200
230
231         deviation "TR2 - Keep alive shall return 200/201 according to doc, only 200 works - test combo $interface and $__httpx"
232         #The below should work, keept here until fixed or other decision made
233         #api_put_services_keepalive 201 "service1"
234         #Using the below until decision
235         api_put_services_keepalive 200 "service1"
236
237         deviation "TR2 - Keep alive shall return 200/201 according to doc, only 200 works - test combo $interface and $__httpx"
238         #The below should work, keept here until fixed or other decision made
239         #api_put_services_keepalive 201 "service3"
240         #Using the below until decision
241         api_put_services_keepalive 200 "service3"
242
243         api_put_services_keepalive 200 "service1"
244
245         api_put_services_keepalive 200 "service3"
246
247         api_put_services_keepalive 404 "service5"
248
249         api_get_service_ids 200 "service1" "service2" "service3"  "ric-registration"
250
251         api_delete_services 204 "service1"
252
253         api_get_service_ids 200 "service2" "service3" "ric-registration"
254
255
256         api_put_service 201 "service1" 50 "$CR_SERVICE_PATH/1"
257
258         api_get_service_ids 200 "service1" "service2" "service3"  "ric-registration"
259
260
261         api_delete_services 204 "service1"
262         api_delete_services 204 "service3"
263
264         api_equal json:services 2
265
266         api_delete_services 204 "service2"
267
268         api_equal json:services 1
269
270
271         echo "############################################"
272         echo "############## RIC Repository ##############"
273         echo "############################################"
274
275         if [ "$PMS_VERSION" == "V2" ]; then
276             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 ricsim_g3_1:me1_ricsim_g3_1,me2_ricsim_g3_1:STD_QOS_0_2_0,STD_QOS2_0.1.0:AVAILABLE"
277         else
278             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"
279         fi
280         api_get_rics 200 1 "ricsim_g1_1:me1_ricsim_g1_1,me2_ricsim_g1_1:1,2:AVAILABLE"
281
282         api_get_rics 404 47
283
284         api_get_rics 404 "test"
285
286         if [ "$PMS_VERSION" == "V2" ]; then
287             api_get_ric 200 me1_ricsim_g1_1 NORIC "ricsim_g1_1:me1_ricsim_g1_1,me2_ricsim_g1_1:1,2:AVAILABLE"
288
289             api_get_ric 200 me2_ricsim_g1_1 NORIC "ricsim_g1_1:me1_ricsim_g1_1,me2_ricsim_g1_1:1,2:AVAILABLE"
290
291             api_get_ric 200 me1_ricsim_g2_1 NORIC "ricsim_g2_1:me1_ricsim_g2_1,me2_ricsim_g2_1:EMPTYTYPE:AVAILABLE"
292
293             api_get_ric 200 me2_ricsim_g2_1 NORIC "ricsim_g2_1:me1_ricsim_g2_1,me2_ricsim_g2_1:EMPTYTYPE:AVAILABLE"
294
295             api_get_ric 200 me1_ricsim_g3_1 NORIC "ricsim_g3_1:me1_ricsim_g3_1,me2_ricsim_g3_1:STD_QOS_0_2_0,STD_QOS2_0.1.0:AVAILABLE"
296
297             api_get_ric 200 me2_ricsim_g3_1 NORIC "ricsim_g3_1:me1_ricsim_g3_1,me2_ricsim_g3_1:STD_QOS_0_2_0,STD_QOS2_0.1.0:AVAILABLE"
298
299             api_get_ric 200 NOME      ricsim_g1_1 "ricsim_g1_1:me1_ricsim_g1_1,me2_ricsim_g1_1:1,2:AVAILABLE"
300
301             api_get_ric 200 NOME      ricsim_g2_1 "ricsim_g2_1:me1_ricsim_g2_1,me2_ricsim_g2_1:EMPTYTYPE:AVAILABLE"
302
303             api_get_ric 200 NOME      ricsim_g3_1 "ricsim_g3_1:me1_ricsim_g3_1,me2_ricsim_g3_1:STD_QOS_0_2_0,STD_QOS2_0.1.0:AVAILABLE"
304
305             api_get_ric 404 NOME test1
306
307             api_get_ric 404 test NORIC
308
309             api_get_ric 400 me1_ricsim_g1_1 ricsim_g1_1
310
311             api_get_ric 400 me1_ricsim_g1_1 TESTRIC
312
313             api_get_ric 400 TESTME ricsim_g1_1
314
315         else
316             api_get_ric 200 me1_ricsim_g1_1 ricsim_g1_1
317
318             api_get_ric 200 me2_ricsim_g1_1 ricsim_g1_1
319
320             api_get_ric 200 me1_ricsim_g2_1 ricsim_g2_1
321
322             api_get_ric 200 me2_ricsim_g2_1 ricsim_g2_1
323
324             api_get_ric 404 test
325         fi
326
327         echo "############################################"
328         echo "########### A1 Policy Management ###########"
329         echo "############################################"
330
331         if [ "$PMS_VERSION" == "V2" ]; then
332             deviation "TR9 - agent modify the type with type id - test combo $interface and $__httpx"
333             #Behaviour accepted for now
334             api_get_policy_type 200 1 testdata/OSC/1-agent-modified.json
335             deviation "TR9 - agent modify the type with type id - test combo $interface and $__httpx"
336             #Behaviour accepted for now
337             api_get_policy_type 200 2 testdata/OSC/2-agent-modified.json
338             deviation "TR9 - agent modify the type with type id - test combo $interface and $__httpx"
339             #Behaviour accepted for now
340             api_get_policy_type 200 STD_QOS_0_2_0 testdata/STD2/qos-agent-modified.json
341             deviation "TR9 - agent modify the type with type id - test combo $interface and $__httpx"
342             #Behaviour accepted for now
343             api_get_policy_type 200 STD_QOS2_0.1.0 testdata/STD2/qos2-agent-modified.json
344
345             api_get_policy_type 404 3
346         else
347             deviation "TR9 - agent modify the type with type id - test combo $interface and $__httpx"
348             #Behaviour accepted for now
349             api_get_policy_schema 200 1 testdata/OSC/1-agent-modified.json
350             deviation "TR9 - agent modify the type with type id - test combo $interface and $__httpx"
351             #Behaviour accepted for now
352             api_get_policy_schema 200 2 testdata/OSC/2-agent-modified.json
353
354             api_get_policy_schema 404 3
355         fi
356
357         if [ "$PMS_VERSION" == "V2" ]; then
358             api_get_policy_schemas 404
359         else
360             deviation "TR9 - agent modify the type with type id - test combo $interface and $__httpx"
361             #Behaviour accepted for now
362             api_get_policy_schemas 200 NORIC testdata/OSC/1-agent-modified.json testdata/OSC/2-agent-modified.json NOFILE
363             deviation "TR9 - agent modify the type with type id - test combo $interface and $__httpx"
364             #Behaviour accepted for now
365             api_get_policy_schemas 200 ricsim_g1_1 testdata/OSC/1-agent-modified.json testdata/OSC/2-agent-modified.json
366
367             api_get_policy_schemas 200 ricsim_g2_1 NOFILE
368
369             api_get_policy_schemas 404 test
370         fi
371
372
373         if [ "$PMS_VERSION" == "V2" ]; then
374             api_get_policy_types 200 NORIC 1 2 EMPTY STD_QOS_0_2_0 STD_QOS2_0.1.0
375         else
376             api_get_policy_types 200 NORIC 1 2 EMPTY
377         fi
378
379         api_get_policy_types 200 ricsim_g1_1 1 2
380
381         api_get_policy_types 200 ricsim_g2_1 EMPTY
382
383         if [ "$PMS_VERSION" == "V2" ]; then
384             api_get_policy_types 200 ricsim_g3_1 STD_QOS_0_2_0 STD_QOS2_0.1.0
385         fi
386
387         api_get_policy_types 404 dummy-ric
388
389
390
391         api_put_service 201 "service10" 3600 "$CR_SERVICE_PATH/1"
392
393         if [ "$PMS_VERSION" == "V2" ]; then
394             notificationurl=$CR_SERVICE_PATH"/test"
395         else
396             notificationurl=""
397         fi
398         deviation "TR10 - agent allows policy creation on unregistered service (orig problem) - test combo $interface and $__httpx"
399         #Kept until decison
400         #api_put_policy 400 "unregistered-service" ricsim_g1_1 1 2000 NOTRANSIENT testdata/OSC/pi1_template.json
401         #Allow 201 for now
402         api_put_policy 201 "unregistered-service" ricsim_g1_1 1 2000 NOTRANSIENT $notificationurl testdata/OSC/pi1_template.json
403
404         api_put_policy 201 "service10" ricsim_g1_1 1 5000 NOTRANSIENT $notificationurl testdata/OSC/pi1_template.json
405         api_put_policy 200 "service10" ricsim_g1_1 1 5000 NOTRANSIENT $notificationurl testdata/OSC/pi1_template.json
406
407         api_put_policy 200 "service10" ricsim_g1_1 1 5000 true $notificationurl testdata/OSC/pi1_template.json
408         api_put_policy 200 "service10" ricsim_g1_1 1 5000 false $notificationurl testdata/OSC/pi1_template.json
409
410         api_put_policy 201 "service10" ricsim_g2_1 NOTYPE 5100 NOTRANSIENT $notificationurl testdata/STD/pi1_template.json
411         api_put_policy 200 "service10" ricsim_g2_1 NOTYPE 5100 NOTRANSIENT $notificationurl testdata/STD/pi1_template.json
412
413         api_put_policy 200 "service10" ricsim_g2_1 NOTYPE 5100 true $notificationurl testdata/STD/pi1_template.json
414         api_put_policy 200 "service10" ricsim_g2_1 NOTYPE 5100 false $notificationurl testdata/STD/pi1_template.json
415
416         if [ "$PMS_VERSION" == "V2" ]; then
417             api_put_policy 201 "service10" ricsim_g3_1 STD_QOS2_0.1.0 5200 NOTRANSIENT $notificationurl testdata/STD2/pi_qos2_template.json
418             api_put_policy 200 "service10" ricsim_g3_1 STD_QOS2_0.1.0 5200 NOTRANSIENT $notificationurl testdata/STD2/pi_qos2_template.json
419
420             api_put_policy 200 "service10" ricsim_g3_1 STD_QOS2_0.1.0 5200 true $notificationurl testdata/STD2/pi_qos2_template.json
421             api_put_policy 200 "service10" ricsim_g3_1 STD_QOS2_0.1.0 5200 false $notificationurl testdata/STD2/pi_qos2_template.json
422         fi
423
424         VAL='NOT IN EFFECT'
425         api_get_policy_status 200 5000 OSC "$VAL" "false"
426         api_get_policy_status 200 5100 STD "UNDEFINED"
427         if [ "$PMS_VERSION" == "V2" ]; then
428             api_get_policy_status 200 5200 STD2 EMPTY EMPTY
429         fi
430
431
432         deviation "TR10 - agent allows policy creation on unregistered service (side effect of orig. problem)- test combo $interface and $__httpx"
433         #kept until decision
434         #api_equal json:policies 2
435         #Allow 3 for now
436         if [ "$PMS_VERSION" == "V2" ]; then
437             api_equal json:policies 4
438         else
439             api_equal json:policies 3
440         fi
441
442         deviation "TR10 - agent allows policy creation on unregistered service (side effect of orig. problem)- test combo $interface and $__httpx"
443         #kept until decision
444         #api_equal json:policy_ids 2
445         #Allow 3 for now
446         if [ "$PMS_VERSION" == "V2" ]; then
447             api_equal json:policy-instances 4
448         else
449             api_equal json:policy_ids 3
450         fi
451
452         deviation "TR10 - agent allows policy creation on unregistered service (side effect of orig. problem)- test combo $interface and $__httpx"
453         #kept until decision
454         #api_get_policy_ids 200 NORIC NOSERVICE NOTYPE 5000 5100
455         #Allow policy create with unregistered service for now
456         if [ "$PMS_VERSION" == "V2" ]; then
457             api_get_policy_ids 200 NORIC NOSERVICE NOTYPE 5000 5100 2000 5200
458         else
459             api_get_policy_ids 200 NORIC NOSERVICE NOTYPE 5000 5100 2000
460         fi
461
462         deviation "TR10 - agent allows policy creation on unregistered service (side effect of orig. problem)- test combo $interface and $__httpx"
463         #kept until decision
464         #api_get_policy_ids 200 ricsim_g1_1 NOSERVICE NOTYPE 5000
465         #Allow policy create with unregistered service for now
466         if [ "$PMS_VERSION" == "V2" ]; then
467             api_get_policy_ids 200 ricsim_g1_1 NOSERVICE NOTYPE 5000 2000
468
469             api_get_policy_ids 200 ricsim_g2_1 NOSERVICE NOTYPE 5100
470
471             api_get_policy_ids 200 ricsim_g3_1 NOSERVICE NOTYPE 5200
472
473             api_get_policy_ids 200 NORIC "service10" NOTYPE 5000 5100 5200
474         else
475             api_get_policy_ids 200 ricsim_g1_1 NOSERVICE NOTYPE 5000 2000
476
477             api_get_policy_ids 200 ricsim_g2_1 NOSERVICE NOTYPE 5100
478
479
480             api_get_policy_ids 200 NORIC "service10" NOTYPE 5000 5100
481         fi
482
483         deviation "TR10 - agent allows policy creation on unregistered service (side effect of orig. problem)- test combo $interface and $__httpx"
484         #kept until decision
485         #api_get_policy_ids 200 NORIC NOSERVICE 1 5000
486         #Allow policy create with unregistered service for now
487
488         api_get_policy_ids 200 NORIC NOSERVICE 1 5000 2000
489
490         api_get_policy_ids 200 NORIC NOSERVICE 2 NOID
491
492         if [ "$PMS_VERSION" == "V2" ]; then
493             api_get_policy_ids 200 NORIC NOSERVICE STD_QOS2_0.1.0 5200
494         fi
495
496         api_get_policy_ids 200 ricsim_g2_1 NOSERVICE 1 NOID
497
498         if [ "$PMS_VERSION" == "V2" ]; then
499             api_get_policy 200 5000 testdata/OSC/pi1_template.json "service10" ricsim_g1_1 1 false $notificationurl
500
501             api_get_policy 200 5100 testdata/STD/pi1_template.json "service10" ricsim_g2_1 NOTYPE false $notificationurl
502
503             api_get_policy 200 5200 testdata/STD2/pi_qos2_template.json "service10" ricsim_g3_1 STD_QOS2_0.1.0 false $notificationurl
504
505             api_get_policies 200 ricsim_g1_1 "service10" 1 5000 ricsim_g1_1 "service10" 1 false $notificationurl testdata/OSC/pi1_template.json
506         else
507             api_get_policy 200 5000 testdata/OSC/pi1_template.json
508
509             api_get_policy 200 5100 testdata/STD/pi1_template.json
510
511             api_get_policies 200 ricsim_g1_1 "service10" 1 5000 ricsim_g1_1 "service10" 1 testdata/OSC/pi1_template.json
512         fi
513
514         deviation "TR10 - agent allows policy creation on unregistered service (side effect of orig. problem)- test combo $interface and $__httpx"
515         #kept until decision
516         #api_delete_policy 404 2000
517         #Allow policy create with unregistered service for now
518         api_delete_policy 204 2000
519
520         api_delete_policy 404 1500
521
522         api_delete_policy 204 5000
523
524         if [ "$PMS_VERSION" == "V2" ]; then
525
526             api_delete_policy 204 5200
527         fi
528
529         api_equal json:policies 1
530
531
532         if [ "$PMS_VERSION" == "V2" ]; then
533             api_equal json:policy-instances 1
534         else
535             api_equal json:policy_ids 1
536         fi
537
538         api_delete_policy 204 5100
539
540         api_equal json:policies 0
541
542         if [ "$PMS_VERSION" == "V2" ]; then
543             api_equal json:policy-instances 0
544         else
545             api_equal json:policy_ids 0
546         fi
547
548         if [ "$PMS_VERSION" == "V2" ]; then
549             cr_equal received_callbacks 3
550         fi
551
552         if [[ $interface = *"DMAAP"* ]]; then
553             mr_greater requests_submitted 0
554             VAL=$(mr_read requests_submitted)
555             mr_equal requests_fetched $VAL
556             mr_equal responses_submitted $VAL
557             mr_equal responses_fetched $VAL
558             mr_equal current_requests 0
559             mr_equal current_responses 0
560         else
561             mr_equal requests_submitted 0
562         fi
563
564         if [[ $interface = *"SDNC"* ]]; then
565             sim_contains_str ricsim_g1_1 remote_hosts $SDNC_APP_NAME
566             sim_contains_str ricsim_g2_1 remote_hosts $SDNC_APP_NAME
567             if [ "$PMS_VERSION" == "V2" ]; then
568                 sim_contains_str ricsim_g3_1 remote_hosts $SDNC_APP_NAME
569             fi
570         else
571             sim_contains_str ricsim_g1_1 remote_hosts $POLICY_AGENT_APP_NAME
572             sim_contains_str ricsim_g2_1 remote_hosts $POLICY_AGENT_APP_NAME
573             if [ "$PMS_VERSION" == "V2" ]; then
574                 sim_contains_str ricsim_g3_1 remote_hosts $POLICY_AGENT_APP_NAME
575             fi
576         fi
577
578         check_policy_agent_logs
579
580         if [[ $interface = *"SDNC"* ]]; then
581             check_sdnc_logs
582         fi
583
584         store_logs          "${__httpx}__${interface}"
585
586     done
587
588 done
589
590 #### TEST COMPLETE ####
591
592
593 print_result
594
595 auto_clean_environment