blob: ee617ef31a2649ec5410278640a1fb9ecec14459 [file] [log] [blame]
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +01001#!/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# This is a script that contains container/service management functions
21# for NonRTRIC Gateway
22
23################ Test engine functions ################
24
25# Create the image var used during the test
26# arg: <image-tag-suffix> (selects staging, snapshot, release etc)
27# <image-tag-suffix> is present only for images with staging, snapshot,release tags
28__NGW_imagesetup() {
29 __check_and_create_image_var NGW "NRT_GATEWAY_IMAGE" "NRT_GATEWAY_IMAGE_BASE" "NRT_GATEWAY_IMAGE_TAG" $1 "$NRT_GATEWAY_DISPLAY_NAME"
30}
31
32# Pull image from remote repo or use locally built image
33# arg: <pull-policy-override> <pull-policy-original>
34# <pull-policy-override> Shall be used for images allowing overriding. For example use a local image when test is started to use released images
35# <pull-policy-original> Shall be used for images that does not allow overriding
36# Both var may contain: 'remote', 'remote-remove' or 'local'
37__NGW_imagepull() {
BjornMagnussonXA483ee332021-04-08 01:35:24 +020038 __check_and_pull_image $1 "$NRT_GATEWAY_DISPLAY_NAME" $NRT_GATEWAY_APP_NAME NRT_GATEWAY_IMAGE
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +010039}
40
41# Build image (only for simulator or interfaces stubs owned by the test environment)
42# arg: <image-tag-suffix> (selects staging, snapshot, release etc)
43# <image-tag-suffix> is present only for images with staging, snapshot,release tags
44__NGW_imagebuild() {
45 echo -e $RED"Image for app NGW shall never be built"$ERED
46}
47
48# Generate a string for each included image using the app display name and a docker images format string
BjornMagnussonXA483ee332021-04-08 01:35:24 +020049# If a custom image repo is used then also the source image from the local repo is listed
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +010050# arg: <docker-images-format-string> <file-to-append>
51__NGW_image_data() {
52 echo -e "$NRT_GATEWAY_DISPLAY_NAME\t$(docker images --format $1 $NRT_GATEWAY_IMAGE)" >> $2
BjornMagnussonXA483ee332021-04-08 01:35:24 +020053 if [ ! -z "$NRT_GATEWAY_IMAGE_SOURCE" ]; then
54 echo -e "-- source image --\t$(docker images --format $1 $NRT_GATEWAY_IMAGE_SOURCE)" >> $2
55 fi
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +010056}
57
58# Scale kubernetes resources to zero
59# All resources shall be ordered to be scaled to 0, if relevant. If not relevant to scale, then do no action.
60# This function is called for apps fully managed by the test script
61__NGW_kube_scale_zero() {
62 __kube_scale_all_resources $KUBE_NONRTRIC_NAMESPACE autotest NGW
63}
64
65# Scale kubernetes resources to zero and wait until this has been accomplished, if relevant. If not relevant to scale, then do no action.
66# This function is called for prestarted apps not managed by the test script.
67__NGW_kube_scale_zero_and_wait() {
68 echo -e " NGW replicas kept as is"
69}
70
71# Delete all kube resouces for the app
72# This function is called for apps managed by the test script.
73__NGW_kube_delete_all() {
74 __kube_delete_all_resources $KUBE_NONRTRIC_NAMESPACE autotest NGW
75}
76
77# Store docker logs
78# This function is called for apps managed by the test script.
79# args: <log-dir> <file-prexix>
80__NGW_store_docker_logs() {
BjornMagnussonXA663566c2021-11-08 10:25:07 +010081 if [ $RUNMODE == "KUBE" ]; then
82 kubectl logs -l "autotest=NGW" -n $KUBE_NONRTRIC_NAMESPACE --tail=-1 > $1$2_gateway.log 2>&1
83 else
84 docker logs $NRT_GATEWAY_APP_NAME > $1$2_gateway.log 2>&1
85 fi
86}
87
88# Initial setup of protocol, host and ports
89# This function is called for apps managed by the test script.
90# args: -
91__NGW_initial_setup() {
92 use_gateway_http
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +010093}
94
95#######################################################
96
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +010097
BjornMagnussonXA663566c2021-11-08 10:25:07 +010098
99
100
101# Set http as the protocol to use for all communication to the nonrtric gateway
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +0100102# args: -
103# (Function for test scripts)
104use_gateway_http() {
BjornMagnussonXA663566c2021-11-08 10:25:07 +0100105 __gateway_set_protocoll "http" $NRT_GATEWAY_INTERNAL_PORT $NRT_GATEWAY_EXTERNAL_PORT
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +0100106}
107
BjornMagnussonXA663566c2021-11-08 10:25:07 +0100108# Set https as the protocol to use for all communication to the nonrtric gateway
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +0100109# args: -
110# (Function for test scripts)
111use_gateway_https() {
BjornMagnussonXA663566c2021-11-08 10:25:07 +0100112 __gateway_set_protocoll "https" $NRT_GATEWAY_INTERNAL_SECURE_PORT $NRT_GATEWAY_EXTERNAL_SECURE_PORT
113}
114
115# Setup paths to svc/container for internal and external access
116# args: <protocol> <internal-port> <external-port>
117__gateway_set_protocoll() {
118 echo -e $BOLD"$NRT_GATEWAY_DISPLAY_NAME protocol setting"$EBOLD
119 echo -e " Using $BOLD http $EBOLD towards $NRT_GATEWAY_DISPLAY_NAME"
120
121 ## Access to nonrtric gateway
122
123 NRT_GATEWAY_SERVICE_PATH=$1"://"$NRT_GATEWAY_APP_NAME":"$2 # docker access, container->container and script->container via proxy
124 if [ $RUNMODE == "KUBE" ]; then
125 NRT_GATEWAY_SERVICE_PATH=$1"://"$NRT_GATEWAY_APP_NAME.$KUBE_NONRTRIC_NAMESPACE":"$3 # kube access, pod->svc and script->svc via proxy
126 fi
127
128 # NRT_GATEWAY_ADAPTER used for switching between REST and DMAAP (only REST supported currently)
129 NRT_GATEWAY_ADAPTER_TYPE="REST"
130 NRT_GATEWAY_ADAPTER=$DMAAP_ADP_SERVICE_PATH
131
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +0100132 echo ""
133}
134
135# Turn on debug level tracing in the gateway
136# args: -
137# (Function for test scripts)
138set_gateway_debug() {
139 echo -e $BOLD"Setting gateway debug logging"$EBOLD
BjornMagnussonXA663566c2021-11-08 10:25:07 +0100140 curlString="$NRT_GATEWAY_SERVICE_PATH$NRT_GATEWAY_ACTUATOR -X POST -H Content-Type:application/json -d {\"configuredLevel\":\"debug\"}"
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +0100141 result=$(__do_curl "$curlString")
142 if [ $? -ne 0 ]; then
143 __print_err "could not set debug mode" $@
144 ((RES_CONF_FAIL++))
145 return 1
146 fi
147 echo ""
148 return 0
149}
150
151# Turn on trace level tracing in the gateway
152# args: -
153# (Function for test scripts)
154set_gateway_trace() {
155 echo -e $BOLD"Setting gateway trace logging"$EBOLD
BjornMagnussonXA663566c2021-11-08 10:25:07 +0100156 curlString="$NRT_GATEWAY_SERVICE_PATH$NRT_GATEWAY_ACTUATOR -X POST -H Content-Type:application/json -d {\"configuredLevel\":\"trace\"}"
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +0100157 result=$(__do_curl "$curlString")
158 if [ $? -ne 0 ]; then
159 __print_err "could not set trace mode" $@
160 ((RES_CONF_FAIL++))
161 return 1
162 fi
163 echo ""
164 return 0
165}
166
BjornMagnussonXA663566c2021-11-08 10:25:07 +0100167# Export env vars for config files, docker compose and kube resources
168# args: -
169__gateway_export_vars() {
170
171 export NRT_GATEWAY_APP_NAME
172 export NRT_GATEWAY_DISPLAY_NAME
173
174 export KUBE_NONRTRIC_NAMESPACE
175 export DOCKER_SIM_NWNAME
176
177 export NRT_GATEWAY_IMAGE
178 export NRT_GATEWAY_INTERNAL_PORT
179 export NRT_GATEWAY_INTERNAL_SECURE_PORT
180 export NRT_GATEWAY_EXTERNAL_PORT
181 export NRT_GATEWAY_EXTERNAL_SECURE_PORT
182 export NRT_GATEWAY_CONFIG_MOUNT_PATH
183 export NRT_GATEWAY_CONFIG_FILE
184 export NGW_CONFIG_CONFIGMAP_NAME=$NRT_GATEWAY_APP_NAME"-config"
185 export NRT_GATEWAY_HOST_MNT_DIR
186 export NRT_GATEWAY_COMPOSE_DIR
187
188 if [ $RUNMODE == "KUBE" ]; then
189 export POLICY_AGENT_EXTERNAL_SECURE_PORT
190 export ECS_EXTERNAL_SECURE_PORT
191 export POLICY_AGENT_DOMAIN_NAME=$POLICY_AGENT_APP_NAME.$KUBE_NONRTRIC_NAMESPACE
192 export ECS_DOMAIN_NAME=$ECS_APP_NAME.$KUBE_NONRTRIC_NAMESPACE
193 else
194 export POLICY_AGENT_DOMAIN_NAME=$POLICY_AGENT_APP_NAME
195 export ECS_DOMAIN_NAME=$ECS_APP_NAME
196 fi
197}
198
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +0100199# Start the Gateway container
200# args: -
201# (Function for test scripts)
202start_gateway() {
203
204 echo -e $BOLD"Starting $NRT_GATEWAY_DISPLAY_NAME"$EBOLD
205
206 if [ $RUNMODE == "KUBE" ]; then
207
208 # Check if app shall be fully managed by the test script
209 __check_included_image "NGW"
210 retcode_i=$?
211
212 # Check if app shall only be used by the testscipt
213 __check_prestarted_image "NGW"
214 retcode_p=$?
215
216 if [ $retcode_i -ne 0 ] && [ $retcode_p -ne 0 ]; then
217 echo -e $RED"The $NRT_GATEWAY_APP_NAME app is not included as managed nor prestarted in this test script"$ERED
218 echo -e $RED"The $NRT_GATEWAY_APP_NAME will not be started"$ERED
219 exit
220 fi
221 if [ $retcode_i -eq 0 ] && [ $retcode_p -eq 0 ]; then
222 echo -e $RED"The $NRT_GATEWAY_APP_NAME app is included both as managed and prestarted in this test script"$ERED
223 echo -e $RED"The $NRT_GATEWAY_APP_NAME will not be started"$ERED
224 exit
225 fi
226
227 # Check if app shall be used - not managed - by the test script
228 __check_prestarted_image "NGW"
229 if [ $? -eq 0 ]; then
230 echo -e " Using existing $NRT_GATEWAY_APP_NAME deployment and service"
231 echo " Setting NGW replicas=1"
232 __kube_scale deployment $NRT_GATEWAY_APP_NAME $KUBE_NONRTRIC_NAMESPACE 1
233 fi
234
235 if [ $retcode_i -eq 0 ]; then
236
BjornMagnussonXAe25e05d2021-05-19 12:10:12 +0200237 echo -e " Creating $NRT_GATEWAY_APP_NAME app and expose service"
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +0100238
BjornMagnussonXA663566c2021-11-08 10:25:07 +0100239 __gateway_export_vars
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +0100240
241 #Check if nonrtric namespace exists, if not create it
242 __kube_create_namespace $KUBE_NONRTRIC_NAMESPACE
243
244 # Create config map for config
245 datafile=$PWD/tmp/$NRT_GATEWAY_CONFIG_FILE
246 #Add config to properties file
247 envsubst < $1 > $datafile
248 output_yaml=$PWD/tmp/ngw_cfc.yaml
249 __kube_create_configmap $NGW_CONFIG_CONFIGMAP_NAME $KUBE_NONRTRIC_NAMESPACE autotest NGW $datafile $output_yaml
250
251 # Create service
252 input_yaml=$SIM_GROUP"/"$NRT_GATEWAY_COMPOSE_DIR"/"svc.yaml
253 output_yaml=$PWD/tmp/ngw_svc.yaml
254 __kube_create_instance service $NRT_GATEWAY_APP_NAME $input_yaml $output_yaml
255
256 # Create app
257 input_yaml=$SIM_GROUP"/"$NRT_GATEWAY_COMPOSE_DIR"/"app.yaml
258 output_yaml=$PWD/tmp/ngw_app.yaml
259 __kube_create_instance app $NRT_GATEWAY_APP_NAME $input_yaml $output_yaml
260
261 fi
262
BjornMagnussonXA663566c2021-11-08 10:25:07 +0100263 __check_service_start $NRT_GATEWAY_APP_NAME $NRT_GATEWAY_SERVICE_PATH$NRT_GATEWAY_ALIVE_URL
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +0100264
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +0100265 else
266 # Check if docker app shall be fully managed by the test script
267 __check_included_image 'NGW'
268 if [ $? -eq 1 ]; then
269 echo -e $RED"The Gateway app is not included in this test script"$ERED
270 echo -e $RED"The Gateway will not be started"$ERED
271 exit
272 fi
273
BjornMagnussonXA663566c2021-11-08 10:25:07 +0100274 __gateway_export_vars
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +0100275
276 dest_file=$SIM_GROUP/$NRT_GATEWAY_COMPOSE_DIR/$NRT_GATEWAY_HOST_MNT_DIR/$NRT_GATEWAY_CONFIG_FILE
277
278 envsubst < $1 > $dest_file
279
280 __start_container $NRT_GATEWAY_COMPOSE_DIR "" NODOCKERARGS 1 $NRT_GATEWAY_APP_NAME
281
BjornMagnussonXA663566c2021-11-08 10:25:07 +0100282 __check_service_start $NRT_GATEWAY_APP_NAME $NRT_GATEWAY_SERVICE_PATH$NRT_GATEWAY_ALIVE_URL
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +0100283 fi
284 echo ""
285}
286
287
288# API Test function: V2 GET /status towards PMS
289# args: <response-code>
290# (Function for test scripts)
291gateway_pms_get_status() {
292 __log_test_start $@
293 if [ $# -ne 1 ]; then
294 __print_err "<response-code>" $@
295 return 1
296 fi
297 query=$PMS_API_PREFIX"/v2/status"
298 res="$(__do_curl_to_api NGW GET $query)"
299 status=${res:${#res}-3}
300
301 if [ $status -ne $1 ]; then
302 __log_test_fail_status_code $1 $status
303 return 1
304 fi
305
306 __log_test_pass
307 return 0
308}
309
310# API Test function: GET /ei-producer/v1/eitypes towards ECS
311# Note: This is just to test service response
312# args: <response-code>
313# (Function for test scripts)
314gateway_ecs_get_types() {
315 __log_test_start $@
316 if [ $# -ne 1 ]; then
317 __print_err "<response-code>" $@
318 return 1
319 fi
320 query="/ei-producer/v1/eitypes"
321 res="$(__do_curl_to_api NGW GET $query)"
322 status=${res:${#res}-3}
323
324 if [ $status -ne $1 ]; then
325 __log_test_fail_status_code $1 $status
326 return 1
327 fi
328
329 __log_test_pass
330 return 0
331}