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