3 # ============LICENSE_START===============================================
4 # Copyright (C) 2020-2023 Nordix Foundation. All rights reserved.
5 # Copyright (C) 2023 OpenInfra Foundation Europe. All rights reserved.
6 # ========================================================================
7 # Licensed under the Apache License, Version 2.0 (the "License");
8 # you may not use this file except in compliance with the License.
9 # You may obtain a copy of the License at
11 # http://www.apache.org/licenses/LICENSE-2.0
13 # Unless required by applicable law or agreed to in writing, software
14 # distributed under the License is distributed on an "AS IS" BASIS,
15 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 # See the License for the specific language governing permissions and
17 # limitations under the License.
18 # ============LICENSE_END=================================================
21 TC_ONELINE_DESCR="Testing southbound proxy for SDNC - docker only"
23 #App names to include in the test when running docker, space separated list
24 DOCKER_INCLUDED_IMAGES="RICSIM SDNC HTTPPROXY KUBEPROXY"
25 #App names to include in the test when running kubernetes, space separated list
26 KUBE_INCLUDED_IMAGES=""
27 #Pre-started app (not started by script) to include in the test when running kubernetes, space separated list
28 KUBE_PRESTARTED_IMAGES=" "
30 #Ignore image in DOCKER_INCLUDED_IMAGES, KUBE_INCLUDED_IMAGES if
31 #the image is not configured in the supplied env_file
32 #Used for images not applicable to all supported profile
33 CONDITIONALLY_IGNORED_IMAGES=""
35 #Supported test environment profiles
36 SUPPORTED_PROFILES="ONAP-KOHN ONAP-LONDON ONAP-MONTREAL"
38 SUPPORTED_RUNMODES="DOCKER"
40 . ../common/testcase_common.sh $@
46 sim_generate_policy_uuid
48 #Test a1pms and simulator protocol versions (others are http only)
49 NB_TESTED_PROTOCOLS="HTTP HTTPS"
50 SB_TESTED_PROTOCOLS="HTTP HTTPS"
52 for __nb_httpx in $NB_TESTED_PROTOCOLS ; do
53 for __sb_httpx in $SB_TESTED_PROTOCOLS ; do
55 echo "#####################################################################"
56 echo "#####################################################################"
57 echo "### Testing SDNC using Northbound: $__nb_httpx and Southbound: $__sb_httpx"
58 echo "#####################################################################"
59 echo "#####################################################################"
61 if [ $__sb_httpx == "HTTPS" ]; then
62 deviation "Southbound https proxy is currently not supported"
67 # Clean container and start all needed containers #
74 start_ric_simulators ricsim_g1 1 OSC_2.1.0
75 start_ric_simulators ricsim_g2 1 STD_1.1.3
76 start_ric_simulators ricsim_g3 1 STD_2.0.0
79 controller_api_wait_for_status_ok 200 ricsim_g1_1
81 if [ $__nb_httpx == "HTTPS" ]; then
82 # "Using secure ports towards SDNC"
83 if [[ "$SDNC_FEATURE_LEVEL" == *"NO_NB_HTTPS"* ]]; then
84 deviation "SDNC does not support NB https"
90 #"Using non-secure ports towards SDNC"
94 if [ $__sb_httpx == "HTTPS" ]; then
95 # "Using secure ports towards SDNC"
99 #"Using non-secure ports towards SDNC"
104 echo -e $BOLD"Configure proxy in SDNC"$EBOLD
107 if [ $__sb_httpx == "HTTPS" ]; then
109 sed -i 's/a1Mediator.proxy.url=/a1Mediator.proxy.url=https:\/\/httpproxy:8433/g' /opt/onap/ccsdk/data/properties/a1-adapter-api-dg.properties
110 " | docker exec -i a1controller bash
113 sed -i 's/a1Mediator.proxy.url=/a1Mediator.proxy.url=http:\/\/httpproxy:8080/g' /opt/onap/ccsdk/data/properties/a1-adapter-api-dg.properties
114 " | docker exec -i a1controller bash
117 # Restart SDNC to use the updated config
123 controller_api_get_A1_policy_type 404 OSC ricsim_g1_1 1
125 sim_put_policy_type 201 ricsim_g1_1 1 testdata/OSC/sim_1.json
128 controller_api_get_A1_policy_ids 200 OSC ricsim_g1_1 1
129 controller_api_get_A1_policy_ids 200 STD ricsim_g2_1
131 controller_api_get_A1_policy_type 200 OSC ricsim_g1_1 1
132 controller_api_get_A1_policy_type 200 OSC ricsim_g1_1 1 testdata/OSC/sim_1.json
133 controller_api_get_A1_policy_type 404 OSC ricsim_g1_1 99
135 controller_api_put_A1_policy 202 OSC ricsim_g1_1 1 4000 testdata/OSC/pi1_template.json
136 controller_api_put_A1_policy 404 OSC ricsim_g1_1 5 1001 testdata/OSC/pi1_template.json
138 controller_api_put_A1_policy 201 STD ricsim_g2_1 5000 testdata/STD/pi1_template.json
140 controller_api_get_A1_policy_ids 200 OSC ricsim_g1_1 1 4000
141 controller_api_get_A1_policy_ids 200 STD ricsim_g2_1 5000
143 controller_api_get_A1_policy_status 200 OSC ricsim_g1_1 1 4000
144 controller_api_get_A1_policy_status 200 STD ricsim_g2_1 5000
146 if [[ $TEST_ENV_PROFILE =~ ^ORAN-[A-H]$ || $TEST_ENV_PROFILE =~ ^ONAP-[A-L]$ ]]; then
153 controller_api_get_A1_policy_status 200 OSC ricsim_g1_1 1 4000 "$VAL" "false"
154 controller_api_get_A1_policy_status 200 STD ricsim_g2_1 5000 "UNDEFINED"
157 deviation "SDNC does not return original response code from sim"
158 controller_api_delete_A1_policy 202 OSC ricsim_g1_1 1 4000
160 deviation "SDNC does not return original response code from sim"
161 controller_api_delete_A1_policy 204 STD ricsim_g2_1 5000
163 sim_contains_str ricsim_g1_1 remote_hosts httpproxy.nonrtric-docker-net
164 sim_contains_str ricsim_g2_1 remote_hosts httpproxy.nonrtric-docker-net
168 store_logs "NB_"$__nb_httpx"_SB_"$__sb_httpx
174 #### TEST COMPLETE ####
178 auto_clean_environment