blob: 3e07eea5c8d1abaa85dad82afa3c64010d39ec88 [file] [log] [blame]
BjornMagnussonXA83a750f2021-09-21 20:39:58 +02001#!/usr/bin/env bash
2
3# ============LICENSE_START===============================================
BjornMagnussonXA7d7cb5f2023-04-11 10:32:56 +02004# Copyright (C) 2020-2023 Nordix Foundation. All rights reserved.
BjornMagnussonXA83a750f2021-09-21 20:39:58 +02005# ========================================================================
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
20TC_ONELINE_DESCR="Testing southbound proxy for SDNC - docker only"
21
22#App names to include in the test when running docker, space separated list
BjornMagnussonXA663566c2021-11-08 10:25:07 +010023DOCKER_INCLUDED_IMAGES="RICSIM SDNC HTTPPROXY KUBEPROXY"
BjornMagnussonXA83a750f2021-09-21 20:39:58 +020024#App names to include in the test when running kubernetes, space separated list
25KUBE_INCLUDED_IMAGES=""
BjornMagnussonXAd54225b2023-04-19 14:03:49 +020026#Pre-started app (not started by script) to include in the test when running kubernetes, space separated list
BjornMagnussonXA83a750f2021-09-21 20:39:58 +020027KUBE_PRESTARTED_IMAGES=" "
28
BjornMagnussonXA8fbb2262022-01-24 15:20:15 +010029#Ignore image in DOCKER_INCLUDED_IMAGES, KUBE_INCLUDED_IMAGES if
30#the image is not configured in the supplied env_file
31#Used for images not applicable to all supported profile
32CONDITIONALLY_IGNORED_IMAGES=""
33
BjornMagnussonXA83a750f2021-09-21 20:39:58 +020034#Supported test environment profiles
BjornMagnussonXAf83c3622023-02-28 10:05:51 +010035SUPPORTED_PROFILES="ONAP-JAKARTA ONAP-KOHN ONAP-LONDON "
BjornMagnussonXA83a750f2021-09-21 20:39:58 +020036#Supported run modes
37SUPPORTED_RUNMODES="DOCKER"
38
BjornMagnussonXA79e37002021-11-22 13:36:04 +010039. ../common/testcase_common.sh $@
BjornMagnussonXA83a750f2021-09-21 20:39:58 +020040
41setup_testenvironment
42
43#### TEST BEGIN ####
44
BjornMagnussonXA7d7cb5f2023-04-11 10:32:56 +020045sim_generate_policy_uuid
BjornMagnussonXA83a750f2021-09-21 20:39:58 +020046
BjornMagnussonXAd2aeca82022-03-07 11:04:55 +010047#Test a1pms and simulator protocol versions (others are http only)
BjornMagnussonXA83a750f2021-09-21 20:39:58 +020048NB_TESTED_PROTOCOLS="HTTP HTTPS"
49SB_TESTED_PROTOCOLS="HTTP HTTPS"
50
51for __nb_httpx in $NB_TESTED_PROTOCOLS ; do
52 for __sb_httpx in $SB_TESTED_PROTOCOLS ; do
53
54 echo "#####################################################################"
55 echo "#####################################################################"
56 echo "### Testing SDNC using Northbound: $__nb_httpx and Southbound: $__sb_httpx"
57 echo "#####################################################################"
58 echo "#####################################################################"
59
60 if [ $__sb_httpx == "HTTPS" ]; then
61 deviation "Southbound https proxy is currently not supported"
62 break
63 fi
64
65
66 # Clean container and start all needed containers #
67 clean_environment
68
BjornMagnussonXA663566c2021-11-08 10:25:07 +010069 start_kube_proxy
70
BjornMagnussonXA83a750f2021-09-21 20:39:58 +020071 start_http_proxy
72
73 start_ric_simulators ricsim_g1 1 OSC_2.1.0
74 start_ric_simulators ricsim_g2 1 STD_1.1.3
BjornMagnussonXAf83c3622023-02-28 10:05:51 +010075 start_ric_simulators ricsim_g3 1 STD_2.0.0
BjornMagnussonXA83a750f2021-09-21 20:39:58 +020076
77 start_sdnc
BjornMagnussonXA7d7cb5f2023-04-11 10:32:56 +020078 controller_api_wait_for_status_ok 200 ricsim_g1_1
BjornMagnussonXA83a750f2021-09-21 20:39:58 +020079
80 if [ $__nb_httpx == "HTTPS" ]; then
81 # "Using secure ports towards SDNC"
BjornMagnussonXA7d7cb5f2023-04-11 10:32:56 +020082 if [[ "$SDNC_FEATURE_LEVEL" == *"NO_NB_HTTPS"* ]]; then
83 deviation "SDNC does not support NB https"
84 use_sdnc_http
85 else
86 use_sdnc_https
87 fi
BjornMagnussonXA83a750f2021-09-21 20:39:58 +020088 else
89 #"Using non-secure ports towards SDNC"
90 use_sdnc_http
91 fi
92
93 if [ $__sb_httpx == "HTTPS" ]; then
94 # "Using secure ports towards SDNC"
95 use_simulator_https
96 use_http_proxy_https
97 else
98 #"Using non-secure ports towards SDNC"
99 use_simulator_http
100 use_http_proxy_http
101 fi
102
103 echo -e $BOLD"Configure proxy in SDNC"$EBOLD
104 echo ""
105
106 if [ $__sb_httpx == "HTTPS" ]; then
107 echo "
108 sed -i 's/a1Mediator.proxy.url=/a1Mediator.proxy.url=https:\/\/httpproxy:8433/g' /opt/onap/ccsdk/data/properties/a1-adapter-api-dg.properties
109 " | docker exec -i a1controller bash
110 else
111 echo "
112 sed -i 's/a1Mediator.proxy.url=/a1Mediator.proxy.url=http:\/\/httpproxy:8080/g' /opt/onap/ccsdk/data/properties/a1-adapter-api-dg.properties
113 " | docker exec -i a1controller bash
114 fi
115
116 # Restart SDNC to use the updated config
117 stop_sdnc
118 start_stopped_sdnc
119
120 # API tests
121
122 controller_api_get_A1_policy_type 404 OSC ricsim_g1_1 1
123
124 sim_put_policy_type 201 ricsim_g1_1 1 testdata/OSC/sim_1.json
125
126
127 controller_api_get_A1_policy_ids 200 OSC ricsim_g1_1 1
128 controller_api_get_A1_policy_ids 200 STD ricsim_g2_1
129
130 controller_api_get_A1_policy_type 200 OSC ricsim_g1_1 1
131 controller_api_get_A1_policy_type 200 OSC ricsim_g1_1 1 testdata/OSC/sim_1.json
132 controller_api_get_A1_policy_type 404 OSC ricsim_g1_1 99
133
134 controller_api_put_A1_policy 202 OSC ricsim_g1_1 1 4000 testdata/OSC/pi1_template.json
135 controller_api_put_A1_policy 404 OSC ricsim_g1_1 5 1001 testdata/OSC/pi1_template.json
136
137 controller_api_put_A1_policy 201 STD ricsim_g2_1 5000 testdata/STD/pi1_template.json
138
139 controller_api_get_A1_policy_ids 200 OSC ricsim_g1_1 1 4000
140 controller_api_get_A1_policy_ids 200 STD ricsim_g2_1 5000
141
142 controller_api_get_A1_policy_status 200 OSC ricsim_g1_1 1 4000
143 controller_api_get_A1_policy_status 200 STD ricsim_g2_1 5000
144
145 VAL='NOT IN EFFECT'
146 controller_api_get_A1_policy_status 200 OSC ricsim_g1_1 1 4000 "$VAL" "false"
147 controller_api_get_A1_policy_status 200 STD ricsim_g2_1 5000 "UNDEFINED"
148
149
150 deviation "SDNC does not return original response code from sim"
151 controller_api_delete_A1_policy 202 OSC ricsim_g1_1 1 4000
152
153 deviation "SDNC does not return original response code from sim"
154 controller_api_delete_A1_policy 204 STD ricsim_g2_1 5000
155
156 sim_contains_str ricsim_g1_1 remote_hosts httpproxy.nonrtric-docker-net
157 sim_contains_str ricsim_g2_1 remote_hosts httpproxy.nonrtric-docker-net
158
159 check_sdnc_logs
160
161 store_logs "NB_"$__nb_httpx"_SB_"$__sb_httpx
162
163 done
164
165done
166
167#### TEST COMPLETE ####
168
169print_result
170
171auto_clean_environment