blob: 16e1ad70195f988794a62f0064c63e737cfffdd5 [file] [log] [blame]
BjornMagnussonXA663566c2021-11-08 10:25:07 +01001#!/bin/bash
2
3# ============LICENSE_START===============================================
4# Copyright (C) 2021 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 managemnt functions test functions for the Dmaap Adatper
21
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__DMAAPMED_imagesetup() {
29 __check_and_create_image_var DMAAPMED "DMAAP_MED_IMAGE" "DMAAP_MED_IMAGE_BASE" "DMAAP_MED_IMAGE_TAG" $1 "$DMAAP_MED_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__DMAAPMED_imagepull() {
38 __check_and_pull_image $1 "$DMAAP_MED_DISPLAY_NAME" $DMAAP_MED_APP_NAME DMAAP_MED_IMAGE
39}
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__DMAAPMED_imagebuild() {
45 echo -e $RED" Image for app DMAAPMED 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
49# If a custom image repo is used then also the source image from the local repo is listed
50# arg: <docker-images-format-string> <file-to-append>
51__DMAAPMED_image_data() {
52 echo -e "$DMAAP_MED_DISPLAY_NAME\t$(docker images --format $1 $DMAAP_MED_IMAGE)" >> $2
53 if [ ! -z "$DMAAP_MED_IMAGE_SOURCE" ]; then
54 echo -e "-- source image --\t$(docker images --format $1 $DMAAP_MED_IMAGE_SOURCE)" >> $2
55 fi
56}
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__DMAAPMED_kube_scale_zero() {
62 __kube_scale_all_resources $KUBE_NONRTRIC_NAMESPACE autotest DMAAPMED
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__DMAAPMED_kube_scale_zero_and_wait() {
68 __kube_scale_and_wait_all_resources $KUBE_NONRTRIC_NAMESPACE app "$KUBE_NONRTRIC_NAMESPACE"-dmaapmediatorservice
69}
70
71# Delete all kube resouces for the app
72# This function is called for apps managed by the test script.
73__DMAAPMED_kube_delete_all() {
74 __kube_delete_all_resources $KUBE_NONRTRIC_NAMESPACE autotest DMAAPMED
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__DMAAPMED_store_docker_logs() {
81 if [ $RUNMODE == "KUBE" ]; then
82 kubectl logs -l "autotest=DMAAPMED" -n $KUBE_NONRTRIC_NAMESPACE --tail=-1 > $1$2_dmaapmediator.log 2>&1
83 else
84 docker logs $DMAAP_MED_APP_NAME > $1$2_dmaapmediator.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__DMAAPMED_initial_setup() {
92 use_dmaapmed_http
93}
94
95#######################################################
96
97# Set http as the protocol to use for all communication to the Dmaap mediator
98# args: -
99# (Function for test scripts)
100use_dmaapmed_http() {
101 __dmaapmed_set_protocoll "http" $DMAAP_MED_INTERNAL_PORT $DMAAP_MED_EXTERNAL_PORT
102}
103
104# Set https as the protocol to use for all communication to the Dmaap mediator
105# args: -
106# (Function for test scripts)
107use_dmaapmed_https() {
108 __dmaapmed_set_protocoll "https" $DMAAP_MED_INTERNAL_SECURE_PORT $DMAAP_MED_EXTERNAL_SECURE_PORT
109}
110
111# Setup paths to svc/container for internal and external access
112# args: <protocol> <internal-port> <external-port>
113__dmaapmed_set_protocoll() {
114 echo -e $BOLD"$DMAAP_MED_DISPLAY_NAME protocol setting"$EBOLD
115 echo -e " Using $BOLD http $EBOLD towards $DMAAP_MED_DISPLAY_NAME"
116
117 ## Access to Dmaap mediator
118
119 DMAAP_MED_SERVICE_PATH=$1"://"$DMAAP_MED_APP_NAME":"$2 # docker access, container->container and script->container via proxy
120 if [ $RUNMODE == "KUBE" ]; then
121 DMAAP_MED_SERVICE_PATH=$1"://"$DMAAP_MED_APP_NAME.$KUBE_NONRTRIC_NAMESPACE":"$3 # kube access, pod->svc and script->svc via proxy
122 fi
123
124 # DMAAP_MED_ADAPTER used for switching between REST and DMAAP (only REST supported currently)
125 DMAAP_MED_ADAPTER_TYPE="REST"
126 DMAAP_MED_ADAPTER=$DMAAP_MED_SERVICE_PATH
127
128 echo ""
129}
130
131# Export env vars for config files, docker compose and kube resources
132# args: PROXY|NOPROXY
133__dmaapmed_export_vars() {
134
135 export DMAAP_MED_APP_NAME
136 export DMAAP_MED_DISPLAY_NAME
137
138 export KUBE_NONRTRIC_NAMESPACE
139 export DOCKER_SIM_NWNAME
140
141 export DMAAP_MED_IMAGE
142
143 export DMAAP_MED_INTERNAL_PORT
144 export DMAAP_MED_INTERNAL_SECURE_PORT
145 export DMAAP_MED_EXTERNAL_PORT
146 export DMAAP_MED_EXTERNAL_SECURE_PORT
147
148 export DMAAP_MED_DATA_MOUNT_PATH
149 export DMAAP_MED_HOST_MNT_DIR
150 export DMAAP_MED_DATA_FILE
151 export DMAAP_MED_DATA_CONFIGMAP_NAME=$DMAAP_MED_APP_NAME"-data"
152
153 if [ $1 == "PROXY" ]; then
154 export DMAAP_MED_HTTP_PROXY_CONFIG_PORT=$HTTP_PROXY_CONFIG_PORT #Set if proxy is started
155 export DMAAP_MED_HTTP_PROXY_CONFIG_HOST_NAME=$HTTP_PROXY_CONFIG_HOST_NAME #Set if proxy is started
156 if [ $DMAAP_MED_HTTP_PROXY_CONFIG_PORT -eq 0 ] || [ -z "$DMAAP_MED_HTTP_PROXY_CONFIG_HOST_NAME" ]; then
157 echo -e $YELLOW" Warning: HTTP PROXY will not be configured, proxy app not started"$EYELLOW
158 else
159 echo " Configured with http proxy"
160 fi
161 else
162 export DMAAP_MED_HTTP_PROXY_CONFIG_PORT=0
163 export DMAAP_MED_HTTP_PROXY_CONFIG_HOST_NAME=""
164 echo " Configured without http proxy"
165 fi
166
167 # paths to other components
168 export ECS_SERVICE_PATH
169
170 export DMAAP_MED_CONF_SELF_HOST=$(echo $DMAAP_MED_SERVICE_PATH | cut -d: -f1-2)
171 export DMAAP_MED_CONF_SELF_PORT=$(echo $DMAAP_MED_SERVICE_PATH | cut -d: -f3)
172 export MR_SERVICE_PATH
173}
174
175# Start the Dmaap mediator
176# args: -
177# (Function for test scripts)
178start_dmaapmed() {
179
180 echo -e $BOLD"Starting $DMAAP_MED_DISPLAY_NAME"$EBOLD
181
182 if [ $RUNMODE == "KUBE" ]; then
183
184 # Check if app shall be fully managed by the test script
185 __check_included_image "DMAAPMED"
186 retcode_i=$?
187
188 # Check if app shall only be used by the testscipt
189 __check_prestarted_image "DMAAPMED"
190 retcode_p=$?
191
192 if [ $retcode_i -ne 0 ] && [ $retcode_p -ne 0 ]; then
193 echo -e $RED"The $DMAAP_MED_APP_NAME app is not included as managed nor prestarted in this test script"$ERED
194 echo -e $RED"The $DMAAP_MED_APP_NAME will not be started"$ERED
195 exit
196 fi
197 if [ $retcode_i -eq 0 ] && [ $retcode_p -eq 0 ]; then
198 echo -e $RED"The $DMAAP_MED_APP_NAME app is included both as managed and prestarted in this test script"$ERED
199 echo -e $RED"The $DMAAP_MED_APP_NAME will not be started"$ERED
200 exit
201 fi
202
203 # Check if app shall be used - not managed - by the test script
204 if [ $retcode_p -eq 0 ]; then
205 echo -e " Using existing $DMAAP_MED_APP_NAME deployment and service"
206 echo " Setting DMAAPMED replicas=1"
207 __kube_scale statefulset $DMAAP_MED_APP_NAME $KUBE_NONRTRIC_NAMESPACE 1
208 fi
209
210 if [ $retcode_i -eq 0 ]; then
211 echo -e " Creating $DMAAP_MED_APP_NAME deployment and service"
212
213 __kube_create_namespace $KUBE_NONRTRIC_NAMESPACE
214
215 __dmaapmed_export_vars $1
216
217 # Create config map for data
218 data_json=$PWD/tmp/$DMAAP_MED_DATA_FILE
219 if [ $# -lt 2 ]; then
220 #create empty dummy file
221 echo "{}" > $data_json
222 else
223 cp $2 $data_json
224 fi
225 output_yaml=$PWD/tmp/dmaapmed_cfd.yaml
226 __kube_create_configmap $DMAAP_MED_DATA_CONFIGMAP_NAME $KUBE_NONRTRIC_NAMESPACE autotest DMAAPMED $data_json $output_yaml
227
228 # Create service
229 input_yaml=$SIM_GROUP"/"$DMAAP_MED_COMPOSE_DIR"/"svc.yaml
230 output_yaml=$PWD/tmp/dmaapmed_svc.yaml
231 __kube_create_instance service $DMAAP_MED_APP_NAME $input_yaml $output_yaml
232
233 # Create app
234 input_yaml=$SIM_GROUP"/"$DMAAP_MED_COMPOSE_DIR"/"app.yaml
235 output_yaml=$PWD/tmp/dmaapmed_app.yaml
236 __kube_create_instance app $DMAAP_MED_APP_NAME $input_yaml $output_yaml
237
238 fi
239
240 __check_service_start $DMAAP_MED_APP_NAME $DMAAP_MED_SERVICE_PATH$DMAAP_MED_ALIVE_URL
241
242 else
243 # Check if docker app shall be fully managed by the test script
244 __check_included_image 'DMAAPMED'
245 if [ $? -eq 1 ]; then
246 echo -e $RED"The $DMAAP_MED_DISPLAY_NAME app is not included in this test script"$ERED
247 echo -e $RED"The $DMAAP_MED_DISPLAY_NAME will not be started"$ERED
248 exit
249 fi
250
251 __dmaapmed_export_vars $1
252
253 dest_file=$SIM_GROUP/$DMAAP_MED_COMPOSE_DIR/$DMAAP_MED_HOST_MNT_DIR/$DMAAP_MED_DATA_FILE
254
255 envsubst < $2 > $dest_file
256
257 __start_container $DMAAP_MED_COMPOSE_DIR "" NODOCKERARGS 1 $DMAAP_MED_APP_NAME
258
259 __check_service_start $DMAAP_MED_APP_NAME $DMAAP_MED_SERVICE_PATH$DMAAP_MED_ALIVE_URL
260 fi
261 echo ""
262}