blob: d9b5e87dceeb9f02be654753ee9780a4877dda23 [file] [log] [blame]
BjornMagnussonXA80a92002020-03-19 14:31:06 +01001#!/bin/bash
YongchaoWu9a84f512019-12-16 22:54:11 +01002
BjornMagnussonXA80a92002020-03-19 14:31:06 +01003# ============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#
YongchaoWu9a84f512019-12-16 22:54:11 +010019
BjornMagnussonXA89b64ab2020-12-16 09:21:01 +010020# This is a script that contains all the common functions needed for auto test.
21# Specific test function are defined in scripts XXXX_functions.sh
22
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +010023. ../common/api_curl.sh
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +010024. ../common/testengine_config.sh
BjornMagnussonXA89b64ab2020-12-16 09:21:01 +010025
26__print_args() {
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +010027 echo "Args: remote|remote-remove docker|kube --env-file <environment-filename> [release] [auto-clean] [--stop-at-error] "
BjornMagnussonXA89b64ab2020-12-16 09:21:01 +010028 echo " [--ricsim-prefix <prefix> ] [--use-local-image <app-nam>+] [--use-snapshot-image <app-nam>+]"
BjornMagnussonXA483ee332021-04-08 01:35:24 +020029 echo " [--use-staging-image <app-nam>+] [--use-release-image <app-nam>+] [--image-repo <repo-address]"
BjornMagnussonXAfec823b2021-08-03 14:14:05 +020030 echo " [--repo-policy local|remote] [--cluster-timeout <timeout-in seconds>] [--print-stats]"
BjornMagnussonXA6fc58fd2021-11-18 08:19:45 +010031 echo " [--override <override-environment-filename> --pre-clean --gen-stats]"
BjornMagnussonXA89b64ab2020-12-16 09:21:01 +010032}
33
34if [ $# -eq 1 ] && [ "$1" == "help" ]; then
35
36 if [ ! -z "$TC_ONELINE_DESCR" ]; then
37 echo "Test script description:"
38 echo $TC_ONELINE_DESCR
39 echo ""
40 fi
41 __print_args
42 echo ""
43 echo "remote - Use images from remote repositories. Can be overridden for individual images using the '--use_xxx' flags"
44 echo "remote-remove - Same as 'remote' but will also try to pull fresh images from remote repositories"
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +010045 echo "docker - Test executed in docker environment"
46 echo "kube - Test executed in kubernetes environment - requires an already started kubernetes environment"
BjornMagnussonXA663566c2021-11-08 10:25:07 +010047 echo "--env-file <file> - The script will use the supplied file to read environment variables from"
BjornMagnussonXA89b64ab2020-12-16 09:21:01 +010048 echo "release - If this flag is given the script will use release version of the images"
49 echo "auto-clean - If the function 'auto_clean_containers' is present in the end of the test script then all containers will be stopped and removed. If 'auto-clean' is not given then the function has no effect."
50 echo "--stop-at-error - The script will stop when the first failed test or configuration"
51 echo "--ricsim-prefix - The a1 simulator will use the supplied string as container prefix instead of 'ricsim'"
52 echo "--use-local-image - The script will use local images for the supplied apps, space separated list of app short names"
53 echo "--use-snapshot-image - The script will use images from the nexus snapshot repo for the supplied apps, space separated list of app short names"
54 echo "--use-staging-image - The script will use images from the nexus staging repo for the supplied apps, space separated list of app short names"
55 echo "--use-release-image - The script will use images from the nexus release repo for the supplied apps, space separated list of app short names"
BjornMagnussonXAa69cd902021-04-22 23:46:10 +020056 echo "--image-repo - Url to optional image repo. Only locally built images will be re-tagged and pushed to this repo"
BjornMagnussonXA674793d2021-05-06 19:49:17 +020057 echo "--repo-policy - Policy controlling which images to re-tag and push if param --image-repo is set. Default is 'local'"
BjornMagnussonXAa69cd902021-04-22 23:46:10 +020058 echo "--cluster-timeout - Optional timeout for cluster where it takes time to obtain external ip/host-name. Timeout in seconds. "
BjornMagnussonXAfec823b2021-08-03 14:14:05 +020059 echo "--print-stats - Print current test stats after each test."
BjornMagnussonXA663566c2021-11-08 10:25:07 +010060 echo "--override <file> - Override setting from the file supplied by --env-file"
61 echo "--pre-clean - Will clean kube resouces when running docker and vice versa"
BjornMagnussonXA6fc58fd2021-11-18 08:19:45 +010062 echo "--gen-stats - Collect container/pod runtime statistics"
BjornMagnussonXAfec823b2021-08-03 14:14:05 +020063
BjornMagnussonXA89b64ab2020-12-16 09:21:01 +010064 echo ""
65 echo "List of app short names supported: "$APP_SHORT_NAMES
66 exit 0
67fi
68
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +010069AUTOTEST_HOME=$PWD
BjornMagnussonXAbf3700b2020-10-05 08:39:40 +020070# Create a test case id, ATC (Auto Test Case), from the name of the test case script.
71# FTC1.sh -> ATC == FTC1
72ATC=$(basename "${BASH_SOURCE[$i+1]}" .sh)
73
74#Create result file (containing '1' for error) for this test case
75#Will be replaced with a file containing '0' if all test cases pass
76echo "1" > "$PWD/.result$ATC.txt"
77
BjornMagnussonXA80a92002020-03-19 14:31:06 +010078#Formatting for 'echo' cmd
79BOLD="\033[1m"
80EBOLD="\033[0m"
81RED="\033[31m\033[1m"
82ERED="\033[0m"
83GREEN="\033[32m\033[1m"
84EGREEN="\033[0m"
85YELLOW="\033[33m\033[1m"
86EYELLOW="\033[0m"
BjornMagnussonXA72667f12020-04-24 09:20:18 +020087SAMELINE="\033[0K\r"
88
BjornMagnussonXA80a92002020-03-19 14:31:06 +010089# Just resetting any previous echo formatting...
BjornMagnussonXA70e878f2020-05-11 14:11:30 +020090echo -ne $EBOLD
BjornMagnussonXA80a92002020-03-19 14:31:06 +010091
BjornMagnussonXA575869c2020-09-14 21:28:54 +020092# default test environment variables
BjornMagnussonXA39ad50e2020-10-22 09:55:25 +020093TEST_ENV_VAR_FILE=""
BjornMagnussonXA663566c2021-11-08 10:25:07 +010094#Override env file, will be added on top of the above file
95TEST_ENV_VAR_FILE_OVERRIDE=""
BjornMagnussonXA80a92002020-03-19 14:31:06 +010096
97echo "Test case started as: ${BASH_SOURCE[$i+1]} "$@
98
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +010099#Localhost constants
100LOCALHOST_NAME="localhost"
101LOCALHOST_HTTP="http://localhost"
102LOCALHOST_HTTPS="https://localhost"
BjornMagnussonXA70e878f2020-05-11 14:11:30 +0200103
BjornMagnussonXA80a92002020-03-19 14:31:06 +0100104# Var to hold 'auto' in case containers shall be stopped when test case ends
105AUTO_CLEAN=""
YongchaoWu9a84f512019-12-16 22:54:11 +0100106
BjornMagnussonXA663566c2021-11-08 10:25:07 +0100107# Var to indicate pre clean, if flag --pre-clean is set the script will clean kube resouces when running docker and vice versa
108PRE_CLEAN="0"
109
BjornMagnussonXA89b64ab2020-12-16 09:21:01 +0100110# Var to hold the app names to use local images for
BjornMagnussonXAbbd2e9d2020-05-27 21:24:06 +0200111USE_LOCAL_IMAGES=""
112
BjornMagnussonXA89b64ab2020-12-16 09:21:01 +0100113# Var to hold the app names to use remote snapshot images for
114USE_SNAPSHOT_IMAGES=""
115
116# Var to hold the app names to use remote staging images for
117USE_STAGING_IMAGES=""
118
119# Var to hold the app names to use remote release images for
120USE_RELEASE_IMAGES=""
121
BjornMagnussonXAad047782020-06-08 15:54:11 +0200122
BjornMagnussonXA048aaa12020-06-04 07:48:37 +0200123# Use this var (STOP_AT_ERROR=1 in the test script) for debugging/trouble shooting to take all logs and exit at first FAIL test case
124STOP_AT_ERROR=0
125
BjornMagnussonXA89b64ab2020-12-16 09:21:01 +0100126# The default value "DEV" indicate that development image tags (SNAPSHOT) and nexus repos (nexus port 10002) are used.
127# The value "RELEASE" indicate that relase image tag and nexus repos (nexus port) are used
128# Applies only to images defined in the test-env files with image names and tags defined as XXXX_RELEASE
129IMAGE_CATEGORY="DEV"
130
BjornMagnussonXA51f04f02021-11-23 09:22:35 +0100131#Var to indicate docker-compose version, V1 or V2
132#V1 names replicated containers <proj-name>_<service-name>_<index>
133#V2 names replicated containers <proj-name>-<service-name>-<index>
134DOCKER_COMPOSE_VERION="V1"
135
BjornMagnussonXAbf3700b2020-10-05 08:39:40 +0200136# Function to indent cmd output with one space
137indent1() { sed 's/^/ /'; }
138
139# Function to indent cmd output with two spaces
140indent2() { sed 's/^/ /'; }
141
YongchaoWu9a84f512019-12-16 22:54:11 +0100142# Set a description string for the test case
143if [ -z "$TC_ONELINE_DESCR" ]; then
144 TC_ONELINE_DESCR="<no-description>"
145 echo "No test case description found, TC_ONELINE_DESCR should be set on in the test script , using "$TC_ONELINE_DESCR
146fi
147
BjornMagnussonXA80a92002020-03-19 14:31:06 +0100148# Counter for test suites
149if [ -f .tmp_tcsuite_ctr ]; then
150 tmpval=$(< .tmp_tcsuite_ctr)
151 ((tmpval++))
152 echo $tmpval > .tmp_tcsuite_ctr
153fi
YongchaoWu9a84f512019-12-16 22:54:11 +0100154
YongchaoWu9a84f512019-12-16 22:54:11 +0100155# Create the logs dir if not already created in the current dir
156if [ ! -d "logs" ]; then
157 mkdir logs
158fi
YongchaoWu9a84f512019-12-16 22:54:11 +0100159TESTLOGS=$PWD/logs
160
BjornMagnussonXAf38e1e82020-10-11 23:05:02 +0200161# Create the tmp dir for temporary files that is not needed after the test
162# hidden files for the test env is still stored in the current dir
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +0100163# files in the ./tmp is moved to ./tmp/prev when a new test is started
BjornMagnussonXAf38e1e82020-10-11 23:05:02 +0200164if [ ! -d "tmp" ]; then
165 mkdir tmp
BjornMagnussonXAe60d04e2021-12-27 13:38:01 +0100166 if [ $? -ne 0 ]; then
167 echo "Cannot create dir for temp files, $PWD/tmp"
168 echo "Exiting...."
169 exit 1
170 fi
BjornMagnussonXAf38e1e82020-10-11 23:05:02 +0200171fi
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +0100172curdir=$PWD
173cd tmp
174if [ $? -ne 0 ]; then
175 echo "Cannot cd to $PWD/tmp"
BjornMagnussonXAe60d04e2021-12-27 13:38:01 +0100176 echo "Exiting...."
177 exit 1
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +0100178fi
BjornMagnussonXAe60d04e2021-12-27 13:38:01 +0100179
180TESTENV_TEMP_FILES=$PWD
181
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +0100182if [ ! -d "prev" ]; then
183 mkdir prev
BjornMagnussonXAe60d04e2021-12-27 13:38:01 +0100184 if [ $? -ne 0 ]; then
185 echo "Cannot create dir for previous temp files, $PWD/prev"
186 echo "Exiting...."
187 exit 1
188 fi
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +0100189fi
BjornMagnussonXAe60d04e2021-12-27 13:38:01 +0100190
191TMPFILES=$(ls -A | grep -vw prev)
192if [ ! -z "$TMPFILES" ]; then
193 cp -r $TMPFILES prev #Move all temp files to prev dir
194 if [ $? -ne 0 ]; then
195 echo "Cannot move temp files in $PWD to previous temp files in, $PWD/prev"
196 echo "Exiting...."
197 exit 1
198 fi
199 if [ $(pwd | xargs basename) == "tmp" ]; then #Check that current dir is tmp...for safety
200
201 rm -rf $TMPFILES # Remove all temp files
202 fi
203fi
204
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +0100205cd $curdir
BjornMagnussonXAe60d04e2021-12-27 13:38:01 +0100206if [ $? -ne 0 ]; then
207 echo "Cannot cd to $curdir"
208 echo "Exiting...."
209 exit 1
210fi
BjornMagnussonXAf38e1e82020-10-11 23:05:02 +0200211
BjornMagnussonXA80a92002020-03-19 14:31:06 +0100212# Create a http message log for this testcase
213HTTPLOG=$PWD"/.httplog_"$ATC".txt"
214echo "" > $HTTPLOG
215
216# Create a log dir for the test case
YongchaoWu9a84f512019-12-16 22:54:11 +0100217mkdir -p $TESTLOGS/$ATC
218
BjornMagnussonXA49f0e5a2020-11-08 22:41:39 +0100219# Save create for current logs
220mkdir -p $TESTLOGS/$ATC/previous
221
222rm $TESTLOGS/$ATC/previous/*.log &> /dev/null
223rm $TESTLOGS/$ATC/previous/*.txt &> /dev/null
224rm $TESTLOGS/$ATC/previous/*.json &> /dev/null
225
226mv $TESTLOGS/$ATC/*.log $TESTLOGS/$ATC/previous &> /dev/null
227mv $TESTLOGS/$ATC/*.txt $TESTLOGS/$ATC/previous &> /dev/null
228mv $TESTLOGS/$ATC/*.txt $TESTLOGS/$ATC/previous &> /dev/null
229
BjornMagnussonXA80a92002020-03-19 14:31:06 +0100230# Clear the log dir for the test case
231rm $TESTLOGS/$ATC/*.log &> /dev/null
232rm $TESTLOGS/$ATC/*.txt &> /dev/null
233rm $TESTLOGS/$ATC/*.json &> /dev/null
234
235# Log all output from the test case to a TC log
YongchaoWu9a84f512019-12-16 22:54:11 +0100236TCLOG=$TESTLOGS/$ATC/TC.log
237exec &> >(tee ${TCLOG})
238
239#Variables for counting tests as well as passed and failed tests
240RES_TEST=0
241RES_PASS=0
242RES_FAIL=0
BjornMagnussonXA80a92002020-03-19 14:31:06 +0100243RES_CONF_FAIL=0
BjornMagnussonXA70e878f2020-05-11 14:11:30 +0200244RES_DEVIATION=0
245
BjornMagnussonXAfec823b2021-08-03 14:14:05 +0200246#Var to control if current stats shall be printed
247PRINT_CURRENT_STATS=0
248
BjornMagnussonXA6fc58fd2021-11-18 08:19:45 +0100249#Var to control if container/pod runtim statistics shall be collected
250COLLECT_RUNTIME_STATS=0
BjornMagnussonXA0730e0f2021-12-29 17:13:23 +0100251COLLECT_RUNTIME_STATS_PID=0
BjornMagnussonXA6fc58fd2021-11-18 08:19:45 +0100252
BjornMagnussonXA70e878f2020-05-11 14:11:30 +0200253#File to keep deviation messages
254DEVIATION_FILE=".tmp_deviations"
255rm $DEVIATION_FILE &> /dev/null
BjornMagnussonXA80a92002020-03-19 14:31:06 +0100256
BjornMagnussonXA7b36db62020-11-23 10:57:57 +0100257# Trap "command not found" and make the script fail
258trap_fnc() {
259
260 if [ $? -eq 127 ]; then
BjornMagnussonXAde4d0f82020-11-29 16:04:06 +0100261 echo -e $RED"Function not found, setting script to FAIL"$ERED
BjornMagnussonXA7b36db62020-11-23 10:57:57 +0100262 ((RES_CONF_FAIL++))
BjornMagnussonXAfec823b2021-08-03 14:14:05 +0200263 __print_current_stats
BjornMagnussonXA7b36db62020-11-23 10:57:57 +0100264 fi
265}
266trap trap_fnc ERR
267
BjornMagnussonXA0730e0f2021-12-29 17:13:23 +0100268# Trap to kill subprocess for stats collection (if running)
269trap_fnc2() {
270 if [ $COLLECT_RUNTIME_STATS_PID -ne 0 ]; then
271 kill $COLLECT_RUNTIME_STATS_PID
272 fi
273}
274trap trap_fnc2 EXIT
BjornMagnussonXA6fc58fd2021-11-18 08:19:45 +0100275
BjornMagnussonXA7b36db62020-11-23 10:57:57 +0100276# Counter for tests
277TEST_SEQUENCE_NR=1
278
BjornMagnussonXA366e36a2021-01-27 11:48:56 +0100279# Function to log the start of a test case
BjornMagnussonXA7b36db62020-11-23 10:57:57 +0100280__log_test_start() {
281 TIMESTAMP=$(date "+%Y-%m-%d %H:%M:%S")
282 echo -e $BOLD"TEST $TEST_SEQUENCE_NR (${BASH_LINENO[1]}): ${FUNCNAME[1]}" $@ $EBOLD
283 echo "TEST $TEST_SEQUENCE_NR - ${TIMESTAMP}: (${BASH_LINENO[1]}): ${FUNCNAME[1]}" $@ >> $HTTPLOG
284 ((RES_TEST++))
285 ((TEST_SEQUENCE_NR++))
286}
287
BjornMagnussonXAfec823b2021-08-03 14:14:05 +0200288# Function to print current statistics
289__print_current_stats() {
290 if [ $PRINT_CURRENT_STATS -ne 0 ]; then
BjornMagnussonXA3cc0b582021-08-30 10:46:41 +0200291 echo " Current stats - exe-time, tests, passes, fails, conf fails, deviations: $(($SECONDS-$TCTEST_START)), $RES_TEST, $RES_PASS, $RES_FAIL, $RES_CONF_FAIL, $RES_DEVIATION"
BjornMagnussonXAfec823b2021-08-03 14:14:05 +0200292 fi
293}
294
BjornMagnussonXA366e36a2021-01-27 11:48:56 +0100295# General function to log a failed test case
BjornMagnussonXA7b36db62020-11-23 10:57:57 +0100296__log_test_fail_general() {
297 echo -e $RED" FAIL."$1 $ERED
298 ((RES_FAIL++))
BjornMagnussonXAfec823b2021-08-03 14:14:05 +0200299 __print_current_stats
BjornMagnussonXA7b36db62020-11-23 10:57:57 +0100300 __check_stop_at_error
301}
302
BjornMagnussonXA366e36a2021-01-27 11:48:56 +0100303# Function to log a test case failed due to incorrect response code
BjornMagnussonXA7b36db62020-11-23 10:57:57 +0100304__log_test_fail_status_code() {
305 echo -e $RED" FAIL. Exepected status "$1", got "$2 $3 $ERED
306 ((RES_FAIL++))
BjornMagnussonXAfec823b2021-08-03 14:14:05 +0200307 __print_current_stats
BjornMagnussonXA7b36db62020-11-23 10:57:57 +0100308 __check_stop_at_error
309}
310
BjornMagnussonXA366e36a2021-01-27 11:48:56 +0100311# Function to log a test case failed due to incorrect response body
BjornMagnussonXA7b36db62020-11-23 10:57:57 +0100312__log_test_fail_body() {
313 echo -e $RED" FAIL, returned body not correct"$ERED
314 ((RES_FAIL++))
BjornMagnussonXAfec823b2021-08-03 14:14:05 +0200315 __print_current_stats
BjornMagnussonXA7b36db62020-11-23 10:57:57 +0100316 __check_stop_at_error
317}
318
BjornMagnussonXA366e36a2021-01-27 11:48:56 +0100319# Function to log a test case that is not supported
BjornMagnussonXA7b36db62020-11-23 10:57:57 +0100320__log_test_fail_not_supported() {
321 echo -e $RED" FAIL, function not supported"$ERED
322 ((RES_FAIL++))
BjornMagnussonXAfec823b2021-08-03 14:14:05 +0200323 __print_current_stats
BjornMagnussonXA7b36db62020-11-23 10:57:57 +0100324 __check_stop_at_error
325}
326
BjornMagnussonXA366e36a2021-01-27 11:48:56 +0100327# General function to log a passed test case
BjornMagnussonXA7b36db62020-11-23 10:57:57 +0100328__log_test_pass() {
329 if [ $# -gt 0 ]; then
330 echo $@
331 fi
332 ((RES_PASS++))
333 echo -e $GREEN" PASS"$EGREEN
BjornMagnussonXAfec823b2021-08-03 14:14:05 +0200334 __print_current_stats
BjornMagnussonXA7b36db62020-11-23 10:57:57 +0100335}
336
337#Counter for configurations
338CONF_SEQUENCE_NR=1
BjornMagnussonXA366e36a2021-01-27 11:48:56 +0100339
340# Function to log the start of a configuration setup
BjornMagnussonXA7b36db62020-11-23 10:57:57 +0100341__log_conf_start() {
342 TIMESTAMP=$(date "+%Y-%m-%d %H:%M:%S")
343 echo -e $BOLD"CONF $CONF_SEQUENCE_NR (${BASH_LINENO[1]}): "${FUNCNAME[1]} $@ $EBOLD
344 echo "CONF $CONF_SEQUENCE_NR - ${TIMESTAMP}: (${BASH_LINENO[1]}): "${FUNCNAME[1]} $@ >> $HTTPLOG
345 ((CONF_SEQUENCE_NR++))
346}
347
BjornMagnussonXA366e36a2021-01-27 11:48:56 +0100348# Function to log a failed configuration setup
BjornMagnussonXA7b36db62020-11-23 10:57:57 +0100349__log_conf_fail_general() {
350 echo -e $RED" FAIL."$1 $ERED
351 ((RES_CONF_FAIL++))
BjornMagnussonXAfec823b2021-08-03 14:14:05 +0200352 __print_current_stats
BjornMagnussonXA7b36db62020-11-23 10:57:57 +0100353 __check_stop_at_error
354}
355
BjornMagnussonXA366e36a2021-01-27 11:48:56 +0100356# Function to log a failed configuration setup due to incorrect response code
BjornMagnussonXA7b36db62020-11-23 10:57:57 +0100357__log_conf_fail_status_code() {
358 echo -e $RED" FAIL. Exepected status "$1", got "$2 $3 $ERED
359 ((RES_CONF_FAIL++))
BjornMagnussonXAfec823b2021-08-03 14:14:05 +0200360 __print_current_stats
BjornMagnussonXA7b36db62020-11-23 10:57:57 +0100361 __check_stop_at_error
362}
363
BjornMagnussonXA366e36a2021-01-27 11:48:56 +0100364# Function to log a failed configuration setup due to incorrect response body
BjornMagnussonXA7b36db62020-11-23 10:57:57 +0100365__log_conf_fail_body() {
366 echo -e $RED" FAIL, returned body not correct"$ERED
367 ((RES_CONF_FAIL++))
BjornMagnussonXAfec823b2021-08-03 14:14:05 +0200368 __print_current_stats
BjornMagnussonXA7b36db62020-11-23 10:57:57 +0100369 __check_stop_at_error
370}
371
BjornMagnussonXA83a750f2021-09-21 20:39:58 +0200372# Function to log a configuration that is not supported
373__log_conf_fail_not_supported() {
374 echo -e $RED" FAIL, function not supported"$ERED$@
375 ((RES_CONF_FAIL++))
376 __print_current_stats
377 __check_stop_at_error
378}
379
BjornMagnussonXA366e36a2021-01-27 11:48:56 +0100380# Function to log a passed configuration setup
BjornMagnussonXA7b36db62020-11-23 10:57:57 +0100381__log_conf_ok() {
382 if [ $# -gt 0 ]; then
383 echo $@
384 fi
385 echo -e $GREEN" OK"$EGREEN
BjornMagnussonXAfec823b2021-08-03 14:14:05 +0200386 __print_current_stats
BjornMagnussonXA7b36db62020-11-23 10:57:57 +0100387}
388
BjornMagnussonXA80a92002020-03-19 14:31:06 +0100389#Var for measuring execution time
YongchaoWu9a84f512019-12-16 22:54:11 +0100390TCTEST_START=$SECONDS
391
BjornMagnussonXA79e37002021-11-22 13:36:04 +0100392#Vars to hold the start time and timer text for a custom timer
393TC_TIMER_STARTTIME=""
394TC_TIMER_TIMER_TEXT=""
395TC_TIMER_CURRENT_FAILS="" # Then numer of failed test when timer starts.
396 # Compared with the current number of fails at timer stop
397 # to judge the measurement reliability
398
BjornMagnussonXA70e878f2020-05-11 14:11:30 +0200399#File to save timer measurement results
400TIMER_MEASUREMENTS=".timer_measurement.txt"
BjornMagnussonXA79e37002021-11-22 13:36:04 +0100401echo -e "Activity \t Duration \t Info" > $TIMER_MEASUREMENTS
BjornMagnussonXA70e878f2020-05-11 14:11:30 +0200402
BjornMagnussonXA674793d2021-05-06 19:49:17 +0200403# If this is set, some images (control by the parameter repo-polcy) will be re-tagged and pushed to this repo before any
BjornMagnussonXA483ee332021-04-08 01:35:24 +0200404IMAGE_REPO_ADR=""
BjornMagnussonXA674793d2021-05-06 19:49:17 +0200405IMAGE_REPO_POLICY="local"
BjornMagnussonXAa69cd902021-04-22 23:46:10 +0200406CLUSTER_TIME_OUT=0
BjornMagnussonXA70e878f2020-05-11 14:11:30 +0200407
YongchaoWu9a84f512019-12-16 22:54:11 +0100408echo "-------------------------------------------------------------------------------------------------"
409echo "----------------------------------- Test case: "$ATC
410echo "----------------------------------- Started: "$(date)
411echo "-------------------------------------------------------------------------------------------------"
412echo "-- Description: "$TC_ONELINE_DESCR
413echo "-------------------------------------------------------------------------------------------------"
414echo "----------------------------------- Test case setup -----------------------------------"
415
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +0100416echo "Setting AUTOTEST_HOME="$AUTOTEST_HOME
BjornMagnussonXAbbd2e9d2020-05-27 21:24:06 +0200417START_ARG=$1
418paramerror=0
BjornMagnussonXA89b64ab2020-12-16 09:21:01 +0100419paramerror_str=""
BjornMagnussonXAbbd2e9d2020-05-27 21:24:06 +0200420if [ $# -lt 1 ]; then
421 paramerror=1
422fi
423if [ $paramerror -eq 0 ]; then
BjornMagnussonXA89b64ab2020-12-16 09:21:01 +0100424 if [ "$1" != "remote" ] && [ "$1" != "remote-remove" ]; then
BjornMagnussonXAbbd2e9d2020-05-27 21:24:06 +0200425 paramerror=1
BjornMagnussonXA89b64ab2020-12-16 09:21:01 +0100426 if [ -z "$paramerror_str" ]; then
427 paramerror_str="First arg shall be 'remote' or 'remote-remove'"
428 fi
BjornMagnussonXAbbd2e9d2020-05-27 21:24:06 +0200429 else
430 shift;
431 fi
432fi
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +0100433if [ $paramerror -eq 0 ]; then
434 if [ "$1" != "docker" ] && [ "$1" != "kube" ]; then
435 paramerror=1
436 if [ -z "$paramerror_str" ]; then
437 paramerror_str="Second arg shall be 'docker' or 'kube'"
438 fi
439 else
440 if [ $1 == "docker" ]; then
441 RUNMODE="DOCKER"
442 echo "Setting RUNMODE=DOCKER"
443 fi
444 if [ $1 == "kube" ]; then
445 RUNMODE="KUBE"
446 echo "Setting RUNMODE=KUBE"
447 fi
448 shift;
449 fi
450fi
BjornMagnussonXAad047782020-06-08 15:54:11 +0200451foundparm=0
452while [ $paramerror -eq 0 ] && [ $foundparm -eq 0 ]; do
453 foundparm=1
454 if [ $paramerror -eq 0 ]; then
BjornMagnussonXA89b64ab2020-12-16 09:21:01 +0100455 if [ "$1" == "release" ]; then
456 IMAGE_CATEGORY="RELEASE"
457 echo "Option set - Release image tags used for applicable images "
458 shift;
459 foundparm=0
460 fi
461 fi
462 if [ $paramerror -eq 0 ]; then
BjornMagnussonXAad047782020-06-08 15:54:11 +0200463 if [ "$1" == "auto-clean" ]; then
464 AUTO_CLEAN="auto"
465 echo "Option set - Auto clean at end of test script"
BjornMagnussonXAbbd2e9d2020-05-27 21:24:06 +0200466 shift;
BjornMagnussonXAad047782020-06-08 15:54:11 +0200467 foundparm=0
468 fi
BjornMagnussonXAbbd2e9d2020-05-27 21:24:06 +0200469 fi
BjornMagnussonXAad047782020-06-08 15:54:11 +0200470 if [ $paramerror -eq 0 ]; then
471 if [ "$1" == "--stop-at-error" ]; then
472 STOP_AT_ERROR=1
473 echo "Option set - Stop at first error"
474 shift;
475 foundparm=0
476 fi
477 fi
478 if [ $paramerror -eq 0 ]; then
479 if [ "$1" == "--ricsim-prefix" ]; then
480 shift;
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +0100481 TMP_RIC_SIM_PREFIX=$1 #RIC_SIM_PREFIX need to be updated after sourcing of the env file
BjornMagnussonXAad047782020-06-08 15:54:11 +0200482 if [ -z "$1" ]; then
483 paramerror=1
BjornMagnussonXA89b64ab2020-12-16 09:21:01 +0100484 if [ -z "$paramerror_str" ]; then
485 paramerror_str="No prefix found for flag: '--ricsim-prefix'"
486 fi
BjornMagnussonXAad047782020-06-08 15:54:11 +0200487 else
488 echo "Option set - Overriding RIC_SIM_PREFIX with: "$1
489 shift;
490 foundparm=0
491 fi
492 fi
493 fi
494 if [ $paramerror -eq 0 ]; then
BjornMagnussonXA575869c2020-09-14 21:28:54 +0200495 if [ "$1" == "--env-file" ]; then
496 shift;
497 TEST_ENV_VAR_FILE=$1
498 if [ -z "$1" ]; then
499 paramerror=1
BjornMagnussonXA89b64ab2020-12-16 09:21:01 +0100500 if [ -z "$paramerror_str" ]; then
501 paramerror_str="No env file found for flag: '--env-file'"
502 fi
BjornMagnussonXA575869c2020-09-14 21:28:54 +0200503 else
BjornMagnussonXA39ad50e2020-10-22 09:55:25 +0200504 echo "Option set - Reading test env from: "$1
BjornMagnussonXA575869c2020-09-14 21:28:54 +0200505 shift;
506 foundparm=0
507 fi
508 fi
509 fi
510 if [ $paramerror -eq 0 ]; then
BjornMagnussonXAad047782020-06-08 15:54:11 +0200511 if [ "$1" == "--use-local-image" ]; then
512 USE_LOCAL_IMAGES=""
513 shift
514 while [ $# -gt 0 ] && [[ "$1" != "--"* ]]; do
515 USE_LOCAL_IMAGES=$USE_LOCAL_IMAGES" "$1
BjornMagnussonXA89b64ab2020-12-16 09:21:01 +0100516 if [[ "$AVAILABLE_IMAGES_OVERRIDE" != *"$1"* ]]; then
BjornMagnussonXAad047782020-06-08 15:54:11 +0200517 paramerror=1
BjornMagnussonXA89b64ab2020-12-16 09:21:01 +0100518 if [ -z "$paramerror_str" ]; then
519 paramerror_str="App name $1 is not available for local override for flag: '--use-local-image'"
520 fi
BjornMagnussonXAad047782020-06-08 15:54:11 +0200521 fi
522 shift;
523 done
524 foundparm=0
525 if [ -z "$USE_LOCAL_IMAGES" ]; then
526 paramerror=1
BjornMagnussonXA89b64ab2020-12-16 09:21:01 +0100527 if [ -z "$paramerror_str" ]; then
528 paramerror_str="No app name found for flag: '--use-local-image'"
529 fi
BjornMagnussonXAad047782020-06-08 15:54:11 +0200530 else
BjornMagnussonXA89b64ab2020-12-16 09:21:01 +0100531 echo "Option set - Overriding with local images for app(s):"$USE_LOCAL_IMAGES
532 fi
533 fi
534 fi
535 if [ $paramerror -eq 0 ]; then
536 if [ "$1" == "--use-snapshot-image" ]; then
537 USE_SNAPSHOT_IMAGES=""
538 shift
539 while [ $# -gt 0 ] && [[ "$1" != "--"* ]]; do
540 USE_SNAPSHOT_IMAGES=$USE_SNAPSHOT_IMAGES" "$1
541 if [[ "$AVAILABLE_IMAGES_OVERRIDE" != *"$1"* ]]; then
542 paramerror=1
543 if [ -z "$paramerror_str" ]; then
544 paramerror_str="App name $1 is not available for snapshot override for flag: '--use-snapshot-image'"
545 fi
546 fi
547 shift;
548 done
549 foundparm=0
550 if [ -z "$USE_SNAPSHOT_IMAGES" ]; then
551 paramerror=1
552 if [ -z "$paramerror_str" ]; then
553 paramerror_str="No app name found for flag: '--use-snapshot-image'"
554 fi
555 else
556 echo "Option set - Overriding with snapshot images for app(s):"$USE_SNAPSHOT_IMAGES
557 fi
558 fi
559 fi
560 if [ $paramerror -eq 0 ]; then
561 if [ "$1" == "--use-staging-image" ]; then
562 USE_STAGING_IMAGES=""
563 shift
564 while [ $# -gt 0 ] && [[ "$1" != "--"* ]]; do
565 USE_STAGING_IMAGES=$USE_STAGING_IMAGES" "$1
566 if [[ "$AVAILABLE_IMAGES_OVERRIDE" != *"$1"* ]]; then
567 paramerror=1
568 if [ -z "$paramerror_str" ]; then
569 paramerror_str="App name $1 is not available for staging override for flag: '--use-staging-image'"
570 fi
571 fi
572 shift;
573 done
574 foundparm=0
575 if [ -z "$USE_STAGING_IMAGES" ]; then
576 paramerror=1
577 if [ -z "$paramerror_str" ]; then
578 paramerror_str="No app name found for flag: '--use-staging-image'"
579 fi
580 else
581 echo "Option set - Overriding with staging images for app(s):"$USE_STAGING_IMAGES
582 fi
583 fi
584 fi
585 if [ $paramerror -eq 0 ]; then
586 if [ "$1" == "--use-release-image" ]; then
587 USE_RELEASE_IMAGES=""
588 shift
589 while [ $# -gt 0 ] && [[ "$1" != "--"* ]]; do
590 USE_RELEASE_IMAGES=$USE_RELEASE_IMAGES" "$1
591 if [[ "$AVAILABLE_IMAGES_OVERRIDE" != *"$1"* ]]; then
592 paramerror=1
593 if [ -z "$paramerror_str" ]; then
594 paramerror_str="App name $1 is not available for release override for flag: '--use-release-image'"
595 fi
596 fi
597 shift;
598 done
599 foundparm=0
600 if [ -z "$USE_RELEASE_IMAGES" ]; then
601 paramerror=1
602 if [ -z "$paramerror_str" ]; then
603 paramerror_str="No app name found for flag: '--use-release-image'"
604 fi
605 else
606 echo "Option set - Overriding with release images for app(s):"$USE_RELEASE_IMAGES
BjornMagnussonXAad047782020-06-08 15:54:11 +0200607 fi
608 fi
609 fi
BjornMagnussonXA483ee332021-04-08 01:35:24 +0200610 if [ $paramerror -eq 0 ]; then
611 if [ "$1" == "--image-repo" ]; then
612 shift;
613 IMAGE_REPO_ADR=$1
614 if [ -z "$1" ]; then
615 paramerror=1
616 if [ -z "$paramerror_str" ]; then
617 paramerror_str="No image repo url found for : '--image-repo'"
618 fi
619 else
620 echo "Option set - Image repo url: "$1
621 shift;
622 foundparm=0
623 fi
624 fi
625 fi
BjornMagnussonXAa69cd902021-04-22 23:46:10 +0200626 if [ $paramerror -eq 0 ]; then
BjornMagnussonXA674793d2021-05-06 19:49:17 +0200627 if [ "$1" == "--repo-policy" ]; then
628 shift;
629 IMAGE_REPO_POLICY=$1
630 if [ -z "$1" ]; then
631 paramerror=1
632 if [ -z "$paramerror_str" ]; then
633 paramerror_str="No policy found for : '--repo-policy'"
634 fi
635 else
636 if [ "$1" == "local" ] || [ "$1" == "remote" ]; then
637 echo "Option set - Image repo policy: "$1
638 shift;
639 foundparm=0
640 else
641 paramerror=1
642 if [ -z "$paramerror_str" ]; then
643 paramerror_str="Repo policy shall be 'local' or 'remote'"
644 fi
645 fi
646 fi
647 fi
648 fi
649 if [ $paramerror -eq 0 ]; then
BjornMagnussonXAa69cd902021-04-22 23:46:10 +0200650 if [ "$1" == "--cluster-timeout" ]; then
651 shift;
652 CLUSTER_TIME_OUT=$1
653 if [ -z "$1" ]; then
654 paramerror=1
655 if [ -z "$paramerror_str" ]; then
656 paramerror_str="No timeout value found for : '--cluster-timeout'"
657 fi
658 else
659 #Check if positive int
660 case ${CLUSTER_TIME_OUT#[+]} in
661 *[!0-9]* | '')
662 paramerror=1
663 if [ -z "$paramerror_str" ]; then
664 paramerror_str="Value for '--cluster-timeout' not an int : "$CLUSTER_TIME_OUT
665 fi
666 ;;
667 * ) ;; # Ok
668 esac
669 echo "Option set - Cluster timeout: "$1
670 shift;
671 foundparm=0
672 fi
673 fi
674 fi
BjornMagnussonXAfec823b2021-08-03 14:14:05 +0200675 if [ $paramerror -eq 0 ]; then
BjornMagnussonXA663566c2021-11-08 10:25:07 +0100676 if [ "$1" == "--override" ]; then
677 shift;
678 TEST_ENV_VAR_FILE_OVERRIDE=$1
679 if [ -z "$1" ]; then
680 paramerror=1
681 if [ -z "$paramerror_str" ]; then
682 paramerror_str="No env file found for flag: '--override'"
683 fi
684 else
685 if [ ! -f $TEST_ENV_VAR_FILE_OVERRIDE ]; then
686 paramerror=1
687 if [ -z "$paramerror_str" ]; then
688 paramerror_str="File for '--override' does not exist : "$TEST_ENV_VAR_FILE_OVERRIDE
689 fi
690 fi
691 echo "Option set - Override env from: "$1
692 shift;
693 foundparm=0
694 fi
695 fi
696 fi
697 if [ $paramerror -eq 0 ]; then
698 if [ "$1" == "--pre-clean" ]; then
699 PRE_CLEAN=1
700 echo "Option set - Pre-clean of kube/docker resouces"
701 shift;
702 foundparm=0
703 fi
704 fi
705 if [ $paramerror -eq 0 ]; then
BjornMagnussonXAfec823b2021-08-03 14:14:05 +0200706 if [ "$1" == "--print-stats" ]; then
707 PRINT_CURRENT_STATS=1
BjornMagnussonXA007b6452021-11-29 08:03:38 +0100708 echo "Option set - Print stats after every test-case and config"
BjornMagnussonXAfec823b2021-08-03 14:14:05 +0200709 shift;
710 foundparm=0
711 fi
712 fi
BjornMagnussonXA6fc58fd2021-11-18 08:19:45 +0100713 if [ $paramerror -eq 0 ]; then
714 if [ "$1" == "--gen-stats" ]; then
715 COLLECT_RUNTIME_STATS=1
716 echo "Option set - Collect runtime statistics"
717 shift;
718 foundparm=0
719 fi
720 fi
721
BjornMagnussonXAad047782020-06-08 15:54:11 +0200722done
723echo ""
BjornMagnussonXAbbd2e9d2020-05-27 21:24:06 +0200724
BjornMagnussonXAad047782020-06-08 15:54:11 +0200725#Still params left?
BjornMagnussonXAbbd2e9d2020-05-27 21:24:06 +0200726if [ $paramerror -eq 0 ] && [ $# -gt 0 ]; then
727 paramerror=1
BjornMagnussonXA89b64ab2020-12-16 09:21:01 +0100728 if [ -z "$paramerror_str" ]; then
729 paramerror_str="Unknown parameter(s): "$@
730 fi
BjornMagnussonXAbbd2e9d2020-05-27 21:24:06 +0200731fi
732
733if [ $paramerror -eq 1 ]; then
BjornMagnussonXA89b64ab2020-12-16 09:21:01 +0100734 echo -e $RED"Incorrect arg list: "$paramerror_str$ERED
735 __print_args
BjornMagnussonXAbbd2e9d2020-05-27 21:24:06 +0200736 exit 1
737fi
738
BjornMagnussonXA575869c2020-09-14 21:28:54 +0200739# sourcing the selected env variables for the test case
740if [ -f "$TEST_ENV_VAR_FILE" ]; then
741 echo -e $BOLD"Sourcing env vars from: "$TEST_ENV_VAR_FILE$EBOLD
742 . $TEST_ENV_VAR_FILE
BjornMagnussonXA663566c2021-11-08 10:25:07 +0100743 if [ ! -z "$TEST_ENV_VAR_FILE_OVERRIDE" ]; then
744 echo -e $BOLD"Sourcing override env vars from: "$TEST_ENV_VAR_FILE_OVERRIDE$EBOLD
745 . $TEST_ENV_VAR_FILE_OVERRIDE
746 fi
BjornMagnussonXA49f0e5a2020-11-08 22:41:39 +0100747
748 if [ -z "$TEST_ENV_PROFILE" ] || [ -z "$SUPPORTED_PROFILES" ]; then
BjornMagnussonXA89b64ab2020-12-16 09:21:01 +0100749 echo -e $YELLOW"This test case may not work with selected test env file. TEST_ENV_PROFILE is missing in test_env file or SUPPORTED_PROFILES is missing in test case file"$EYELLOW
BjornMagnussonXA49f0e5a2020-11-08 22:41:39 +0100750 else
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +0100751 found_profile=0
752 for prof in $SUPPORTED_PROFILES; do
753 if [ "$TEST_ENV_PROFILE" == "$prof" ]; then
754 echo -e $GREEN"Test case supports the selected test env file"$EGREEN
755 found_profile=1
756 fi
757 done
758 if [ $found_profile -ne 1 ]; then
BjornMagnussonXA49f0e5a2020-11-08 22:41:39 +0100759 echo -e $RED"Test case does not support the selected test env file"$ERED
BjornMagnussonXA89b64ab2020-12-16 09:21:01 +0100760 echo "Profile: "$TEST_ENV_PROFILE" Supported profiles: "$SUPPORTED_PROFILES
BjornMagnussonXA49f0e5a2020-11-08 22:41:39 +0100761 echo -e $RED"Exiting...."$ERED
762 exit 1
763 fi
764 fi
BjornMagnussonXA575869c2020-09-14 21:28:54 +0200765else
BjornMagnussonXAbf3700b2020-10-05 08:39:40 +0200766 echo -e $RED"Selected env var file does not exist: "$TEST_ENV_VAR_FILE$ERED
BjornMagnussonXA39ad50e2020-10-22 09:55:25 +0200767 echo " Select one of following env var file matching the intended target of the test"
768 echo " Restart the test using the flag '--env-file <path-to-env-file>"
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +0100769 ls $AUTOTEST_HOME/../common/test_env* | indent1
BjornMagnussonXA575869c2020-09-14 21:28:54 +0200770 exit 1
771fi
772
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +0100773#This var need be preserved from the command line option, if set, when env var is sourced.
774if [ ! -z "$TMP_RIC_SIM_PREFIX" ]; then
775 RIC_SIM_PREFIX=$TMP_RIC_SIM_PREFIX
776fi
777
BjornMagnussonXA89b64ab2020-12-16 09:21:01 +0100778if [ -z "$PROJECT_IMAGES_APP_NAMES" ]; then
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +0100779 echo -e $RED"Var PROJECT_IMAGES_APP_NAMES must be defined in: "$TEST_ENV_VAR_FILE $ERED
BjornMagnussonXA89b64ab2020-12-16 09:21:01 +0100780 exit 1
781fi
782
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +0100783if [[ $SUPPORTED_RUNMODES != *"$RUNMODE"* ]]; then
784 echo -e $RED"This test script does not support RUNMODE $RUNMODE"$ERED
785 echo "Supported RUNMODEs: "$SUPPORTED_RUNMODES
786 exit 1
787fi
BjornMagnussonXA89b64ab2020-12-16 09:21:01 +0100788
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +0100789# Choose list of included apps depending on run-mode
790if [ $RUNMODE == "KUBE" ]; then
791 INCLUDED_IMAGES=$KUBE_INCLUDED_IMAGES
792else
793 INCLUDED_IMAGES=$DOCKER_INCLUDED_IMAGES
794fi
BjornMagnussonXA575869c2020-09-14 21:28:54 +0200795
BjornMagnussonXA663566c2021-11-08 10:25:07 +0100796echo ""
797# auto adding system apps
BjornMagnussonXAdfdca182021-12-10 10:43:32 +0100798__added_apps=""
BjornMagnussonXA663566c2021-11-08 10:25:07 +0100799echo -e $BOLD"Auto adding system apps"$EBOLD
800if [ $RUNMODE == "KUBE" ]; then
801 INCLUDED_IMAGES=$INCLUDED_IMAGES" "$TESTENV_KUBE_SYSTEM_APPS
802 TMP_APPS=$TESTENV_KUBE_SYSTEM_APPS
803else
804 INCLUDED_IMAGES=$INCLUDED_IMAGES" "$TESTENV_DOCKER_SYSTEM_APPS
805 TMP_APPS=$TESTENV_DOCKER_SYSTEM_APPS
806fi
807if [ ! -z "$TMP_APPS" ]; then
808 for iapp in "$TMP_APPS"; do
809 file_pointer=$(echo $iapp | tr '[:upper:]' '[:lower:]')
810 file_pointer="../common/"$file_pointer"_api_functions.sh"
BjornMagnussonXAdfdca182021-12-10 10:43:32 +0100811 padded_iapp=$iapp
812 while [ ${#padded_iapp} -lt 16 ]; do
813 padded_iapp=$padded_iapp" "
814 done
815 echo " Auto-adding system app $padded_iapp Sourcing $file_pointer"
BjornMagnussonXA663566c2021-11-08 10:25:07 +0100816 . $file_pointer
BjornMagnussonXAe60d04e2021-12-27 13:38:01 +0100817 if [ $? -ne 0 ]; then
818 echo " Include file $file_pointer contain errors. Exiting..."
819 exit 1
820 fi
BjornMagnussonXAdfdca182021-12-10 10:43:32 +0100821 __added_apps=" $iapp "$__added_apps
BjornMagnussonXA663566c2021-11-08 10:25:07 +0100822 done
823else
824 echo " None"
825fi
BjornMagnussonXA79e37002021-11-22 13:36:04 +0100826
BjornMagnussonXAdfdca182021-12-10 10:43:32 +0100827if [ $RUNMODE == "KUBE" ]; then
828 TMP_APPS=$INCLUDED_IMAGES" "$KUBE_PRESTARTED_IMAGES
829else
830 TMP_APPS=$INCLUDED_IMAGES
831fi
832
BjornMagnussonXA79e37002021-11-22 13:36:04 +0100833echo -e $BOLD"Auto adding included apps"$EBOLD
BjornMagnussonXAdfdca182021-12-10 10:43:32 +0100834 for iapp in $TMP_APPS; do
835 if [[ "$__added_apps" != *"$iapp"* ]]; then
836 file_pointer=$(echo $iapp | tr '[:upper:]' '[:lower:]')
837 file_pointer="../common/"$file_pointer"_api_functions.sh"
838 padded_iapp=$iapp
839 while [ ${#padded_iapp} -lt 16 ]; do
840 padded_iapp=$padded_iapp" "
841 done
842 echo " Auto-adding included app $padded_iapp Sourcing $file_pointer"
BjornMagnussonXAdfdca182021-12-10 10:43:32 +0100843 if [ ! -f "$file_pointer" ]; then
844 echo " Include file $file_pointer for app $iapp does not exist"
845 exit 1
846 fi
BjornMagnussonXAe60d04e2021-12-27 13:38:01 +0100847 . $file_pointer
848 if [ $? -ne 0 ]; then
849 echo " Include file $file_pointer contain errors. Exiting..."
850 exit 1
851 fi
BjornMagnussonXA79e37002021-11-22 13:36:04 +0100852 fi
853 done
BjornMagnussonXA663566c2021-11-08 10:25:07 +0100854echo ""
855
BjornMagnussonXA51f04f02021-11-23 09:22:35 +0100856echo -e $BOLD"Test environment info"$EBOLD
BjornMagnussonXA79e37002021-11-22 13:36:04 +0100857
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +0100858# Check needed installed sw
BjornMagnussonXA51f04f02021-11-23 09:22:35 +0100859
860tmp=$(which bash)
861if [ $? -ne 0 ] || [ -z "$tmp" ]; then
862 echo -e $RED"bash is required to run the test environment, pls install"$ERED
863 exit 1
864fi
865echo " bash is installed and using version:"
866echo "$(bash --version)" | indent2
867
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +0100868tmp=$(which python3)
BjornMagnussonXA51f04f02021-11-23 09:22:35 +0100869if [ $? -ne 0 ] || [ -z "$tmp" ]; then
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +0100870 echo -e $RED"python3 is required to run the test environment, pls install"$ERED
871 exit 1
872fi
BjornMagnussonXA51f04f02021-11-23 09:22:35 +0100873echo " python3 is installed and using version: $(python3 --version)"
874
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +0100875tmp=$(which docker)
BjornMagnussonXA51f04f02021-11-23 09:22:35 +0100876if [ $? -ne 0 ] || [ -z "$tmp" ]; then
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +0100877 echo -e $RED"docker is required to run the test environment, pls install"$ERED
878 exit 1
879fi
BjornMagnussonXA51f04f02021-11-23 09:22:35 +0100880echo " docker is installed and using versions:"
881echo " $(docker version --format 'Client version {{.Client.Version}} Server version {{.Server.Version}}')"
BjornMagnussonXA575869c2020-09-14 21:28:54 +0200882
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +0100883tmp=$(which docker-compose)
BjornMagnussonXA51f04f02021-11-23 09:22:35 +0100884if [ $? -ne 0 ] || [ -z "$tmp" ]; then
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +0100885 if [ $RUNMODE == "DOCKER" ]; then
886 echo -e $RED"docker-compose is required to run the test environment, pls install"$ERED
887 exit 1
888 fi
889fi
BjornMagnussonXA51f04f02021-11-23 09:22:35 +0100890tmp=$(docker-compose version --short)
891echo " docker-compose installed and using version $tmp"
892if [[ "$tmp" == *'v2'* ]]; then
893 DOCKER_COMPOSE_VERION="V2"
BjornMagnussonXA663566c2021-11-08 10:25:07 +0100894fi
BjornMagnussonXA575869c2020-09-14 21:28:54 +0200895
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +0100896tmp=$(which kubectl)
897if [ $? -ne 0 ] || [ -z tmp ]; then
898 if [ $RUNMODE == "KUBE" ]; then
899 echo -e $RED"kubectl is required to run the test environment in kubernetes mode, pls install"$ERED
900 exit 1
901 fi
BjornMagnussonXA9ef79da2021-06-15 00:08:11 +0200902else
903 if [ $RUNMODE == "KUBE" ]; then
BjornMagnussonXA51f04f02021-11-23 09:22:35 +0100904 echo " kubectl is installed and using versions:"
905 echo $(kubectl version --short=true) | indent2
BjornMagnussonXA9ef79da2021-06-15 00:08:11 +0200906 res=$(kubectl cluster-info 2>&1)
907 if [ $? -ne 0 ]; then
908 echo -e "$BOLD$RED############################################# $ERED$EBOLD"
909 echo -e $BOLD$RED"Command 'kubectl cluster-info' returned error $ERED$EBOLD"
910 echo -e "$BOLD$RED############################################# $ERED$EBOLD"
911 echo " "
912 echo "kubectl response:"
913 echo $res
914 echo " "
915 echo "This script may have been started with user with no permission to run kubectl"
916 echo "Try running with 'sudo' or set 'KUBECONFIG'"
917 echo "Do either 1, 2 or 3 "
918 echo " "
919 echo "1"
920 echo "Run with sudo"
921 echo -e $BOLD"sudo <test-script-and-parameters>"$EBOLD
922 echo " "
923 echo "2"
924 echo "Export KUBECONFIG and pass env to sudo - (replace user)"
925 echo -e $BOLD"export KUBECONFIG='/home/<user>/.kube/config'"$EBOLD
926 echo -e $BOLD"sudo -E <test-script-and-parameters>"$EBOLD
927 echo " "
928 echo "3"
929 echo "Set KUBECONFIG inline (replace user)"
930 echo -e $BOLD"sudo KUBECONFIG='/home/<user>/.kube/config' <test-script-and-parameters>"$EBOLD
931
932 exit 1
933 fi
BjornMagnussonXA6dc3bd22021-12-20 08:58:10 +0100934 echo " Node(s) and container container runtime config"
935 kubectl get nodes -o wide | indent2
BjornMagnussonXA9ef79da2021-06-15 00:08:11 +0200936 fi
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +0100937fi
BjornMagnussonXAde4d0f82020-11-29 16:04:06 +0100938
BjornMagnussonXA51f04f02021-11-23 09:22:35 +0100939echo ""
940
BjornMagnussonXA80a92002020-03-19 14:31:06 +0100941echo -e $BOLD"Checking configured image setting for this test case"$EBOLD
YongchaoWu9a84f512019-12-16 22:54:11 +0100942
BjornMagnussonXA80a92002020-03-19 14:31:06 +0100943#Temp var to check for image variable name errors
944IMAGE_ERR=0
945#Create a file with image info for later printing as a table
BjornMagnussonXAf38e1e82020-10-11 23:05:02 +0200946image_list_file="./tmp/.image-list"
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +0100947echo -e "Application\tApp short name\tImage\ttag\ttag-switch" > $image_list_file
BjornMagnussonXA80a92002020-03-19 14:31:06 +0100948
949# Check if image env var is set and if so export the env var with image to use (used by docker compose files)
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +0100950# arg: <app-short-name> <target-variable-name> <image-variable-name> <image-tag-variable-name> <tag-suffix> <image name>
BjornMagnussonXA89b64ab2020-12-16 09:21:01 +0100951__check_and_create_image_var() {
BjornMagnussonXA483ee332021-04-08 01:35:24 +0200952
BjornMagnussonXAbf3700b2020-10-05 08:39:40 +0200953 if [ $# -ne 6 ]; then
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +0100954 echo "Expected arg: <app-short-name> <target-variable-name> <image-variable-name> <image-tag-variable-name> <tag-suffix> <image name>"
BjornMagnussonXA80a92002020-03-19 14:31:06 +0100955 ((IMAGE_ERR++))
956 return
957 fi
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +0100958
959 __check_included_image $1
BjornMagnussonXAbf3700b2020-10-05 08:39:40 +0200960 if [ $? -ne 0 ]; then
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +0100961 echo -e "$6\t$1\t<image-excluded>\t<no-tag>" >> $image_list_file
BjornMagnussonXAbf3700b2020-10-05 08:39:40 +0200962 # Image is excluded since the corresponding app is not used in this test
963 return
964 fi
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +0100965 tmp=${6}"\t"${1}"\t"
BjornMagnussonXA80a92002020-03-19 14:31:06 +0100966 #Create var from the input var names
BjornMagnussonXA89b64ab2020-12-16 09:21:01 +0100967 image="${!3}"
968 tmptag=$4"_"$5
969 tag="${!tmptag}"
BjornMagnussonXA80a92002020-03-19 14:31:06 +0100970
BjornMagnussonXA483ee332021-04-08 01:35:24 +0200971 optional_image_repo_target=""
972
BjornMagnussonXA80a92002020-03-19 14:31:06 +0100973 if [ -z $image ]; then
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +0100974 __check_ignore_image $1
975 if [ $? -eq 0 ]; then
976 app_ds=$6
977 if [ -z "$6" ]; then
978 app_ds="<app ignored>"
979 fi
980 echo -e "$app_ds\t$1\t<image-ignored>\t<no-tag>" >> $image_list_file
981 # Image is ignored since the corresponding the images is not set in the env file
982 __remove_included_image $1 # Remove the image from the list of included images
983 return
984 fi
BjornMagnussonXA89b64ab2020-12-16 09:21:01 +0100985 echo -e $RED"\$"$3" not set in $TEST_ENV_VAR_FILE"$ERED
986 ((IMAGE_ERR++))
BjornMagnussonXA80a92002020-03-19 14:31:06 +0100987 echo ""
988 tmp=$tmp"<no-image>\t"
989 else
BjornMagnussonXA483ee332021-04-08 01:35:24 +0200990
991 optional_image_repo_target=$image
992
BjornMagnussonXA89b64ab2020-12-16 09:21:01 +0100993 #Add repo depending on image type
994 if [ "$5" == "REMOTE_RELEASE" ]; then
995 image=$NEXUS_RELEASE_REPO$image
996 fi
997 if [ "$5" == "REMOTE" ]; then
998 image=$NEXUS_STAGING_REPO$image
999 fi
1000 if [ "$5" == "REMOTE_SNAPSHOT" ]; then
1001 image=$NEXUS_SNAPSHOT_REPO$image
1002 fi
1003 if [ "$5" == "REMOTE_PROXY" ]; then
1004 image=$NEXUS_PROXY_REPO$image
1005 fi
1006 if [ "$5" == "REMOTE_RELEASE_ONAP" ]; then
1007 image=$NEXUS_RELEASE_REPO_ONAP$image
1008 fi
1009 if [ "$5" == "REMOTE_RELEASE_ORAN" ]; then
1010 image=$NEXUS_RELEASE_REPO_ORAN$image
1011 fi
1012 #No nexus repo added for local images, tag: LOCAL
BjornMagnussonXA80a92002020-03-19 14:31:06 +01001013 tmp=$tmp$image"\t"
1014 fi
1015 if [ -z $tag ]; then
BjornMagnussonXA89b64ab2020-12-16 09:21:01 +01001016 echo -e $RED"\$"$tmptag" not set in $TEST_ENV_VAR_FILE"$ERED
1017 ((IMAGE_ERR++))
BjornMagnussonXA80a92002020-03-19 14:31:06 +01001018 echo ""
1019 tmp=$tmp"<no-tag>\t"
1020 else
1021 tmp=$tmp$tag
1022 fi
BjornMagnussonXA89b64ab2020-12-16 09:21:01 +01001023 tmp=$tmp"\t"$5
BjornMagnussonXA80a92002020-03-19 14:31:06 +01001024 echo -e "$tmp" >> $image_list_file
1025 #Export the env var
BjornMagnussonXA483ee332021-04-08 01:35:24 +02001026 export "${2}"=$image":"$tag #Note, this var may be set to the value of the target value below in __check_and_pull_image
BjornMagnussonXA674793d2021-05-06 19:49:17 +02001027
1028 remote_or_local_push=false
1029 if [ ! -z "$IMAGE_REPO_ADR" ] && [[ $5 != *"PROXY"* ]]; then
1030 if [ $5 == "LOCAL" ]; then
1031 remote_or_local_push=true
1032 fi
1033 if [[ $5 == *"REMOTE"* ]]; then
1034 if [ "$IMAGE_REPO_POLICY" == "remote" ]; then
1035 remote_or_local_push=true
1036 fi
1037 fi
1038 fi
1039 if $remote_or_local_push; then # Only re-tag and push images according to policy, if repo is given
BjornMagnussonXA483ee332021-04-08 01:35:24 +02001040 export "${2}_SOURCE"=$image":"$tag #Var to keep the actual source image
BjornMagnussonXA674793d2021-05-06 19:49:17 +02001041 if [[ $optional_image_repo_target == *"/"* ]]; then # Replace all / with _ for images to push to external repo
1042 optional_image_repo_target_tmp=${optional_image_repo_target//\//_}
1043 optional_image_repo_target=$optional_image_repo_target_tmp
1044 fi
BjornMagnussonXA483ee332021-04-08 01:35:24 +02001045 export "${2}_TARGET"=$IMAGE_REPO_ADR"/"$optional_image_repo_target":"$tag #Create image + tag for optional image repo - pushed later if needed
1046 else
1047 export "${2}_SOURCE"=""
1048 export "${2}_TARGET"=""
1049 fi
BjornMagnussonXAbbd2e9d2020-05-27 21:24:06 +02001050}
1051
BjornMagnussonXAf38e1e82020-10-11 23:05:02 +02001052# Check if app uses image included in this test run
1053# Returns 0 if image is included, 1 if not
BjornMagnussonXAf38e1e82020-10-11 23:05:02 +02001054__check_included_image() {
1055 for im in $INCLUDED_IMAGES; do
BjornMagnussonXAbbd2e9d2020-05-27 21:24:06 +02001056 if [ "$1" == "$im" ]; then
BjornMagnussonXAf38e1e82020-10-11 23:05:02 +02001057 return 0
BjornMagnussonXAbbd2e9d2020-05-27 21:24:06 +02001058 fi
1059 done
BjornMagnussonXAf38e1e82020-10-11 23:05:02 +02001060 return 1
BjornMagnussonXAbbd2e9d2020-05-27 21:24:06 +02001061}
1062
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +01001063# Check if app uses a project image
1064# Returns 0 if image is included, 1 if not
1065__check_project_image() {
1066 for im in $PROJECT_IMAGES; do
1067 if [ "$1" == "$im" ]; then
1068 return 0
1069 fi
1070 done
1071 return 1
1072}
1073
1074# Check if app uses image built by the test script
1075# Returns 0 if image is included, 1 if not
1076__check_image_local_build() {
1077 for im in $LOCAL_IMAGE_BUILD; do
1078 if [ "$1" == "$im" ]; then
1079 return 0
1080 fi
1081 done
1082 return 1
1083}
1084
1085# Check if app image is conditionally ignored in this test run
1086# Returns 0 if image is conditionally ignored, 1 if not
1087__check_ignore_image() {
1088 for im in $CONDITIONALLY_IGNORED_IMAGES; do
1089 if [ "$1" == "$im" ]; then
1090 return 0
1091 fi
1092 done
1093 return 1
1094}
1095
1096# Removed image from included list of included images
1097# Used when an image is marked as conditionally ignored
1098__remove_included_image() {
1099 tmp_img_rem_list=""
1100 for im in $INCLUDED_IMAGES; do
1101 if [ "$1" != "$im" ]; then
1102 tmp_img_rem_list=$tmp_img_rem_list" "$im
1103 fi
1104 done
1105 INCLUDED_IMAGES=$tmp_img_rem_list
1106 return 0
1107}
1108
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +01001109# Check if app is included in the prestarted set of apps
1110# Returns 0 if image is included, 1 if not
1111__check_prestarted_image() {
1112 for im in $KUBE_PRESTARTED_IMAGES; do
1113 if [ "$1" == "$im" ]; then
1114 return 0
1115 fi
1116 done
1117 return 1
1118}
1119
1120# Check if an app shall use a local image, based on the cmd parameters
BjornMagnussonXA89b64ab2020-12-16 09:21:01 +01001121__check_image_local_override() {
1122 for im in $USE_LOCAL_IMAGES; do
1123 if [ "$1" == "$im" ]; then
1124 return 1
1125 fi
1126 done
1127 return 0
1128}
1129
1130# Check if app uses image override
1131# Returns the image/tag suffix LOCAL for local image or REMOTE/REMOTE_RELEASE/REMOTE_SNAPSHOT for staging/release/snapshot image
1132__check_image_override() {
1133
1134 for im in $ORAN_IMAGES_APP_NAMES; do
1135 if [ "$1" == "$im" ]; then
1136 echo "REMOTE_RELEASE_ORAN"
1137 return 0
1138 fi
1139 done
1140
1141 for im in $ONAP_IMAGES_APP_NAMES; do
1142 if [ "$1" == "$im" ]; then
1143 echo "REMOTE_RELEASE_ONAP"
1144 return 0
1145 fi
1146 done
1147
1148 found=0
1149 for im in $PROJECT_IMAGES_APP_NAMES; do
1150 if [ "$1" == "$im" ]; then
1151 found=1
1152 fi
1153 done
1154
1155 if [ $found -eq 0 ]; then
1156 echo "REMOTE_PROXY"
1157 return 0
1158 fi
1159
1160 suffix=""
1161 if [ $IMAGE_CATEGORY == "RELEASE" ]; then
1162 suffix="REMOTE_RELEASE"
1163 fi
1164 if [ $IMAGE_CATEGORY == "DEV" ]; then
1165 suffix="REMOTE"
1166 fi
1167 CTR=0
1168 for im in $USE_STAGING_IMAGES; do
1169 if [ "$1" == "$im" ]; then
1170 suffix="REMOTE"
1171 ((CTR++))
1172 fi
1173 done
1174 for im in $USE_RELEASE_IMAGES; do
1175 if [ "$1" == "$im" ]; then
1176 suffix="REMOTE_RELEASE"
1177 ((CTR++))
1178 fi
1179 done
1180 for im in $USE_SNAPSHOT_IMAGES; do
1181 if [ "$1" == "$im" ]; then
1182 suffix="REMOTE_SNAPSHOT"
1183 ((CTR++))
1184 fi
1185 done
1186 for im in $USE_LOCAL_IMAGES; do
1187 if [ "$1" == "$im" ]; then
1188 suffix="LOCAL"
1189 ((CTR++))
1190 fi
1191 done
1192 echo $suffix
1193 if [ $CTR -gt 1 ]; then
1194 exit 1
1195 fi
1196 return 0
1197}
1198
BjornMagnussonXA483ee332021-04-08 01:35:24 +02001199# Function to re-tag and image and push to another image repo
1200__retag_and_push_image() {
1201 if [ ! -z "$IMAGE_REPO_ADR" ]; then
1202 source_image="${!1}"
1203 trg_var_name=$1_"TARGET" # This var is created in func __check_and_create_image_var
1204 target_image="${!trg_var_name}"
BjornMagnussonXA674793d2021-05-06 19:49:17 +02001205
1206 if [ -z $target_image ]; then
1207 return 0 # Image with no target shall not be pushed
1208 fi
1209
BjornMagnussonXA483ee332021-04-08 01:35:24 +02001210 echo -ne " Attempt to re-tag image to: ${BOLD}${target_image}${EBOLD}${SAMELINE}"
1211 tmp=$(docker image tag $source_image ${target_image} )
1212 if [ $? -ne 0 ]; then
1213 docker stop $tmp &> ./tmp/.dockererr
1214 ((IMAGE_ERR++))
1215 echo ""
1216 echo -e " Attempt to re-tag image to: ${BOLD}${target_image}${EBOLD} - ${RED}Failed${ERED}"
1217 cat ./tmp/.dockererr
1218 return 1
1219 else
1220 echo -e " Attempt to re-tag image to: ${BOLD}${target_image}${EBOLD} - ${GREEN}OK${EGREEN}"
1221 fi
1222 echo -ne " Attempt to push re-tagged image: ${BOLD}${target_image}${EBOLD}${SAMELINE}"
1223 tmp=$(docker push ${target_image} )
1224 if [ $? -ne 0 ]; then
1225 docker stop $tmp &> ./tmp/.dockererr
1226 ((IMAGE_ERR++))
1227 echo ""
1228 echo -e " Attempt to push re-tagged image: ${BOLD}${target_image}${EBOLD} - ${RED}Failed${ERED}"
1229 cat ./tmp/.dockererr
1230 return 1
1231 else
1232 echo -e " Attempt to push re-tagged image: ${BOLD}${target_image}${EBOLD} - ${GREEN}OK${EGREEN}"
1233 fi
1234 export "${1}"=$target_image
1235 fi
1236 return 0
1237}
1238
BjornMagnussonXA80a92002020-03-19 14:31:06 +01001239#Function to check if image exist and stop+remove the container+pull new images as needed
BjornMagnussonXA483ee332021-04-08 01:35:24 +02001240#args <script-start-arg> <descriptive-image-name> <container-base-name> <image-with-tag-var-name>
BjornMagnussonXA80a92002020-03-19 14:31:06 +01001241__check_and_pull_image() {
1242
BjornMagnussonXA483ee332021-04-08 01:35:24 +02001243 source_image="${!4}"
1244
1245 echo -e " Checking $BOLD$2$EBOLD container(s) with basename: $BOLD$3$EBOLD using image: $BOLD$source_image$EBOLD"
BjornMagnussonXA80a92002020-03-19 14:31:06 +01001246 format_string="\"{{.Repository}}\\t{{.Tag}}\\t{{.CreatedSince}}\\t{{.Size}}\""
BjornMagnussonXA483ee332021-04-08 01:35:24 +02001247 tmp_im=$(docker images --format $format_string $source_image)
BjornMagnussonXA80a92002020-03-19 14:31:06 +01001248
1249 if [ $1 == "local" ]; then
1250 if [ -z "$tmp_im" ]; then
BjornMagnussonXA483ee332021-04-08 01:35:24 +02001251 echo -e " "$2" (local image): \033[1m"$source_image"\033[0m $RED does not exist in local registry, need to be built (or manually pulled)"$ERED
BjornMagnussonXA80a92002020-03-19 14:31:06 +01001252 ((IMAGE_ERR++))
1253 return 1
1254 else
BjornMagnussonXA483ee332021-04-08 01:35:24 +02001255 echo -e " "$2" (local image): \033[1m"$source_image"\033[0m "$GREEN"OK"$EGREEN
BjornMagnussonXA80a92002020-03-19 14:31:06 +01001256 fi
1257 elif [ $1 == "remote" ] || [ $1 == "remote-remove" ]; then
1258 if [ $1 == "remote-remove" ]; then
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +01001259 if [ $RUNMODE == "DOCKER" ]; then
1260 echo -ne " Attempt to stop and remove container(s), if running - ${SAMELINE}"
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +01001261 tmp=$(docker ps -aq --filter name=${3} --filter network=${DOCKER_SIM_NWNAME})
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +01001262 if [ $? -eq 0 ] && [ ! -z "$tmp" ]; then
1263 docker stop $tmp &> ./tmp/.dockererr
1264 if [ $? -ne 0 ]; then
1265 ((IMAGE_ERR++))
1266 echo ""
1267 echo -e $RED" Container(s) could not be stopped - try manual stopping the container(s)"$ERED
1268 cat ./tmp/.dockererr
1269 return 1
1270 fi
BjornMagnussonXA80a92002020-03-19 14:31:06 +01001271 fi
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +01001272 echo -ne " Attempt to stop and remove container(s), if running - "$GREEN"stopped"$EGREEN"${SAMELINE}"
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +01001273 tmp=$(docker ps -aq --filter name=${3} --filter network=${DOCKER_SIM_NWNAME}) &> /dev/null
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +01001274 if [ $? -eq 0 ] && [ ! -z "$tmp" ]; then
1275 docker rm $tmp &> ./tmp/.dockererr
1276 if [ $? -ne 0 ]; then
1277 ((IMAGE_ERR++))
1278 echo ""
1279 echo -e $RED" Container(s) could not be removed - try manual removal of the container(s)"$ERED
1280 cat ./tmp/.dockererr
1281 return 1
1282 fi
BjornMagnussonXA80a92002020-03-19 14:31:06 +01001283 fi
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +01001284 echo -e " Attempt to stop and remove container(s), if running - "$GREEN"stopped removed"$EGREEN
1285 tmp_im=""
1286 else
1287 tmp_im=""
BjornMagnussonXA80a92002020-03-19 14:31:06 +01001288 fi
BjornMagnussonXA80a92002020-03-19 14:31:06 +01001289 fi
1290 if [ -z "$tmp_im" ]; then
BjornMagnussonXA72667f12020-04-24 09:20:18 +02001291 echo -ne " Pulling image${SAMELINE}"
BjornMagnussonXA483ee332021-04-08 01:35:24 +02001292 out=$(docker pull $source_image)
BjornMagnussonXA89b64ab2020-12-16 09:21:01 +01001293 if [ $? -ne 0 ]; then
BjornMagnussonXA80a92002020-03-19 14:31:06 +01001294 echo ""
1295 echo -e " Pulling image -$RED could not be pulled"$ERED
1296 ((IMAGE_ERR++))
BjornMagnussonXA89b64ab2020-12-16 09:21:01 +01001297 echo $out > ./tmp/.dockererr
1298 echo $out
BjornMagnussonXA80a92002020-03-19 14:31:06 +01001299 return 1
1300 fi
BjornMagnussonXA89b64ab2020-12-16 09:21:01 +01001301 echo $out > ./tmp/.dockererr
1302 if [[ $out == *"up to date"* ]]; then
1303 echo -e " Pulling image -$GREEN Image is up to date $EGREEN"
1304 elif [[ $out == *"Downloaded newer image"* ]]; then
1305 echo -e " Pulling image -$GREEN Newer image pulled $EGREEN"
1306 else
1307 echo -e " Pulling image -$GREEN Pulled $EGREEN"
1308 fi
BjornMagnussonXA80a92002020-03-19 14:31:06 +01001309 else
1310 echo -e " Pulling image -$GREEN OK $EGREEN(exists in local repository)"
1311 fi
1312 fi
BjornMagnussonXA483ee332021-04-08 01:35:24 +02001313
1314 __retag_and_push_image $4
1315
1316 return $?
BjornMagnussonXA80a92002020-03-19 14:31:06 +01001317}
1318
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +01001319setup_testenvironment() {
1320 # Check that image env setting are available
BjornMagnussonXA80a92002020-03-19 14:31:06 +01001321 echo ""
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +01001322
1323 # Image var setup for all project images included in the test
1324 for imagename in $APP_SHORT_NAMES; do
1325 __check_included_image $imagename
1326 incl=$?
1327 __check_project_image $imagename
1328 proj=$?
1329 if [ $incl -eq 0 ]; then
1330 if [ $proj -eq 0 ]; then
1331 IMAGE_SUFFIX=$(__check_image_override $imagename)
1332 if [ $? -ne 0 ]; then
1333 echo -e $RED"Image setting from cmd line not consistent for $imagename."$ERED
1334 ((IMAGE_ERR++))
1335 fi
1336 else
1337 IMAGE_SUFFIX="none"
1338 fi
1339 # A function name is created from the app short name
BjornMagnussonXA007b6452021-11-29 08:03:38 +01001340 # for example app short name 'ICS' -> produce the function
1341 # name __ICS_imagesetup
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +01001342 # This function is called and is expected to exist in the imported
BjornMagnussonXA007b6452021-11-29 08:03:38 +01001343 # file for the ics test functions
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +01001344 # The resulting function impl will call '__check_and_create_image_var' function
1345 # with appropriate parameters
1346 # If the image suffix is none, then the component decides the suffix
1347 function_pointer="__"$imagename"_imagesetup"
1348 $function_pointer $IMAGE_SUFFIX
BjornMagnussonXAe60d04e2021-12-27 13:38:01 +01001349
1350 function_pointer="__"$imagename"_test_requirements"
1351 $function_pointer
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +01001352 fi
1353 done
1354
1355 #Errors in image setting - exit
1356 if [ $IMAGE_ERR -ne 0 ]; then
1357 exit 1
BjornMagnussonXA89b64ab2020-12-16 09:21:01 +01001358 fi
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +01001359
1360 #Print a tables of the image settings
1361 echo -e $BOLD"Images configured for start arg: "$START_ARG $EBOLD
1362 column -t -s $'\t' $image_list_file | indent1
1363
BjornMagnussonXA80a92002020-03-19 14:31:06 +01001364 echo ""
BjornMagnussonXA80a92002020-03-19 14:31:06 +01001365
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +01001366 #Set the SIM_GROUP var
1367 echo -e $BOLD"Setting var to main dir of all container/simulator scripts"$EBOLD
1368 if [ -z "$SIM_GROUP" ]; then
1369 SIM_GROUP=$AUTOTEST_HOME/../simulator-group
1370 if [ ! -d $SIM_GROUP ]; then
1371 echo "Trying to set env var SIM_GROUP to dir 'simulator-group' in the nontrtric repo, but failed."
1372 echo -e $RED"Please set the SIM_GROUP manually in the applicable $TEST_ENV_VAR_FILE"$ERED
1373 exit 1
1374 else
1375 echo " SIM_GROUP auto set to: " $SIM_GROUP
1376 fi
1377 elif [ $SIM_GROUP = *simulator_group ]; then
1378 echo -e $RED"Env var SIM_GROUP does not seem to point to dir 'simulator-group' in the repo, check $TEST_ENV_VAR_FILE"$ERED
1379 exit 1
BjornMagnussonXAbf3700b2020-10-05 08:39:40 +02001380 else
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +01001381 echo " SIM_GROUP env var already set to: " $SIM_GROUP
1382 fi
1383
1384 echo ""
1385
1386 #Temp var to check for image pull errors
1387 IMAGE_ERR=0
1388
1389 # The following sequence pull the configured images
1390
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +01001391
BjornMagnussonXAa69cd902021-04-22 23:46:10 +02001392 echo -e $BOLD"Pulling configured images, if needed"$EBOLD
BjornMagnussonXA674793d2021-05-06 19:49:17 +02001393 if [ ! -z "$IMAGE_REPO_ADR" ] && [ $IMAGE_REPO_POLICY == "local" ]; then
1394 echo -e $YELLOW" Excluding all remote image check/pull when running with image repo: $IMAGE_REPO_ADR and image policy $IMAGE_REPO_POLICY"$EYELLOW
BjornMagnussonXAa69cd902021-04-22 23:46:10 +02001395 else
1396 for imagename in $APP_SHORT_NAMES; do
1397 __check_included_image $imagename
1398 incl=$?
1399 __check_project_image $imagename
1400 proj=$?
1401 if [ $incl -eq 0 ]; then
1402 if [ $proj -eq 0 ]; then
1403 START_ARG_MOD=$START_ARG
1404 __check_image_local_override $imagename
1405 if [ $? -eq 1 ]; then
1406 START_ARG_MOD="local"
1407 fi
1408 else
1409 START_ARG_MOD=$START_ARG
1410 fi
1411 __check_image_local_build $imagename
1412 #No pull of images built locally
1413 if [ $? -ne 0 ]; then
1414 # A function name is created from the app short name
1415 # for example app short name 'HTTPPROXY' -> produce the function
1416 # name __HTTPPROXY_imagesetup
1417 # This function is called and is expected to exist in the imported
1418 # file for the httpproxy test functions
1419 # The resulting function impl will call '__check_and_pull_image' function
1420 # with appropriate parameters
1421 function_pointer="__"$imagename"_imagepull"
1422 $function_pointer $START_ARG_MOD $START_ARG
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +01001423 fi
1424 else
BjornMagnussonXAa69cd902021-04-22 23:46:10 +02001425 echo -e $YELLOW" Excluding $imagename image from image check/pull"$EYELLOW
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +01001426 fi
BjornMagnussonXAa69cd902021-04-22 23:46:10 +02001427 done
1428 fi
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +01001429
1430 #Errors in image setting - exit
1431 if [ $IMAGE_ERR -ne 0 ]; then
1432 echo ""
1433 echo "#################################################################################################"
1434 echo -e $RED"One or more images could not be pulled or containers using the images could not be stopped/removed"$ERED
1435 echo -e $RED"Or local image, overriding remote image, does not exist"$ERED
1436 if [ $IMAGE_CATEGORY == "DEV" ]; then
BjornMagnussonXA720f5d72021-08-13 10:37:23 +02001437 echo ""
1438 echo -e $RED"Note that SNAPSHOT and staging images may be purged from nexus after a certain period."$ERED
1439 echo -e $RED"In addition, the image may not have been updated in the current release so no SNAPSHOT or staging image exists"$ERED
1440 echo -e $RED"In these cases, switch to use a released image instead, use the flag '--use-release-image <App-short-name>'"$ERED
1441 echo -e $RED"Use the 'App-short-name' for the applicable image from the above table: 'Images configured for start arg'."$ERED
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +01001442 fi
1443 echo "#################################################################################################"
1444 echo ""
BjornMagnussonXA2791e082020-11-12 00:52:08 +01001445 exit 1
BjornMagnussonXAbf3700b2020-10-05 08:39:40 +02001446 fi
BjornMagnussonXA80a92002020-03-19 14:31:06 +01001447
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +01001448 echo ""
YongchaoWuf309b1b2020-01-22 13:24:48 +01001449
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +01001450 echo -e $BOLD"Building images needed for test"$EBOLD
BjornMagnussonXAf38e1e82020-10-11 23:05:02 +02001451
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +01001452 for imagename in $APP_SHORT_NAMES; do
1453 cd $AUTOTEST_HOME #Always reset to orig dir
1454 __check_image_local_build $imagename
1455 if [ $? -eq 0 ]; then
1456 __check_included_image $imagename
1457 if [ $? -eq 0 ]; then
1458 # A function name is created from the app short name
1459 # for example app short name 'MR' -> produce the function
1460 # name __MR_imagebuild
1461 # This function is called and is expected to exist in the imported
1462 # file for the mr test functions
1463 # The resulting function impl shall build the imagee
1464 function_pointer="__"$imagename"_imagebuild"
1465 $function_pointer
YongchaoWuf309b1b2020-01-22 13:24:48 +01001466
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +01001467 else
1468 echo -e $YELLOW" Excluding image for app $imagename from image build"$EYELLOW
1469 fi
1470 fi
1471 done
BjornMagnussonXA80a92002020-03-19 14:31:06 +01001472
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +01001473 cd $AUTOTEST_HOME # Just to make sure...
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +01001474
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +01001475 echo ""
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +01001476
BjornMagnussonXAa69cd902021-04-22 23:46:10 +02001477 # Create a table of the images used in the script - from local repo
1478 echo -e $BOLD"Local docker registry images used in this test script"$EBOLD
BjornMagnussonXA80a92002020-03-19 14:31:06 +01001479
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +01001480 docker_tmp_file=./tmp/.docker-images-table
1481 format_string="{{.Repository}}\\t{{.Tag}}\\t{{.CreatedSince}}\\t{{.Size}}\\t{{.CreatedAt}}"
1482 echo -e "Application\tRepository\tTag\tCreated since\tSize\tCreated at" > $docker_tmp_file
BjornMagnussonXA80a92002020-03-19 14:31:06 +01001483
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +01001484 for imagename in $APP_SHORT_NAMES; do
1485 __check_included_image $imagename
1486 if [ $? -eq 0 ]; then
BjornMagnussonXAa69cd902021-04-22 23:46:10 +02001487 # Only print image data if image repo is null, or if image repo is set and image is local
1488 print_image_data=0
1489 if [ -z "$IMAGE_REPO_ADR" ]; then
1490 print_image_data=1
1491 else
1492 __check_image_local_build $imagename
1493 if [ $? -eq 0 ]; then
1494 print_image_data=1
1495 fi
1496 fi
1497 if [ $print_image_data -eq 1 ]; then
1498 # A function name is created from the app short name
1499 # for example app short name 'MR' -> produce the function
1500 # name __MR_imagebuild
1501 # This function is called and is expected to exist in the imported
1502 # file for the mr test functions
1503 # The resulting function impl shall build the imagee
1504 function_pointer="__"$imagename"_image_data"
1505 $function_pointer "$format_string" $docker_tmp_file
1506 fi
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +01001507 fi
1508 done
YongchaoWu9a84f512019-12-16 22:54:11 +01001509
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +01001510 column -t -s $'\t' $docker_tmp_file | indent1
1511
1512 echo ""
BjornMagnussonXAa69cd902021-04-22 23:46:10 +02001513
1514 if [ ! -z "$IMAGE_REPO_ADR" ]; then
1515
1516 # Create a table of the images used in the script - from remote repo
1517 echo -e $BOLD"Remote repo images used in this test script"$EBOLD
1518 echo -e $YELLOW"-- Note: These image will be pulled when the container starts. Images not managed by the test engine --"$EYELLOW
1519
1520 docker_tmp_file=./tmp/.docker-images-table
1521 format_string="{{.Repository}}\\t{{.Tag}}"
1522 echo -e "Application\tRepository\tTag" > $docker_tmp_file
1523
1524 for imagename in $APP_SHORT_NAMES; do
1525 __check_included_image $imagename
1526 if [ $? -eq 0 ]; then
1527 # Only print image data if image repo is null, or if image repo is set and image is local
1528 __check_image_local_build $imagename
1529 if [ $? -ne 0 ]; then
1530 # A function name is created from the app short name
1531 # for example app short name 'MR' -> produce the function
1532 # name __MR_imagebuild
1533 # This function is called and is expected to exist in the imported
1534 # file for the mr test functions
1535 # The resulting function impl shall build the imagee
1536 function_pointer="__"$imagename"_image_data"
1537 $function_pointer "$format_string" $docker_tmp_file
1538 fi
1539 fi
1540 done
1541
1542 column -t -s $'\t' $docker_tmp_file | indent1
1543
1544 echo ""
1545 fi
1546
BjornMagnussonXA483ee332021-04-08 01:35:24 +02001547 if [ $RUNMODE == "KUBE" ]; then
1548
1549 echo "================================================================================="
1550 echo "================================================================================="
1551
BjornMagnussonXAa69cd902021-04-22 23:46:10 +02001552 if [ -z "$IMAGE_REPO_ADR" ]; then
1553 echo -e $YELLOW" The image pull policy is set to 'Never' - assuming a local image repo is available for all images"$EYELLOW
1554 echo -e " This setting only works on single node clusters on the local machine"
1555 echo -e " It does not work with multi-node clusters or remote clusters. "
BjornMagnussonXA483ee332021-04-08 01:35:24 +02001556 export KUBE_IMAGE_PULL_POLICY="Never"
BjornMagnussonXA483ee332021-04-08 01:35:24 +02001557 else
BjornMagnussonXAa69cd902021-04-22 23:46:10 +02001558 echo -e $YELLOW" The image pull policy is set to 'Always'"$EYELLOW
1559 echo -e " This setting work on local clusters, multi-node clusters and remote cluster. "
1560 echo -e " Only locally built images are managed. Remote images are always pulled from remote repos"
1561 echo -e " Pulling remote snapshot or staging images my in some case result in pulling newer image versions outside the control of the test engine"
1562 export KUBE_IMAGE_PULL_POLICY="Always"
BjornMagnussonXA483ee332021-04-08 01:35:24 +02001563 fi
BjornMagnussonXAa69cd902021-04-22 23:46:10 +02001564 CLUSTER_IP=$(kubectl config view -o jsonpath={.clusters[0].cluster.server} | awk -F[/:] '{print $4}')
1565 echo -e $YELLOW" The cluster hostname/ip is: $CLUSTER_IP"$EYELLOW
BjornMagnussonXA483ee332021-04-08 01:35:24 +02001566
1567 echo "================================================================================="
1568 echo "================================================================================="
1569 echo ""
1570 fi
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +01001571
1572 echo -e $BOLD"======================================================="$EBOLD
1573 echo -e $BOLD"== Common test setup completed - test script begins =="$EBOLD
1574 echo -e $BOLD"======================================================="$EBOLD
1575 echo ""
1576
BjornMagnussonXA6fc58fd2021-11-18 08:19:45 +01001577 LOG_STAT_ARGS=""
1578
BjornMagnussonXA663566c2021-11-08 10:25:07 +01001579 for imagename in $APP_SHORT_NAMES; do
1580 __check_included_image $imagename
1581 retcode_i=$?
1582 __check_prestarted_image $imagename
1583 retcode_p=$?
1584 if [ $retcode_i -eq 0 ] || [ $retcode_p -eq 0 ]; then
1585 # A function name is created from the app short name
1586 # for example app short name 'RICMSIM' -> produce the function
1587 # name __RICSIM__initial_setup
1588 # This function is called and is expected to exist in the imported
1589 # file for the ricsim test functions
1590 # The resulting function impl shall perform initial setup of port, host etc
1591
1592 function_pointer="__"$imagename"_initial_setup"
1593 $function_pointer
BjornMagnussonXA6fc58fd2021-11-18 08:19:45 +01001594
1595 function_pointer="__"$imagename"_statisics_setup"
1596 LOG_STAT_ARGS=$LOG_STAT_ARGS" "$($function_pointer)
BjornMagnussonXA663566c2021-11-08 10:25:07 +01001597 fi
1598 done
1599
BjornMagnussonXA6fc58fd2021-11-18 08:19:45 +01001600 if [ $COLLECT_RUNTIME_STATS -eq 1 ]; then
1601 ../common/genstat.sh $RUNMODE $SECONDS $TESTLOGS/$ATC/stat_data.csv $LOG_STAT_ARGS &
BjornMagnussonXA0730e0f2021-12-29 17:13:23 +01001602 COLLECT_RUNTIME_STATS_PID=$!
BjornMagnussonXA6fc58fd2021-11-18 08:19:45 +01001603 fi
1604
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +01001605}
YongchaoWu9a84f512019-12-16 22:54:11 +01001606
BjornMagnussonXA80a92002020-03-19 14:31:06 +01001607# Function to print the test result, shall be the last cmd in a test script
1608# args: -
1609# (Function for test scripts)
1610print_result() {
YongchaoWu9a84f512019-12-16 22:54:11 +01001611
BjornMagnussonXA80a92002020-03-19 14:31:06 +01001612 TCTEST_END=$SECONDS
1613 duration=$((TCTEST_END-TCTEST_START))
YongchaoWu9a84f512019-12-16 22:54:11 +01001614
BjornMagnussonXA80a92002020-03-19 14:31:06 +01001615 echo "-------------------------------------------------------------------------------------------------"
1616 echo "------------------------------------- Test case: "$ATC
1617 echo "------------------------------------- Ended: "$(date)
1618 echo "-------------------------------------------------------------------------------------------------"
1619 echo "-- Description: "$TC_ONELINE_DESCR
1620 echo "-- Execution time: " $duration " seconds"
BjornMagnussonXA2791e082020-11-12 00:52:08 +01001621 echo "-- Used env file: "$TEST_ENV_VAR_FILE
BjornMagnussonXA80a92002020-03-19 14:31:06 +01001622 echo "-------------------------------------------------------------------------------------------------"
1623 echo "------------------------------------- RESULTS"
YongchaoWu4e489b02020-02-24 09:18:16 +01001624 echo ""
YongchaoWu4e489b02020-02-24 09:18:16 +01001625
YongchaoWu21f17bb2020-03-05 12:44:08 +01001626
BjornMagnussonXAbbd2e9d2020-05-27 21:24:06 +02001627 if [ $RES_DEVIATION -gt 0 ]; then
1628 echo "Test case deviations"
1629 echo "===================================="
1630 cat $DEVIATION_FILE
1631 fi
1632 echo ""
1633 echo "Timer measurement in the test script"
1634 echo "===================================="
1635 column -t -s $'\t' $TIMER_MEASUREMENTS
BjornMagnussonXA6fc58fd2021-11-18 08:19:45 +01001636 if [ $RES_PASS != $RES_TEST ]; then
BjornMagnussonXA79e37002021-11-22 13:36:04 +01001637 echo -e $RED"Measurement may not be reliable when there are failed test - failures may cause long measurement values due to timeouts etc."$ERED
BjornMagnussonXA6fc58fd2021-11-18 08:19:45 +01001638 fi
BjornMagnussonXAbbd2e9d2020-05-27 21:24:06 +02001639 echo ""
1640
BjornMagnussonXA6fc58fd2021-11-18 08:19:45 +01001641 if [ $COLLECT_RUNTIME_STATS -eq 1 ]; then
1642 echo "Runtime statistics collected in file: "$TESTLOGS/$ATC/stat_data.csv
1643 echo ""
1644 fi
1645
BjornMagnussonXA80a92002020-03-19 14:31:06 +01001646 total=$((RES_PASS+RES_FAIL))
1647 if [ $RES_TEST -eq 0 ]; then
1648 echo -e "\033[1mNo tests seem to have been executed. Check the script....\033[0m"
1649 echo -e "\033[31m\033[1m ___ ___ ___ ___ ___ _____ ___ _ ___ _ _ _ ___ ___ \033[0m"
1650 echo -e "\033[31m\033[1m/ __|/ __| _ \_ _| _ \_ _| | __/_\ |_ _| | | | | | _ \ __|\033[0m"
1651 echo -e "\033[31m\033[1m\__ \ (__| /| || _/ | | | _/ _ \ | || |_| |_| | / _| \033[0m"
1652 echo -e "\033[31m\033[1m|___/\___|_|_\___|_| |_| |_/_/ \_\___|____\___/|_|_\___|\033[0m"
1653 elif [ $total != $RES_TEST ]; then
1654 echo -e "\033[1mTotal number of tests does not match the sum of passed and failed tests. Check the script....\033[0m"
1655 echo -e "\033[31m\033[1m ___ ___ ___ ___ ___ _____ ___ _ ___ _ _ _ ___ ___ \033[0m"
1656 echo -e "\033[31m\033[1m/ __|/ __| _ \_ _| _ \_ _| | __/_\ |_ _| | | | | | _ \ __|\033[0m"
1657 echo -e "\033[31m\033[1m\__ \ (__| /| || _/ | | | _/ _ \ | || |_| |_| | / _| \033[0m"
1658 echo -e "\033[31m\033[1m|___/\___|_|_\___|_| |_| |_/_/ \_\___|____\___/|_|_\___|\033[0m"
1659 elif [ $RES_CONF_FAIL -ne 0 ]; then
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +01001660 echo -e "\033[1mOne or more configurations has failed. Check the script log....\033[0m"
BjornMagnussonXA80a92002020-03-19 14:31:06 +01001661 echo -e "\033[31m\033[1m ___ ___ ___ ___ ___ _____ ___ _ ___ _ _ _ ___ ___ \033[0m"
1662 echo -e "\033[31m\033[1m/ __|/ __| _ \_ _| _ \_ _| | __/_\ |_ _| | | | | | _ \ __|\033[0m"
1663 echo -e "\033[31m\033[1m\__ \ (__| /| || _/ | | | _/ _ \ | || |_| |_| | / _| \033[0m"
1664 echo -e "\033[31m\033[1m|___/\___|_|_\___|_| |_| |_/_/ \_\___|____\___/|_|_\___|\033[0m"
1665 elif [ $RES_PASS = $RES_TEST ]; then
1666 echo -e "All tests \033[32m\033[1mPASS\033[0m"
1667 echo -e "\033[32m\033[1m ___ _ ___ ___ \033[0m"
1668 echo -e "\033[32m\033[1m | _ \/_\ / __/ __| \033[0m"
1669 echo -e "\033[32m\033[1m | _/ _ \\__ \__ \\ \033[0m"
1670 echo -e "\033[32m\033[1m |_|/_/ \_\___/___/ \033[0m"
1671 echo ""
YongchaoWu21f17bb2020-03-05 12:44:08 +01001672
BjornMagnussonXA80a92002020-03-19 14:31:06 +01001673 # Update test suite counter
1674 if [ -f .tmp_tcsuite_pass_ctr ]; then
1675 tmpval=$(< .tmp_tcsuite_pass_ctr)
1676 ((tmpval++))
1677 echo $tmpval > .tmp_tcsuite_pass_ctr
1678 fi
1679 if [ -f .tmp_tcsuite_pass ]; then
1680 echo " - "$ATC " -- "$TC_ONELINE_DESCR" Execution time: "$duration" seconds" >> .tmp_tcsuite_pass
1681 fi
BjornMagnussonXA048aaa12020-06-04 07:48:37 +02001682 #Create file with OK exit code
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +01001683 echo "0" > "$AUTOTEST_HOME/.result$ATC.txt"
BjornMagnussonXA80a92002020-03-19 14:31:06 +01001684 else
1685 echo -e "One or more tests with status \033[31m\033[1mFAIL\033[0m "
1686 echo -e "\033[31m\033[1m ___ _ ___ _ \033[0m"
1687 echo -e "\033[31m\033[1m | __/_\ |_ _| | \033[0m"
1688 echo -e "\033[31m\033[1m | _/ _ \ | || |__ \033[0m"
1689 echo -e "\033[31m\033[1m |_/_/ \_\___|____|\033[0m"
1690 echo ""
1691 # Update test suite counter
1692 if [ -f .tmp_tcsuite_fail_ctr ]; then
1693 tmpval=$(< .tmp_tcsuite_fail_ctr)
1694 ((tmpval++))
1695 echo $tmpval > .tmp_tcsuite_fail_ctr
1696 fi
1697 if [ -f .tmp_tcsuite_fail ]; then
1698 echo " - "$ATC " -- "$TC_ONELINE_DESCR" Execution time: "$duration" seconds" >> .tmp_tcsuite_fail
1699 fi
YongchaoWu21f17bb2020-03-05 12:44:08 +01001700 fi
YongchaoWu21f17bb2020-03-05 12:44:08 +01001701
BjornMagnussonXA80a92002020-03-19 14:31:06 +01001702 echo "++++ Number of tests: "$RES_TEST
1703 echo "++++ Number of passed tests: "$RES_PASS
1704 echo "++++ Number of failed tests: "$RES_FAIL
YongchaoWu4e489b02020-02-24 09:18:16 +01001705 echo ""
BjornMagnussonXA80a92002020-03-19 14:31:06 +01001706 echo "++++ Number of failed configs: "$RES_CONF_FAIL
BjornMagnussonXA70e878f2020-05-11 14:11:30 +02001707 echo ""
1708 echo "++++ Number of test case deviations: "$RES_DEVIATION
1709 echo ""
BjornMagnussonXA80a92002020-03-19 14:31:06 +01001710 echo "------------------------------------- Test case complete ---------------------------------"
1711 echo "-------------------------------------------------------------------------------------------------"
YongchaoWu9a84f512019-12-16 22:54:11 +01001712 echo ""
1713}
1714
BjornMagnussonXA80a92002020-03-19 14:31:06 +01001715#####################################################################
1716###### Functions for start, configuring, stoping, cleaning etc ######
1717#####################################################################
YongchaoWu21f17bb2020-03-05 12:44:08 +01001718
BjornMagnussonXA70e878f2020-05-11 14:11:30 +02001719# Start timer for time measurement
BjornMagnussonXA79e37002021-11-22 13:36:04 +01001720# args: <timer message to print> - timer value and message will be printed both on screen
1721# and in the timer measurement report - if at least one "print_timer is called"
BjornMagnussonXA70e878f2020-05-11 14:11:30 +02001722start_timer() {
1723 echo -e $BOLD"INFO(${BASH_LINENO[0]}): "${FUNCNAME[0]}"," $@ $EBOLD
BjornMagnussonXA79e37002021-11-22 13:36:04 +01001724 TC_TIMER_STARTTIME=$SECONDS
1725 TC_TIMER_TIMER_TEXT="${@:1}"
1726 if [ $# -ne 1 ]; then
1727 __print_err "need 1 arg, <timer message to print>" $@
1728 TC_TIMER_TIMER_TEXT=${FUNCNAME[0]}":"${BASH_LINENO[0]}
1729 echo " Assigning timer name: "$TC_TIMER_TIMER_TEXT
1730 fi
1731 TC_TIMER_CURRENT_FAILS=$(($RES_FAIL+$RES_CONF_FAIL))
BjornMagnussonXAa69cd902021-04-22 23:46:10 +02001732 echo " Timer started: $(date)"
BjornMagnussonXA70e878f2020-05-11 14:11:30 +02001733}
1734
BjornMagnussonXA79e37002021-11-22 13:36:04 +01001735# Print the running timer the value of the time (in seconds)
1736# Timer value and message will be printed both on screen and in the timer measurement report
BjornMagnussonXA70e878f2020-05-11 14:11:30 +02001737print_timer() {
BjornMagnussonXA79e37002021-11-22 13:36:04 +01001738 echo -e $BOLD"INFO(${BASH_LINENO[0]}): "${FUNCNAME[0]}"," $TC_TIMER_TIMER_TEXT $EBOLD
1739 if [ -z "$TC_TIMER_STARTTIME" ]; then
1740 __print_err "timer not started" $@
1741 return 1
BjornMagnussonXA70e878f2020-05-11 14:11:30 +02001742 fi
BjornMagnussonXA79e37002021-11-22 13:36:04 +01001743 duration=$(($SECONDS-$TC_TIMER_STARTTIME))
BjornMagnussonXA70e878f2020-05-11 14:11:30 +02001744 if [ $duration -eq 0 ]; then
1745 duration="<1 second"
1746 else
1747 duration=$duration" seconds"
1748 fi
1749 echo " Timer duration :" $duration
BjornMagnussonXA79e37002021-11-22 13:36:04 +01001750 res="-"
1751 if [ $(($RES_FAIL+$RES_CONF_FAIL)) -ne $TC_TIMER_CURRENT_FAILS ]; then
1752 res="Failures occured during test - timer not reliabled"
1753 fi
BjornMagnussonXA70e878f2020-05-11 14:11:30 +02001754
BjornMagnussonXA79e37002021-11-22 13:36:04 +01001755 echo -e "$TC_TIMER_TIMER_TEXT \t $duration \t $res" >> $TIMER_MEASUREMENTS
BjornMagnussonXA70e878f2020-05-11 14:11:30 +02001756}
1757
BjornMagnussonXA70e878f2020-05-11 14:11:30 +02001758# Print info about a deviations from intended tests
1759# Each deviation counted is also printed in the testreport
1760# args <deviation message to print>
1761deviation() {
1762 echo -e $BOLD"DEVIATION(${BASH_LINENO[0]}): "${FUNCNAME[0]} $EBOLD
1763 if [ $# -lt 1 ]; then
1764 ((RES_CONF_FAIL++))
1765 __print_err "need 1 or more args, <deviation message to print>" $@
1766 exit 1
1767 fi
1768 ((RES_DEVIATION++))
1769 echo -e $BOLD$YELLOW" Test case deviation: ${@:1}"$EYELLOW$EBOLD
1770 echo "Line: ${BASH_LINENO[0]} - ${@:1}" >> $DEVIATION_FILE
BjornMagnussonXAfec823b2021-08-03 14:14:05 +02001771 __print_current_stats
BjornMagnussonXA70e878f2020-05-11 14:11:30 +02001772 echo ""
1773}
YongchaoWu21f17bb2020-03-05 12:44:08 +01001774
BjornMagnussonXA048aaa12020-06-04 07:48:37 +02001775# Stop at first FAIL test case and take all logs - only for debugging/trouble shooting
1776__check_stop_at_error() {
1777 if [ $STOP_AT_ERROR -eq 1 ]; then
1778 echo -e $RED"Test script configured to stop at first FAIL, taking all logs and stops"$ERED
1779 store_logs "STOP_AT_ERROR"
1780 exit 1
1781 fi
1782 return 0
1783}
1784
BjornMagnussonXA80a92002020-03-19 14:31:06 +01001785# Stop and remove all containers
1786# args: -
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +01001787# (Not for test scripts)
1788__clean_containers() {
BjornMagnussonXA80a92002020-03-19 14:31:06 +01001789
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +01001790 echo -e $BOLD"Docker clean and stopping and removing all running containers, by container name"$EBOLD
BjornMagnussonXA80a92002020-03-19 14:31:06 +01001791
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +01001792 #Create empty file
1793 running_contr_file="./tmp/running_contr.txt"
1794 > $running_contr_file
BjornMagnussonXA80a92002020-03-19 14:31:06 +01001795
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +01001796 # Get list of all containers started by the test script
1797 for imagename in $APP_SHORT_NAMES; do
1798 docker ps -a --filter "label=nrttest_app=$imagename" --filter "network=$DOCKER_SIM_NWNAME" --format ' {{.Label "nrttest_dp"}}\n{{.Label "nrttest_app"}}\n{{.Names}}' >> $running_contr_file
BjornMagnussonXA80a92002020-03-19 14:31:06 +01001799 done
BjornMagnussonXAecf34532021-11-24 08:25:15 +01001800 running_contr_file_empty="No docker containers running, started by previous test execution"
1801 if [ -s $running_contr_file ]; then
1802 running_contr_file_empty=""
1803 fi
BjornMagnussonXA80a92002020-03-19 14:31:06 +01001804
BjornMagnussonXA663566c2021-11-08 10:25:07 +01001805 # Kill all containers started by the test env - to speed up shut down
1806 docker kill $(docker ps -a --filter "label=nrttest_app" --format '{{.Names}}') &> /dev/null
1807
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +01001808 tab_heading1="App display name"
1809 tab_heading2="App short name"
1810 tab_heading3="Container name"
1811
1812 tab_heading1_len=${#tab_heading1}
1813 tab_heading2_len=${#tab_heading2}
1814 tab_heading3_len=${#tab_heading3}
1815 cntr=0
1816 #Calc field lengths of each item in the list of containers
1817 while read p; do
1818 if (( $cntr % 3 == 0 ));then
1819 if [ ${#p} -gt $tab_heading1_len ]; then
1820 tab_heading1_len=${#p}
1821 fi
BjornMagnussonXAbf3700b2020-10-05 08:39:40 +02001822 fi
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +01001823 if (( $cntr % 3 == 1));then
1824 if [ ${#p} -gt $tab_heading2_len ]; then
1825 tab_heading2_len=${#p}
1826 fi
1827 fi
1828 if (( $cntr % 3 == 2));then
1829 if [ ${#p} -gt $tab_heading3_len ]; then
1830 tab_heading3_len=${#p}
1831 fi
1832 fi
1833 let cntr=cntr+1
1834 done <$running_contr_file
1835
1836 let tab_heading1_len=tab_heading1_len+2
1837 while (( ${#tab_heading1} < $tab_heading1_len)); do
1838 tab_heading1="$tab_heading1"" "
BjornMagnussonXA80a92002020-03-19 14:31:06 +01001839 done
1840
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +01001841 let tab_heading2_len=tab_heading2_len+2
1842 while (( ${#tab_heading2} < $tab_heading2_len)); do
1843 tab_heading2="$tab_heading2"" "
1844 done
1845
1846 let tab_heading3_len=tab_heading3_len+2
1847 while (( ${#tab_heading3} < $tab_heading3_len)); do
1848 tab_heading3="$tab_heading3"" "
1849 done
1850
BjornMagnussonXAecf34532021-11-24 08:25:15 +01001851 if [ ! -z "$running_contr_file_empty" ]; then
1852 echo $running_contr_file_empty | indent1
1853 else
1854 echo " $tab_heading1$tab_heading2$tab_heading3"" Actions"
1855 cntr=0
1856 while read p; do
1857 if (( $cntr % 3 == 0 ));then
1858 row=""
1859 heading=$p
1860 heading_len=$tab_heading1_len
1861 fi
1862 if (( $cntr % 3 == 1));then
1863 heading=$p
1864 heading_len=$tab_heading2_len
1865 fi
1866 if (( $cntr % 3 == 2));then
1867 contr=$p
1868 heading=$p
1869 heading_len=$tab_heading3_len
1870 fi
1871 while (( ${#heading} < $heading_len)); do
1872 heading="$heading"" "
1873 done
1874 row=$row$heading
1875 if (( $cntr % 3 == 2));then
1876 echo -ne $row$SAMELINE
1877 echo -ne " $row ${GREEN}stopping...${EGREEN}${SAMELINE}"
1878 docker stop $(docker ps -qa --filter name=${contr} --filter network=$DOCKER_SIM_NWNAME) &> /dev/null
1879 echo -ne " $row ${GREEN}stopped removing...${EGREEN}${SAMELINE}"
1880 docker rm --force $(docker ps -qa --filter name=${contr} --filter network=$DOCKER_SIM_NWNAME) &> /dev/null
1881 echo -e " $row ${GREEN}stopped removed ${EGREEN}"
1882 fi
1883 let cntr=cntr+1
1884 done <$running_contr_file
1885 fi
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +01001886
YongchaoWu9a84f512019-12-16 22:54:11 +01001887 echo ""
BjornMagnussonXAbbd2e9d2020-05-27 21:24:06 +02001888
1889 echo -e $BOLD" Removing docker network"$EBOLD
1890 TMP=$(docker network ls -q --filter name=$DOCKER_SIM_NWNAME)
1891 if [ "$TMP" == $DOCKER_SIM_NWNAME ]; then
BjornMagnussonXAbf3700b2020-10-05 08:39:40 +02001892 docker network rm $DOCKER_SIM_NWNAME | indent2
BjornMagnussonXAbbd2e9d2020-05-27 21:24:06 +02001893 if [ $? -ne 0 ]; then
1894 echo -e $RED" Cannot remove docker network. Manually remove or disconnect containers from $DOCKER_SIM_NWNAME"$ERED
1895 exit 1
1896 fi
1897 fi
BjornMagnussonXAbf3700b2020-10-05 08:39:40 +02001898 echo -e "$GREEN Done$EGREEN"
BjornMagnussonXAbbd2e9d2020-05-27 21:24:06 +02001899
1900 echo -e $BOLD" Removing all unused docker neworks"$EBOLD
BjornMagnussonXAbf3700b2020-10-05 08:39:40 +02001901 docker network prune --force | indent2
1902 echo -e "$GREEN Done$EGREEN"
BjornMagnussonXAbbd2e9d2020-05-27 21:24:06 +02001903
1904 echo -e $BOLD" Removing all unused docker volumes"$EBOLD
BjornMagnussonXAbf3700b2020-10-05 08:39:40 +02001905 docker volume prune --force | indent2
1906 echo -e "$GREEN Done$EGREEN"
BjornMagnussonXAbbd2e9d2020-05-27 21:24:06 +02001907
1908 echo -e $BOLD" Removing all dangling/untagged docker images"$EBOLD
1909 docker rmi --force $(docker images -q -f dangling=true) &> /dev/null
BjornMagnussonXAbf3700b2020-10-05 08:39:40 +02001910 echo -e "$GREEN Done$EGREEN"
1911 echo ""
BjornMagnussonXAad047782020-06-08 15:54:11 +02001912
1913 CONTRS=$(docker ps | awk '$1 != "CONTAINER" { n++ }; END { print n+0 }')
1914 if [ $? -eq 0 ]; then
1915 if [ $CONTRS -ne 0 ]; then
1916 echo -e $RED"Containers running, may cause distubance to the test case"$ERED
BjornMagnussonXA7b36db62020-11-23 10:57:57 +01001917 docker ps -a | indent1
1918 echo ""
BjornMagnussonXAad047782020-06-08 15:54:11 +02001919 fi
1920 fi
YongchaoWu9a84f512019-12-16 22:54:11 +01001921}
1922
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +01001923###################################
1924### Functions for kube management
1925###################################
1926
BjornMagnussonXA6f9c2b22021-06-11 16:31:40 +02001927# Get resource type for scaling
1928# args: <resource-name> <namespace>
1929__kube_get_resource_type() {
1930 kubectl get deployment $1 -n $2 1> /dev/null 2> ./tmp/kubeerr
1931 if [ $? -eq 0 ]; then
1932 echo "deployment"
1933 return 0
1934 fi
1935 kubectl get sts $1 -n $2 1> /dev/null 2> ./tmp/kubeerr
1936 if [ $? -eq 0 ]; then
1937 echo "sts"
1938 return 0
1939 fi
1940 echo "unknown-resource-type"
1941 return 1
1942}
1943
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +01001944# Scale a kube resource to a specific count
1945# args: <resource-type> <resource-name> <namespace> <target-count>
1946# (Not for test scripts)
1947__kube_scale() {
1948 echo -ne " Setting $1 $2 replicas=$4 in namespace $3"$SAMELINE
1949 kubectl scale $1 $2 -n $3 --replicas=$4 1> /dev/null 2> ./tmp/kubeerr
1950 if [ $? -ne 0 ]; then
1951 echo -e " Setting $1 $2 replicas=$4 in namespace $3 $RED Failed $ERED"
1952 ((RES_CONF_FAIL++))
1953 echo " Message: $(<./tmp/kubeerr)"
1954 return 1
1955 else
1956 echo -e " Setting $1 $2 replicas=$4 in namespace $3 $GREEN OK $EGREEN"
1957 fi
1958
1959 TSTART=$SECONDS
1960
1961 for i in {1..500}; do
1962 count=$(kubectl get $1/$2 -n $3 -o jsonpath='{.status.replicas}' 2> /dev/null)
1963 retcode=$?
1964 if [ -z "$count" ]; then
1965 #No value is sometimes returned for some reason, in case the resource has replica 0
1966 count=0
1967 fi
1968 if [ $retcode -ne 0 ]; then
1969 echo -e "$RED Cannot fetch current replica count for $1 $2 in namespace $3 $ERED"
1970 ((RES_CONF_FAIL++))
1971 return 1
1972 fi
1973 #echo ""
1974 if [ $count -ne $4 ]; then
1975 echo -ne " Waiting for $1 $2 replicas=$4 in namespace $3. Replicas=$count after $(($SECONDS-$TSTART)) seconds $SAMELINE"
1976 sleep $i
1977 else
1978 echo -e " Waiting for $1 $2 replicas=$4 in namespace $3. Replicas=$count after $(($SECONDS-$TSTART)) seconds"
1979 echo -e " Replicas=$4 after $(($SECONDS-$TSTART)) seconds $GREEN OK $EGREEN"
1980 echo ""
1981 return 0
1982 fi
1983 done
1984 echo ""
1985 echo -e "$RED Replica count did not reach target replicas=$4. Failed with replicas=$count $ERED"
1986 ((RES_CONF_FAIL++))
1987 return 0
1988}
1989
1990# Scale all kube resource sets to 0 in a namespace for resources having a certain lable and label-id
1991# This function does not wait for the resource to reach 0
1992# args: <namespace> <label-name> <label-id>
1993# (Not for test scripts)
1994__kube_scale_all_resources() {
1995 namespace=$1
1996 labelname=$2
1997 labelid=$3
1998 resources="deployment replicaset statefulset"
1999 for restype in $resources; do
2000 result=$(kubectl get $restype -n $namespace -o jsonpath='{.items[?(@.metadata.labels.'$labelname'=="'$labelid'")].metadata.name}')
2001 if [ $? -eq 0 ] && [ ! -z "$result" ]; then
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +01002002 for resid in $result; do
BjornMagnussonXA663566c2021-11-08 10:25:07 +01002003 echo -ne " Ordered caling $restype $resid in namespace $namespace with label $labelname=$labelid to 0"$SAMELINE
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +01002004 kubectl scale $restype $resid -n $namespace --replicas=0 1> /dev/null 2> ./tmp/kubeerr
BjornMagnussonXA663566c2021-11-08 10:25:07 +01002005 echo -e " Ordered scaling $restype $resid in namespace $namespace with label $labelname=$labelid to 0 $GREEN OK $EGREEN"
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +01002006 done
2007 fi
2008 done
2009}
2010
BjornMagnussonXA663566c2021-11-08 10:25:07 +01002011# Scale all kube resource sets to 0 in a namespace for resources having a certain lable and an optional label-id
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +01002012# This function do wait for the resource to reach 0
BjornMagnussonXA663566c2021-11-08 10:25:07 +01002013# args: <namespace> <label-name> [ <label-id> ]
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +01002014# (Not for test scripts)
2015__kube_scale_and_wait_all_resources() {
2016 namespace=$1
2017 labelname=$2
2018 labelid=$3
BjornMagnussonXA663566c2021-11-08 10:25:07 +01002019 if [ -z "$3" ]; then
2020 echo " Attempt to scale - deployment replicaset statefulset - in namespace $namespace with label $labelname"
2021 else
2022 echo " Attempt to scale - deployment replicaset statefulset - in namespace $namespace with label $labelname=$labelid"
2023 fi
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +01002024 resources="deployment replicaset statefulset"
2025 scaled_all=1
2026 while [ $scaled_all -ne 0 ]; do
2027 scaled_all=0
2028 for restype in $resources; do
BjornMagnussonXA663566c2021-11-08 10:25:07 +01002029 if [ -z "$3" ]; then
2030 result=$(kubectl get $restype -n $namespace -o jsonpath='{.items[?(@.metadata.labels.'$labelname')].metadata.name}')
2031 else
2032 result=$(kubectl get $restype -n $namespace -o jsonpath='{.items[?(@.metadata.labels.'$labelname'=="'$labelid'")].metadata.name}')
2033 fi
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +01002034 if [ $? -eq 0 ] && [ ! -z "$result" ]; then
2035 for resid in $result; do
BjornMagnussonXA663566c2021-11-08 10:25:07 +01002036 echo -e " Ordered scaling $restype $resid in namespace $namespace with label $labelname=$labelid to 0"
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +01002037 kubectl scale $restype $resid -n $namespace --replicas=0 1> /dev/null 2> ./tmp/kubeerr
2038 count=1
2039 T_START=$SECONDS
2040 while [ $count -ne 0 ]; do
2041 count=$(kubectl get $restype $resid -n $namespace -o jsonpath='{.status.replicas}' 2> /dev/null)
BjornMagnussonXA663566c2021-11-08 10:25:07 +01002042 echo -ne " Scaling $restype $resid in namespace $namespace with label $labelname=$labelid to 0, current count=$count"$SAMELINE
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +01002043 if [ $? -eq 0 ] && [ ! -z "$count" ]; then
2044 sleep 0.5
2045 else
2046 count=0
2047 fi
2048 duration=$(($SECONDS-$T_START))
2049 if [ $duration -gt 100 ]; then
2050 #Forcring count 0, to avoid hanging for failed scaling
2051 scaled_all=1
2052 count=0
2053 fi
2054 done
BjornMagnussonXA663566c2021-11-08 10:25:07 +01002055 echo -e " Scaled $restype $resid in namespace $namespace with label $labelname=$labelid to 0, current count=$count $GREEN OK $EGREEN"
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +01002056 done
2057 fi
2058 done
2059 done
2060}
2061
2062# Remove all kube resources in a namespace for resources having a certain label and label-id
2063# This function wait until the resources are gone. Scaling to 0 must have been ordered previously
2064# args: <namespace> <label-name> <label-id>
2065# (Not for test scripts)
2066__kube_delete_all_resources() {
2067 namespace=$1
2068 labelname=$2
2069 labelid=$3
BjornMagnussonXAe60d04e2021-12-27 13:38:01 +01002070 resources="deployments replicaset statefulset services pods configmaps persistentvolumeclaims persistentvolumes serviceaccounts clusterrolebindings"
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +01002071 deleted_resourcetypes=""
2072 for restype in $resources; do
BjornMagnussonXA663566c2021-11-08 10:25:07 +01002073 ns_flag="-n $namespace"
2074 ns_text="in namespace $namespace"
2075 if [ $restype == "persistentvolumes" ]; then
2076 ns_flag=""
2077 ns_text=""
2078 fi
BjornMagnussonXAe60d04e2021-12-27 13:38:01 +01002079 if [ $restype == "clusterrolebindings" ]; then
2080 ns_flag=""
2081 ns_text=""
2082 fi
BjornMagnussonXA663566c2021-11-08 10:25:07 +01002083 result=$(kubectl get $restype $ns_flag -o jsonpath='{.items[?(@.metadata.labels.'$labelname'=="'$labelid'")].metadata.name}')
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +01002084 if [ $? -eq 0 ] && [ ! -z "$result" ]; then
2085 deleted_resourcetypes=$deleted_resourcetypes" "$restype
2086 for resid in $result; do
2087 if [ $restype == "replicaset" ] || [ $restype == "statefulset" ]; then
2088 count=1
2089 while [ $count -ne 0 ]; do
BjornMagnussonXA663566c2021-11-08 10:25:07 +01002090 count=$(kubectl get $restype $resid $ns_flag -o jsonpath='{.status.replicas}' 2> /dev/null)
2091 echo -ne " Scaling $restype $resid $ns_text with label $labelname=$labelid to 0, current count=$count"$SAMELINE
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +01002092 if [ $? -eq 0 ] && [ ! -z "$count" ]; then
2093 sleep 0.5
2094 else
2095 count=0
2096 fi
2097 done
BjornMagnussonXA663566c2021-11-08 10:25:07 +01002098 echo -e " Scaled $restype $resid $ns_text with label $labelname=$labelid to 0, current count=$count $GREEN OK $EGREEN"
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +01002099 fi
BjornMagnussonXA663566c2021-11-08 10:25:07 +01002100 echo -ne " Deleting $restype $resid $ns_text with label $labelname=$labelid "$SAMELINE
BjornMagnussonXA79e37002021-11-22 13:36:04 +01002101 kubectl delete --grace-period=1 $restype $resid $ns_flag 1> /dev/null 2> ./tmp/kubeerr
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +01002102 if [ $? -eq 0 ]; then
BjornMagnussonXA663566c2021-11-08 10:25:07 +01002103 echo -e " Deleted $restype $resid $ns_text with label $labelname=$labelid $GREEN OK $EGREEN"
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +01002104 else
BjornMagnussonXA663566c2021-11-08 10:25:07 +01002105 echo -e " Deleted $restype $resid $ns_text with label $labelname=$labelid $GREEN Does not exist - OK $EGREEN"
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +01002106 fi
2107 #fi
2108 done
2109 fi
2110 done
2111 if [ ! -z "$deleted_resourcetypes" ]; then
2112 for restype in $deleted_resources; do
BjornMagnussonXA663566c2021-11-08 10:25:07 +01002113 ns_flag="-n $namespace"
2114 ns_text="in namespace $namespace"
2115 if [ $restype == "persistentvolumes" ]; then
2116 ns_flag=""
2117 ns_text=""
2118 fi
2119 echo -ne " Waiting for $restype $ns_text with label $labelname=$labelid to be deleted..."$SAMELINE
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +01002120 T_START=$SECONDS
2121 result="dummy"
2122 while [ ! -z "$result" ]; do
2123 sleep 0.5
BjornMagnussonXA663566c2021-11-08 10:25:07 +01002124 result=$(kubectl get $restype $ns_flag -o jsonpath='{.items[?(@.metadata.labels.'$labelname'=="'$labelid'")].metadata.name}')
2125 echo -ne " Waiting for $restype $ns_text with label $labelname=$labelid to be deleted...$(($SECONDS-$T_START)) seconds "$SAMELINE
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +01002126 if [ -z "$result" ]; then
BjornMagnussonXA663566c2021-11-08 10:25:07 +01002127 echo -e " Waiting for $restype $ns_text with label $labelname=$labelid to be deleted...$(($SECONDS-$T_START)) seconds $GREEN OK $EGREEN"
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +01002128 elif [ $(($SECONDS-$T_START)) -gt 300 ]; then
BjornMagnussonXA663566c2021-11-08 10:25:07 +01002129 echo -e " Waiting for $restype $ns_text with label $labelname=$labelid to be deleted...$(($SECONDS-$T_START)) seconds $RED Failed $ERED"
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +01002130 result=""
2131 fi
2132 done
2133 done
2134 fi
2135}
2136
2137# Creates a namespace if it does not exists
2138# args: <namespace>
2139# (Not for test scripts)
2140__kube_create_namespace() {
2141
2142 #Check if test namespace exists, if not create it
2143 kubectl get namespace $1 1> /dev/null 2> ./tmp/kubeerr
2144 if [ $? -ne 0 ]; then
2145 echo -ne " Creating namespace "$1 $SAMELINE
2146 kubectl create namespace $1 1> /dev/null 2> ./tmp/kubeerr
2147 if [ $? -ne 0 ]; then
2148 echo -e " Creating namespace $1 $RED$BOLD FAILED $EBOLD$ERED"
2149 ((RES_CONF_FAIL++))
2150 echo " Message: $(<./tmp/kubeerr)"
2151 return 1
2152 else
2153 echo -e " Creating namespace $1 $GREEN$BOLD OK $EBOLD$EGREEN"
2154 fi
2155 else
2156 echo -e " Creating namespace $1 $GREEN$BOLD Already exists, OK $EBOLD$EGREEN"
2157 fi
2158 return 0
2159}
2160
BjornMagnussonXAe60d04e2021-12-27 13:38:01 +01002161# Removes a namespace if it exists
2162# args: <namespace>
2163# (Not for test scripts)
2164__kube_delete_namespace() {
2165
2166 #Check if test namespace exists, if so remove it
2167 kubectl get namespace $1 1> /dev/null 2> ./tmp/kubeerr
2168 if [ $? -eq 0 ]; then
2169 echo -ne " Removing namespace "$1 $SAMELINE
2170 kubectl delete namespace $1 1> /dev/null 2> ./tmp/kubeerr
2171 if [ $? -ne 0 ]; then
2172 echo -e " Removing namespace $1 $RED$BOLD FAILED $EBOLD$ERED"
2173 ((RES_CONF_FAIL++))
2174 echo " Message: $(<./tmp/kubeerr)"
2175 return 1
2176 else
2177 echo -e " Removing namespace $1 $GREEN$BOLD OK $EBOLD$EGREEN"
2178 fi
2179 else
2180 echo -e " Namespace $1 $GREEN$BOLD does not exist, OK $EBOLD$EGREEN"
2181 fi
2182 return 0
2183}
2184
2185# Removes a namespace
2186# args: <namespace>
2187# (Not for test scripts)
2188clean_and_create_namespace() {
2189 __log_conf_start $@
2190
2191 if [ $# -ne 1 ]; then
2192 __print_err "<namespace>" $@
2193 return 1
2194 fi
2195 __kube_delete_namespace $1
2196 if [ $? -ne 0 ]; then
2197 return 1
2198 fi
2199 __kube_create_namespace $1
2200 if [ $? -ne 0 ]; then
2201 return 1
2202 fi
2203
2204}
2205
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +01002206# Find the host ip of an app (using the service resource)
2207# args: <app-name> <namespace>
2208# (Not for test scripts)
2209__kube_get_service_host() {
2210 if [ $# -ne 2 ]; then
2211 ((RES_CONF_FAIL++))
2212 __print_err "need 2 args, <app-name> <namespace>" $@
2213 exit 1
2214 fi
2215 for timeout in {1..60}; do
2216 host=$(kubectl get svc $1 -n $2 -o jsonpath='{.spec.clusterIP}')
2217 if [ $? -eq 0 ]; then
2218 if [ ! -z "$host" ]; then
2219 echo $host
2220 return 0
2221 fi
2222 fi
2223 sleep 0.5
2224 done
2225 ((RES_CONF_FAIL++))
2226 echo "host-not-found-fatal-error"
2227 return 1
2228}
2229
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +01002230# Find the named port to an app (using the service resource)
2231# args: <app-name> <namespace> <port-name>
2232# (Not for test scripts)
2233__kube_get_service_port() {
2234 if [ $# -ne 3 ]; then
2235 ((RES_CONF_FAIL++))
2236 __print_err "need 3 args, <app-name> <namespace> <port-name>" $@
2237 exit 1
2238 fi
2239
2240 for timeout in {1..60}; do
2241 port=$(kubectl get svc $1 -n $2 -o jsonpath='{...ports[?(@.name=="'$3'")].port}')
2242 if [ $? -eq 0 ]; then
2243 if [ ! -z "$port" ]; then
2244 echo $port
2245 return 0
2246 fi
2247 fi
2248 sleep 0.5
2249 done
2250 ((RES_CONF_FAIL++))
2251 echo "0"
2252 return 1
2253}
2254
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +01002255# Find the named node port to an app (using the service resource)
2256# args: <app-name> <namespace> <port-name>
2257# (Not for test scripts)
2258__kube_get_service_nodeport() {
2259 if [ $# -ne 3 ]; then
2260 ((RES_CONF_FAIL++))
2261 __print_err "need 3 args, <app-name> <namespace> <port-name>" $@
2262 exit 1
2263 fi
2264
2265 for timeout in {1..60}; do
2266 port=$(kubectl get svc $1 -n $2 -o jsonpath='{...ports[?(@.name=="'$3'")].nodePort}')
2267 if [ $? -eq 0 ]; then
2268 if [ ! -z "$port" ]; then
2269 echo $port
2270 return 0
2271 fi
2272 fi
2273 sleep 0.5
2274 done
2275 ((RES_CONF_FAIL++))
2276 echo "0"
2277 return 1
2278}
2279
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +01002280# Create a kube resource from a yaml template
2281# args: <resource-type> <resource-name> <template-yaml> <output-yaml>
2282# (Not for test scripts)
2283__kube_create_instance() {
2284 echo -ne " Creating $1 $2"$SAMELINE
2285 envsubst < $3 > $4
2286 kubectl apply -f $4 1> /dev/null 2> ./tmp/kubeerr
2287 if [ $? -ne 0 ]; then
2288 ((RES_CONF_FAIL++))
2289 echo -e " Creating $1 $2 $RED Failed $ERED"
2290 echo " Message: $(<./tmp/kubeerr)"
2291 return 1
2292 else
2293 echo -e " Creating $1 $2 $GREEN OK $EGREEN"
2294 fi
2295}
2296
2297# Function to create a configmap in kubernetes
2298# args: <configmap-name> <namespace> <labelname> <labelid> <path-to-data-file> <path-to-output-yaml>
2299# (Not for test scripts)
2300__kube_create_configmap() {
2301 echo -ne " Creating configmap $1 "$SAMELINE
2302 envsubst < $5 > $5"_tmp"
2303 cp $5"_tmp" $5 #Need to copy back to orig file name since create configmap neeed the original file name
2304 kubectl create configmap $1 -n $2 --from-file=$5 --dry-run=client -o yaml > $6
2305 if [ $? -ne 0 ]; then
2306 echo -e " Creating configmap $1 $RED Failed $ERED"
2307 ((RES_CONF_FAIL++))
2308 return 1
2309 fi
2310
2311 kubectl apply -f $6 1> /dev/null 2> ./tmp/kubeerr
2312 if [ $? -ne 0 ]; then
2313 echo -e " Creating configmap $1 $RED Apply failed $ERED"
2314 echo " Message: $(<./tmp/kubeerr)"
2315 ((RES_CONF_FAIL++))
2316 return 1
2317 fi
2318 kubectl label configmap $1 -n $2 $3"="$4 --overwrite 1> /dev/null 2> ./tmp/kubeerr
2319 if [ $? -ne 0 ]; then
2320 echo -e " Creating configmap $1 $RED Labeling failed $ERED"
2321 echo " Message: $(<./tmp/kubeerr)"
2322 ((RES_CONF_FAIL++))
2323 return 1
2324 fi
2325 # Log the resulting map
2326 kubectl get configmap $1 -n $2 -o yaml > $6
2327
2328 echo -e " Creating configmap $1 $GREEN OK $EGREEN"
2329 return 0
2330}
2331
BjornMagnussonXAa69cd902021-04-22 23:46:10 +02002332# This function runs a kubectl cmd where a single output value is expected, for example get ip with jsonpath filter.
2333# The function retries up to the timeout given in the cmd flag '--cluster-timeout'
BjornMagnussonXAa5491572021-05-04 09:21:24 +02002334# args: <full kubectl cmd with parameters>
BjornMagnussonXAa69cd902021-04-22 23:46:10 +02002335# (Not for test scripts)
2336__kube_cmd_with_timeout() {
2337 TS_TMP=$(($SECONDS+$CLUSTER_TIME_OUT))
2338
2339 while true; do
2340 kube_cmd_result=$($@)
2341 if [ $? -ne 0 ]; then
2342 kube_cmd_result=""
2343 fi
2344 if [ $SECONDS -ge $TS_TMP ] || [ ! -z "$kube_cmd_result" ] ; then
2345 echo $kube_cmd_result
2346 return 0
2347 fi
2348 sleep 1
2349 done
2350}
2351
BjornMagnussonXAa5491572021-05-04 09:21:24 +02002352# This function starts a pod that cleans a the contents of a path mounted as a pvc
2353# After this action the pod should terminate
2354# This should only be executed when the pod owning the pvc is not running
2355# args: <appname> <namespace> <pvc-name> <path-to remove>
2356# (Not for test scripts)
2357__kube_clean_pvc() {
2358
BjornMagnussonXA663566c2021-11-08 10:25:07 +01002359 #using env vars setup in pvccleaner_api_functions.sh
2360
BjornMagnussonXAa5491572021-05-04 09:21:24 +02002361 export PVC_CLEANER_NAMESPACE=$2
2362 export PVC_CLEANER_CLAIMNAME=$3
2363 export PVC_CLEANER_RM_PATH=$4
BjornMagnussonXAdfdca182021-12-10 10:43:32 +01002364 export PVC_CLEANER_APP_NAME
BjornMagnussonXA663566c2021-11-08 10:25:07 +01002365 input_yaml=$SIM_GROUP"/"$PVC_CLEANER_COMPOSE_DIR"/"pvc-cleaner.yaml
BjornMagnussonXAa5491572021-05-04 09:21:24 +02002366 output_yaml=$PWD/tmp/$2-pvc-cleaner.yaml
2367
2368 envsubst < $input_yaml > $output_yaml
2369
BjornMagnussonXA6f9c2b22021-06-11 16:31:40 +02002370 kubectl delete -f $output_yaml 1> /dev/null 2> /dev/null # Delete the previous terminated pod - if existing
BjornMagnussonXAa5491572021-05-04 09:21:24 +02002371
BjornMagnussonXA663566c2021-11-08 10:25:07 +01002372 __kube_create_instance pod $PVC_CLEANER_APP_NAME $input_yaml $output_yaml
BjornMagnussonXAa5491572021-05-04 09:21:24 +02002373 if [ $? -ne 0 ]; then
2374 echo $YELLOW" Could not clean pvc for app: $1 - persistent storage not clean - tests may not work"
2375 return 1
2376 fi
2377
2378 term_ts=$(($SECONDS+30))
2379 while [ $term_ts -gt $SECONDS ]; do
2380 pod_status=$(kubectl get pod pvc-cleaner -n $PVC_CLEANER_NAMESPACE --no-headers -o custom-columns=":status.phase")
2381 if [ "$pod_status" == "Succeeded" ]; then
2382 return 0
2383 fi
2384 done
2385 return 1
2386}
2387
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +01002388# This function scales or deletes all resources for app selected by the testcase.
2389# args: -
2390# (Not for test scripts)
2391__clean_kube() {
BjornMagnussonXA663566c2021-11-08 10:25:07 +01002392 echo -e $BOLD"Initialize kube pods/statefulsets/replicaset to initial state"$EBOLD
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +01002393
2394 # Scale prestarted or managed apps
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +01002395 for imagename in $APP_SHORT_NAMES; do
BjornMagnussonXAa5491572021-05-04 09:21:24 +02002396 # A function name is created from the app short name
2397 # for example app short name 'RICMSIM' -> produce the function
2398 # name __RICSIM_kube_scale_zero or __RICSIM_kube_scale_zero_and_wait
2399 # This function is called and is expected to exist in the imported
2400 # file for the ricsim test functions
2401 # The resulting function impl shall scale the resources to 0
2402 # For prestarted apps, the function waits until the resources are 0
2403 # For included (not prestated) apps, the scaling is just ordered
2404 __check_prestarted_image $imagename
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +01002405 if [ $? -eq 0 ]; then
BjornMagnussonXAa5491572021-05-04 09:21:24 +02002406 function_pointer="__"$imagename"_kube_scale_zero_and_wait"
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +01002407 echo -e " Scaling all kube resources for app $BOLD $imagename $EBOLD to 0"
2408 $function_pointer
BjornMagnussonXAa5491572021-05-04 09:21:24 +02002409 else
2410 __check_included_image $imagename
2411 if [ $? -eq 0 ]; then
2412 function_pointer="__"$imagename"_kube_scale_zero"
2413 echo -e " Scaling all kube resources for app $BOLD $imagename $EBOLD to 0"
2414 $function_pointer
2415 fi
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +01002416 fi
2417 done
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +01002418
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +01002419 # Delete managed apps
2420 for imagename in $APP_SHORT_NAMES; do
2421 __check_included_image $imagename
2422 if [ $? -eq 0 ]; then
2423 __check_prestarted_image $imagename
2424 if [ $? -ne 0 ]; then
2425 # A function name is created from the app short name
2426 # for example app short name 'RICMSIM' -> produce the function
2427 # name __RICSIM__kube_delete_all
2428 # This function is called and is expected to exist in the imported
2429 # file for the ricsim test functions
2430 # The resulting function impl shall delete all its resources
2431 function_pointer="__"$imagename"_kube_delete_all"
2432 echo -e " Deleting all kube resources for app $BOLD $imagename $EBOLD"
2433 $function_pointer
2434 fi
2435 fi
2436 done
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +01002437
2438 echo ""
2439}
2440
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +01002441# Function stop and remove all containers (docker) and services/deployments etc(kube)
2442# args: -
2443# Function for test script
2444clean_environment() {
2445 if [ $RUNMODE == "KUBE" ]; then
2446 __clean_kube
BjornMagnussonXA663566c2021-11-08 10:25:07 +01002447 if [ $PRE_CLEAN -eq 1 ]; then
BjornMagnussonXA79e37002021-11-22 13:36:04 +01002448 echo " Cleaning docker resouces to free up resources, may take time..."
BjornMagnussonXAe60d04e2021-12-27 13:38:01 +01002449 ../common/clean_docker.sh 2>&1 /dev/null
BjornMagnussonXA6fc58fd2021-11-18 08:19:45 +01002450 echo ""
BjornMagnussonXA663566c2021-11-08 10:25:07 +01002451 fi
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +01002452 else
2453 __clean_containers
BjornMagnussonXA663566c2021-11-08 10:25:07 +01002454 if [ $PRE_CLEAN -eq 1 ]; then
BjornMagnussonXA6fc58fd2021-11-18 08:19:45 +01002455 echo " Cleaning kubernetes resouces to free up resources, may take time..."
BjornMagnussonXAe60d04e2021-12-27 13:38:01 +01002456 ../common/clean_kube.sh 2>&1 /dev/null
BjornMagnussonXA6fc58fd2021-11-18 08:19:45 +01002457 echo ""
BjornMagnussonXA663566c2021-11-08 10:25:07 +01002458 fi
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +01002459 fi
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +01002460}
2461
2462# Function stop and remove all containers (docker) and services/deployments etc(kube) in the end of the test script, if the arg 'auto-clean' is given at test script start
BjornMagnussonXA80a92002020-03-19 14:31:06 +01002463# args: -
2464# (Function for test scripts)
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +01002465auto_clean_environment() {
BjornMagnussonXA80a92002020-03-19 14:31:06 +01002466 echo
2467 if [ "$AUTO_CLEAN" == "auto" ]; then
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +01002468 echo -e $BOLD"Initiating automatic cleaning of environment"$EBOLD
2469 clean_environment
YongchaoWu9a84f512019-12-16 22:54:11 +01002470 fi
2471}
2472
BjornMagnussonXA80a92002020-03-19 14:31:06 +01002473# Function to sleep a test case for a numner of seconds. Prints the optional text args as info
BjornMagnussonXA048aaa12020-06-04 07:48:37 +02002474# args: <sleep-time-in-sec> [any-text-in-quotes-to-be-printed]
BjornMagnussonXA80a92002020-03-19 14:31:06 +01002475# (Function for test scripts)
2476sleep_wait() {
YongchaoWu9a84f512019-12-16 22:54:11 +01002477
BjornMagnussonXA80a92002020-03-19 14:31:06 +01002478 echo -e $BOLD"INFO(${BASH_LINENO[0]}): "${FUNCNAME[0]}"," $@ $EBOLD
2479 if [ $# -lt 1 ]; then
2480 ((RES_CONF_FAIL++))
2481 __print_err "need at least one arg, <sleep-time-in-sec> [any-text-to-printed]" $@
2482 exit 1
2483 fi
2484 #echo "---- Sleep for " $1 " seconds ---- "$2
2485 start=$SECONDS
2486 duration=$((SECONDS-start))
2487 while [ $duration -lt $1 ]; do
BjornMagnussonXA72667f12020-04-24 09:20:18 +02002488 echo -ne " Slept for ${duration} seconds${SAMELINE}"
BjornMagnussonXA80a92002020-03-19 14:31:06 +01002489 sleep 1
2490 duration=$((SECONDS-start))
2491 done
BjornMagnussonXA72667f12020-04-24 09:20:18 +02002492 echo -ne " Slept for ${duration} seconds${SAMELINE}"
BjornMagnussonXA80a92002020-03-19 14:31:06 +01002493 echo ""
2494}
2495
2496# Print error info for the call in the parent script (test case). Arg: <error-message-to-print>
2497# Not to be called from the test script itself.
2498__print_err() {
2499 echo -e $RED ${FUNCNAME[1]} " "$1" " ${BASH_SOURCE[2]} " line" ${BASH_LINENO[1]} $ERED
2500 if [ $# -gt 1 ]; then
2501 echo -e $RED" Got: "${FUNCNAME[1]} ${@:2} $ERED
2502 fi
BjornMagnussonXA7b36db62020-11-23 10:57:57 +01002503 ((RES_CONF_FAIL++))
BjornMagnussonXA80a92002020-03-19 14:31:06 +01002504}
2505
BjornMagnussonXA80a92002020-03-19 14:31:06 +01002506# Function to create the docker network for the test
2507# Not to be called from the test script itself.
2508__create_docker_network() {
BjornMagnussonXA72667f12020-04-24 09:20:18 +02002509 tmp=$(docker network ls --format={{.Name}} --filter name=$DOCKER_SIM_NWNAME)
BjornMagnussonXA80a92002020-03-19 14:31:06 +01002510 if [ $? -ne 0 ]; then
2511 echo -e $RED" Could not check if docker network $DOCKER_SIM_NWNAME exists"$ERED
2512 return 1
2513 fi
BjornMagnussonXA72667f12020-04-24 09:20:18 +02002514 if [ "$tmp" != $DOCKER_SIM_NWNAME ]; then
BjornMagnussonXAbf3700b2020-10-05 08:39:40 +02002515 echo -e " Creating docker network:$BOLD $DOCKER_SIM_NWNAME $EBOLD"
2516 docker network create $DOCKER_SIM_NWNAME | indent2
BjornMagnussonXA80a92002020-03-19 14:31:06 +01002517 if [ $? -ne 0 ]; then
2518 echo -e $RED" Could not create docker network $DOCKER_SIM_NWNAME"$ERED
2519 return 1
BjornMagnussonXAbf3700b2020-10-05 08:39:40 +02002520 else
2521 echo -e "$GREEN Done$EGREEN"
BjornMagnussonXA80a92002020-03-19 14:31:06 +01002522 fi
2523 else
2524 echo -e " Docker network $DOCKER_SIM_NWNAME already exists$GREEN OK $EGREEN"
2525 fi
2526}
2527
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +01002528# Function to start container with docker-compose and wait until all are in state running.
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +01002529# If the <docker-compose-file> is empty, the default 'docker-compose.yml' is assumed.
2530#args: <docker-compose-dir> <docker-compose-file> <docker-compose-arg>|NODOCKERARGS <count> <app-name>+
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +01002531# (Not for test scripts)
2532__start_container() {
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +01002533
2534 if [ $# -lt 5 ]; then
BjornMagnussonXA80a92002020-03-19 14:31:06 +01002535 ((RES_CONF_FAIL++))
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +01002536 __print_err "need 5 or more args, <docker-compose-dir> <docker-compose-file> <docker-compose-arg>|NODOCKERARGS <count> <app-name>+" $@
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +01002537 exit 1
BjornMagnussonXA80a92002020-03-19 14:31:06 +01002538 fi
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +01002539
2540 __create_docker_network
2541
2542 curdir=$PWD
2543 cd $SIM_GROUP
2544 compose_dir=$1
2545 cd $1
2546 shift
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +01002547 compose_file=$1
2548 if [ -z "$compose_file" ]; then
2549 compose_file="docker-compose.yml"
2550 fi
2551 shift
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +01002552 compose_args=$1
2553 shift
2554 appcount=$1
2555 shift
2556
BjornMagnussonXA79e37002021-11-22 13:36:04 +01002557 envsubst < $compose_file > "gen_"$compose_file
2558 compose_file="gen_"$compose_file
BjornMagnussonXAe60d04e2021-12-27 13:38:01 +01002559 if [ $DOCKER_COMPOSE_VERION == "V1" ]; then
2560 docker_compose_cmd="docker-compose"
2561 else
2562 docker_compose_cmd="docker compose"
2563 fi
BjornMagnussonXA79e37002021-11-22 13:36:04 +01002564
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +01002565 if [ "$compose_args" == "NODOCKERARGS" ]; then
BjornMagnussonXAe60d04e2021-12-27 13:38:01 +01002566 $docker_compose_cmd -f $compose_file up -d &> .dockererr
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +01002567 if [ $? -ne 0 ]; then
2568 echo -e $RED"Problem to launch container(s) with docker-compose"$ERED
2569 cat .dockererr
2570 echo -e $RED"Stopping script...."$ERED
2571 exit 1
2572 fi
2573 else
BjornMagnussonXAe60d04e2021-12-27 13:38:01 +01002574 $docker_compose_cmd -f $compose_file up -d $compose_args &> .dockererr
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +01002575 if [ $? -ne 0 ]; then
2576 echo -e $RED"Problem to launch container(s) with docker-compose"$ERED
2577 cat .dockererr
2578 echo -e $RED"Stopping script...."$ERED
2579 exit 1
2580 fi
2581 fi
2582
2583 cd $curdir
2584
2585 appindex=0
2586 while [ $appindex -lt $appcount ]; do
2587 appname=$1
2588 shift
BjornMagnussonXA70e878f2020-05-11 14:11:30 +02002589 app_started=0
2590 for i in {1..10}; do
2591 if [ "$(docker inspect --format '{{ .State.Running }}' $appname)" == "true" ]; then
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +01002592 echo -e " Container $BOLD${appname}$EBOLD$GREEN running$EGREEN on$BOLD image $(docker inspect --format '{{ .Config.Image }}' ${appname}) $EBOLD"
BjornMagnussonXA70e878f2020-05-11 14:11:30 +02002593 app_started=1
2594 break
2595 else
2596 sleep $i
2597 fi
BjornMagnussonXA80a92002020-03-19 14:31:06 +01002598 done
BjornMagnussonXA70e878f2020-05-11 14:11:30 +02002599 if [ $app_started -eq 0 ]; then
2600 ((RES_CONF_FAIL++))
2601 echo ""
2602 echo -e $RED" Container $BOLD${appname}$EBOLD could not be started"$ERED
BjornMagnussonXA49f0e5a2020-11-08 22:41:39 +01002603 echo -e $RED" Stopping script..."$ERED
2604 exit 1
BjornMagnussonXA70e878f2020-05-11 14:11:30 +02002605 fi
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +01002606 let appindex=appindex+1
2607 done
2608 return 0
2609}
2610
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +01002611# Function to check if container/service is responding to http/https
2612# args: <container-name>|<service-name> url
2613# (Not for test scripts)
2614__check_service_start() {
2615
2616 if [ $# -ne 2 ]; then
2617 ((RES_CONF_FAIL++))
2618 __print_err "need 2 args, <container-name>|<service-name> url" $@
2619 return 1
YongchaoWu9a84f512019-12-16 22:54:11 +01002620 fi
2621
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +01002622 if [ $RUNMODE == "KUBE" ]; then
2623 ENTITY="service/set/deployment"
2624 else
2625 ENTITY="container"
2626 fi
2627 appname=$1
2628 url=$2
2629 echo -ne " Container $BOLD${appname}$EBOLD starting${SAMELINE}"
2630
2631
YongchaoWu9a84f512019-12-16 22:54:11 +01002632 pa_st=false
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +01002633 echo -ne " Waiting for ${ENTITY} ${appname} service status...${SAMELINE}"
BjornMagnussonXAbbd2e9d2020-05-27 21:24:06 +02002634 TSTART=$SECONDS
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +01002635 loop_ctr=0
2636 while (( $TSTART+600 > $SECONDS )); do
BjornMagnussonXAa69cd902021-04-22 23:46:10 +02002637 result="$(__do_curl -m 10 $url)"
YongchaoWu9a84f512019-12-16 22:54:11 +01002638 if [ $? -eq 0 ]; then
BjornMagnussonXA80a92002020-03-19 14:31:06 +01002639 if [ ${#result} -gt 15 ]; then
2640 #If response is too long, truncate
2641 result="...response text too long, omitted"
2642 fi
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +01002643 echo -ne " Waiting for {ENTITY} $BOLD${appname}$EBOLD service status on ${3}, result: $result${SAMELINE}"
2644 echo -ne " The ${ENTITY} $BOLD${appname}$EBOLD$GREEN is alive$EGREEN, responds to service status:$GREEN $result $EGREEN on ${url} after $(($SECONDS-$TSTART)) seconds"
YongchaoWu9a84f512019-12-16 22:54:11 +01002645 pa_st=true
2646 break
2647 else
BjornMagnussonXAbbd2e9d2020-05-27 21:24:06 +02002648 TS_TMP=$SECONDS
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +01002649 TS_OFFSET=$loop_ctr
2650 if (( $TS_OFFSET > 5 )); then
2651 TS_OFFSET=5
2652 fi
2653 while [ $(($TS_TMP+$TS_OFFSET)) -gt $SECONDS ]; do
2654 echo -ne " Waiting for ${ENTITY} ${appname} service status on ${url}...$(($SECONDS-$TSTART)) seconds, retrying in $(($TS_TMP+$TS_OFFSET-$SECONDS)) seconds ${SAMELINE}"
BjornMagnussonXAbbd2e9d2020-05-27 21:24:06 +02002655 sleep 1
2656 done
YongchaoWu9a84f512019-12-16 22:54:11 +01002657 fi
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +01002658 let loop_ctr=loop_ctr+1
YongchaoWu9a84f512019-12-16 22:54:11 +01002659 done
2660
2661 if [ "$pa_st" = "false" ]; then
BjornMagnussonXA80a92002020-03-19 14:31:06 +01002662 ((RES_CONF_FAIL++))
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +01002663 echo -e $RED" The ${ENTITY} ${appname} did not respond to service status on ${url} in $(($SECONDS-$TSTART)) seconds"$ERED
BjornMagnussonXA80a92002020-03-19 14:31:06 +01002664 return 1
2665 fi
2666
BjornMagnussonXA72667f12020-04-24 09:20:18 +02002667 echo ""
BjornMagnussonXA70e878f2020-05-11 14:11:30 +02002668 return 0
BjornMagnussonXA72667f12020-04-24 09:20:18 +02002669}
2670
BjornMagnussonXAbf3700b2020-10-05 08:39:40 +02002671
BjornMagnussonXA80a92002020-03-19 14:31:06 +01002672#################
2673### Log functions
2674#################
2675
BjornMagnussonXA80a92002020-03-19 14:31:06 +01002676__check_container_logs() {
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +01002677
BjornMagnussonXA80a92002020-03-19 14:31:06 +01002678 dispname=$1
2679 appname=$2
2680 logpath=$3
BjornMagnussonXAf38e1e82020-10-11 23:05:02 +02002681 warning=$4
2682 error=$5
2683
BjornMagnussonXA80a92002020-03-19 14:31:06 +01002684 echo -e $BOLD"Checking $dispname container $appname log ($logpath) for WARNINGs and ERRORs"$EBOLD
2685
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +01002686 if [ $RUNMODE == "KUBE" ]; then
2687 echo -e $YELLOW" Internal log for $dispname not checked in kube"$EYELLOW
2688 return
2689 fi
2690
BjornMagnussonXA80a92002020-03-19 14:31:06 +01002691 #tmp=$(docker ps | grep $appname)
2692 tmp=$(docker ps -q --filter name=$appname) #get the container id
2693 if [ -z "$tmp" ]; then #Only check logs for running Policy Agent apps
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +01002694 echo " "$dispname" is not running, no check made"
BjornMagnussonXA80a92002020-03-19 14:31:06 +01002695 return
2696 fi
BjornMagnussonXAf38e1e82020-10-11 23:05:02 +02002697 foundentries="$(docker exec -t $tmp grep $warning $logpath | wc -l)"
BjornMagnussonXA80a92002020-03-19 14:31:06 +01002698 if [ $? -ne 0 ];then
2699 echo " Problem to search $appname log $logpath"
2700 else
2701 if [ $foundentries -eq 0 ]; then
2702 echo " No WARN entries found in $appname log $logpath"
2703 else
2704 echo -e " Found \033[1m"$foundentries"\033[0m WARN entries in $appname log $logpath"
2705 fi
2706 fi
BjornMagnussonXAf38e1e82020-10-11 23:05:02 +02002707 foundentries="$(docker exec -t $tmp grep $error $logpath | wc -l)"
BjornMagnussonXA80a92002020-03-19 14:31:06 +01002708 if [ $? -ne 0 ];then
2709 echo " Problem to search $appname log $logpath"
2710 else
2711 if [ $foundentries -eq 0 ]; then
2712 echo " No ERR entries found in $appname log $logpath"
2713 else
2714 echo -e $RED" Found \033[1m"$foundentries"\033[0m"$RED" ERR entries in $appname log $logpath"$ERED
2715 fi
2716 fi
2717 echo ""
2718}
2719
2720# Store all container logs and other logs in the log dir for the script
2721# Logs are stored with a prefix in case logs should be stored several times during a test
2722# args: <logfile-prefix>
2723# (Function for test scripts)
YongchaoWu9a84f512019-12-16 22:54:11 +01002724store_logs() {
2725 if [ $# != 1 ]; then
BjornMagnussonXA80a92002020-03-19 14:31:06 +01002726 ((RES_CONF_FAIL++))
2727 __print_err "need one arg, <file-prefix>" $@
YongchaoWu9a84f512019-12-16 22:54:11 +01002728 exit 1
2729 fi
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +01002730 echo -e $BOLD"Storing all docker/kube container logs and other test logs in $TESTLOGS/$ATC using prefix: "$1$EBOLD
YongchaoWu9a84f512019-12-16 22:54:11 +01002731
BjornMagnussonXAbbd2e9d2020-05-27 21:24:06 +02002732 docker stats --no-stream > $TESTLOGS/$ATC/$1_docker_stats.log 2>&1
BjornMagnussonXAf38e1e82020-10-11 23:05:02 +02002733
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +01002734 docker ps -a > $TESTLOGS/$ATC/$1_docker_ps.log 2>&1
BjornMagnussonXAf38e1e82020-10-11 23:05:02 +02002735
BjornMagnussonXA80a92002020-03-19 14:31:06 +01002736 cp .httplog_${ATC}.txt $TESTLOGS/$ATC/$1_httplog_${ATC}.txt 2>&1
2737
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +01002738 if [ $RUNMODE == "DOCKER" ]; then
BjornMagnussonXA80a92002020-03-19 14:31:06 +01002739
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +01002740 # Store docker logs for all container
2741 for imagename in $APP_SHORT_NAMES; do
2742 __check_included_image $imagename
2743 if [ $? -eq 0 ]; then
2744 # A function name is created from the app short name
2745 # for example app short name 'RICMSIM' -> produce the function
2746 # name __RICSIM__store_docker_logs
2747 # This function is called and is expected to exist in the imported
2748 # file for the ricsim test functions
2749 # The resulting function impl shall store the docker logs for each container
2750 function_pointer="__"$imagename"_store_docker_logs"
2751 $function_pointer "$TESTLOGS/$ATC/" $1
2752 fi
2753 done
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +01002754 fi
2755 if [ $RUNMODE == "KUBE" ]; then
2756 namespaces=$(kubectl get namespaces -o jsonpath='{.items[?(@.metadata.name)].metadata.name}')
2757 for nsid in $namespaces; do
2758 pods=$(kubectl get pods -n $nsid -o jsonpath='{.items[?(@.metadata.labels.autotest)].metadata.name}')
2759 for podid in $pods; do
2760 kubectl logs -n $nsid $podid > $TESTLOGS/$ATC/$1_${podid}.log
2761 done
BjornMagnussonXAf38e1e82020-10-11 23:05:02 +02002762 done
2763 fi
BjornMagnussonXA80a92002020-03-19 14:31:06 +01002764 echo ""
YongchaoWu9a84f512019-12-16 22:54:11 +01002765}
2766
BjornMagnussonXA80a92002020-03-19 14:31:06 +01002767###############
2768## Generic curl
2769###############
BjornMagnussonXAf38e1e82020-10-11 23:05:02 +02002770# Generic curl function, assumes all 200-codes are ok
2771# args: <valid-curl-args-including full url>
BjornMagnussonXA80a92002020-03-19 14:31:06 +01002772# returns: <returned response (without respose code)> or "<no-response-from-server>" or "<not found, <http-code>>""
2773# returns: The return code is 0 for ok and 1 for not ok
YongchaoWu9a84f512019-12-16 22:54:11 +01002774__do_curl() {
BjornMagnussonXA80a92002020-03-19 14:31:06 +01002775 echo ${FUNCNAME[1]} "line: "${BASH_LINENO[1]} >> $HTTPLOG
BjornMagnussonXA483ee332021-04-08 01:35:24 +02002776 proxyflag=""
BjornMagnussonXA663566c2021-11-08 10:25:07 +01002777 if [ ! -z "$KUBE_PROXY_PATH" ]; then
2778 if [ $KUBE_PROXY_HTTPX == "http" ]; then
2779 proxyflag=" --proxy $KUBE_PROXY_PATH"
2780 else
2781 proxyflag=" --proxy-insecure --proxy $KUBE_PROXY_PATH"
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +01002782 fi
2783 fi
BjornMagnussonXA483ee332021-04-08 01:35:24 +02002784 curlString="curl -skw %{http_code} $proxyflag $@"
BjornMagnussonXA80a92002020-03-19 14:31:06 +01002785 echo " CMD: $curlString" >> $HTTPLOG
2786 res=$($curlString)
BjornMagnussonXAa69cd902021-04-22 23:46:10 +02002787 retcode=$?
BjornMagnussonXA80a92002020-03-19 14:31:06 +01002788 echo " RESP: $res" >> $HTTPLOG
BjornMagnussonXAa69cd902021-04-22 23:46:10 +02002789 echo " RETCODE: $retcode" >> $HTTPLOG
2790 if [ $retcode -ne 0 ]; then
2791 echo "<no-response-from-server>"
2792 return 1
2793 fi
YongchaoWu9a84f512019-12-16 22:54:11 +01002794 http_code="${res:${#res}-3}"
2795 if [ ${#res} -eq 3 ]; then
BjornMagnussonXAf38e1e82020-10-11 23:05:02 +02002796 if [ $http_code -lt 200 ] || [ $http_code -gt 299 ]; then
2797 echo "<no-response-from-server>"
2798 return 1
2799 else
BjornMagnussonXAf38e1e82020-10-11 23:05:02 +02002800 return 0
2801 fi
YongchaoWu9a84f512019-12-16 22:54:11 +01002802 else
BjornMagnussonXA80a92002020-03-19 14:31:06 +01002803 if [ $http_code -lt 200 ] || [ $http_code -gt 299 ]; then
YongchaoWu9a84f512019-12-16 22:54:11 +01002804 echo "<not found, resp:${http_code}>"
2805 return 1
2806 fi
2807 if [ $# -eq 2 ]; then
2808 echo "${res:0:${#res}-3}" | xargs
2809 else
2810 echo "${res:0:${#res}-3}"
2811 fi
2812
2813 return 0
2814 fi
2815}
2816
BjornMagnussonXA80a92002020-03-19 14:31:06 +01002817#######################################
2818### Basic helper function for test cases
2819#######################################
2820
2821# Test a simulator container variable value towards target value using an condition operator with an optional timeout.
2822# Arg: <simulator-name> <host> <variable-name> <condition-operator> <target-value> - This test is done
2823# immediately and sets pass or fail depending on the result of comparing variable and target using the operator.
2824# Arg: <simulator-name> <host> <variable-name> <condition-operator> <target-value> <timeout> - This test waits up to the timeout
2825# before setting pass or fail depending on the result of comparing variable and target using the operator.
2826# If the <variable-name> has the 'json:' prefix, the the variable will be used as url and the <target-value> will be compared towards the length of the json array in the response.
2827# Not to be called from test script.
2828
2829__var_test() {
2830 checkjsonarraycount=0
BjornMagnussonXA3cc0b582021-08-30 10:46:41 +02002831 TIMESTAMP=$(date "+%Y-%m-%d %H:%M:%S")
BjornMagnussonXA80a92002020-03-19 14:31:06 +01002832 if [ $# -eq 6 ]; then
2833 if [[ $3 == "json:"* ]]; then
2834 checkjsonarraycount=1
2835 fi
2836
BjornMagnussonXA7b36db62020-11-23 10:57:57 +01002837 echo -e $BOLD"TEST $TEST_SEQUENCE_NR (${BASH_LINENO[1]}): ${1}, ${3} ${4} ${5} within ${6} seconds"$EBOLD
BjornMagnussonXA3cc0b582021-08-30 10:46:41 +02002838 echo "TEST $TEST_SEQUENCE_NR - ${TIMESTAMP}: (${BASH_LINENO[1]}): ${1}, ${3} ${4} ${5} within ${6} seconds" >> $HTTPLOG
2839
BjornMagnussonXA80a92002020-03-19 14:31:06 +01002840 ((RES_TEST++))
BjornMagnussonXA7b36db62020-11-23 10:57:57 +01002841 ((TEST_SEQUENCE_NR++))
BjornMagnussonXA80a92002020-03-19 14:31:06 +01002842 start=$SECONDS
2843 ctr=0
2844 for (( ; ; )); do
2845 if [ $checkjsonarraycount -eq 0 ]; then
2846 result="$(__do_curl $2$3)"
2847 retcode=$?
2848 result=${result//[[:blank:]]/} #Strip blanks
2849 else
2850 path=${3:5}
2851 result="$(__do_curl $2$path)"
2852 retcode=$?
BjornMagnussonXAf38e1e82020-10-11 23:05:02 +02002853 echo "$result" > ./tmp/.tmp.curl.json
2854 result=$(python3 ../common/count_json_elements.py "./tmp/.tmp.curl.json")
BjornMagnussonXA80a92002020-03-19 14:31:06 +01002855 fi
2856 duration=$((SECONDS-start))
BjornMagnussonXA72667f12020-04-24 09:20:18 +02002857 echo -ne " Result=${result} after ${duration} seconds${SAMELINE}"
BjornMagnussonXA80a92002020-03-19 14:31:06 +01002858 let ctr=ctr+1
2859 if [ $retcode -ne 0 ]; then
2860 if [ $duration -gt $6 ]; then
2861 ((RES_FAIL++))
BjornMagnussonXA80a92002020-03-19 14:31:06 +01002862 echo -e $RED" FAIL${ERED} - ${3} ${4} ${5} not reached in ${6} seconds, result = ${result}"
BjornMagnussonXAfec823b2021-08-03 14:14:05 +02002863 __print_current_stats
BjornMagnussonXA048aaa12020-06-04 07:48:37 +02002864 __check_stop_at_error
BjornMagnussonXA80a92002020-03-19 14:31:06 +01002865 return
2866 fi
2867 elif [ $4 = "=" ] && [ "$result" -eq $5 ]; then
2868 ((RES_PASS++))
BjornMagnussonXA72667f12020-04-24 09:20:18 +02002869 echo -e " Result=${result} after ${duration} seconds${SAMELINE}"
BjornMagnussonXA80a92002020-03-19 14:31:06 +01002870 echo -e $GREEN" PASS${EGREEN} - Result=${result} after ${duration} seconds"
BjornMagnussonXAfec823b2021-08-03 14:14:05 +02002871 __print_current_stats
BjornMagnussonXA80a92002020-03-19 14:31:06 +01002872 return
2873 elif [ $4 = ">" ] && [ "$result" -gt $5 ]; then
2874 ((RES_PASS++))
BjornMagnussonXA72667f12020-04-24 09:20:18 +02002875 echo -e " Result=${result} after ${duration} seconds${SAMELINE}"
BjornMagnussonXA80a92002020-03-19 14:31:06 +01002876 echo -e $GREEN" PASS${EGREEN} - Result=${result} after ${duration} seconds"
BjornMagnussonXAfec823b2021-08-03 14:14:05 +02002877 __print_current_stats
BjornMagnussonXA80a92002020-03-19 14:31:06 +01002878 return
2879 elif [ $4 = "<" ] && [ "$result" -lt $5 ]; then
2880 ((RES_PASS++))
BjornMagnussonXA72667f12020-04-24 09:20:18 +02002881 echo -e " Result=${result} after ${duration} seconds${SAMELINE}"
BjornMagnussonXA80a92002020-03-19 14:31:06 +01002882 echo -e $GREEN" PASS${EGREEN} - Result=${result} after ${duration} seconds"
BjornMagnussonXAfec823b2021-08-03 14:14:05 +02002883 __print_current_stats
BjornMagnussonXA80a92002020-03-19 14:31:06 +01002884 return
2885 elif [ $4 = "contain_str" ] && [[ $result =~ $5 ]]; then
2886 ((RES_PASS++))
BjornMagnussonXA72667f12020-04-24 09:20:18 +02002887 echo -e " Result=${result} after ${duration} seconds${SAMELINE}"
BjornMagnussonXA80a92002020-03-19 14:31:06 +01002888 echo -e $GREEN" PASS${EGREEN} - Result=${result} after ${duration} seconds"
BjornMagnussonXAfec823b2021-08-03 14:14:05 +02002889 __print_current_stats
BjornMagnussonXA80a92002020-03-19 14:31:06 +01002890 return
2891 else
2892 if [ $duration -gt $6 ]; then
2893 ((RES_FAIL++))
2894 echo -e $RED" FAIL${ERED} - ${3} ${4} ${5} not reached in ${6} seconds, result = ${result}"
BjornMagnussonXAfec823b2021-08-03 14:14:05 +02002895 __print_current_stats
BjornMagnussonXA048aaa12020-06-04 07:48:37 +02002896 __check_stop_at_error
BjornMagnussonXA80a92002020-03-19 14:31:06 +01002897 return
2898 fi
2899 fi
2900 sleep 1
2901 done
2902 elif [ $# -eq 5 ]; then
2903 if [[ $3 == "json:"* ]]; then
2904 checkjsonarraycount=1
2905 fi
2906
BjornMagnussonXA7b36db62020-11-23 10:57:57 +01002907 echo -e $BOLD"TEST $TEST_SEQUENCE_NR (${BASH_LINENO[1]}): ${1}, ${3} ${4} ${5}"$EBOLD
BjornMagnussonXA3cc0b582021-08-30 10:46:41 +02002908 echo "TEST $TEST_SEQUENCE_NR - ${TIMESTAMP}: (${BASH_LINENO[1]}): ${1}, ${3} ${4} ${5}" >> $HTTPLOG
BjornMagnussonXA80a92002020-03-19 14:31:06 +01002909 ((RES_TEST++))
BjornMagnussonXA7b36db62020-11-23 10:57:57 +01002910 ((TEST_SEQUENCE_NR++))
BjornMagnussonXA80a92002020-03-19 14:31:06 +01002911 if [ $checkjsonarraycount -eq 0 ]; then
2912 result="$(__do_curl $2$3)"
2913 retcode=$?
2914 result=${result//[[:blank:]]/} #Strip blanks
2915 else
2916 path=${3:5}
2917 result="$(__do_curl $2$path)"
2918 retcode=$?
BjornMagnussonXAf38e1e82020-10-11 23:05:02 +02002919 echo "$result" > ./tmp/.tmp.curl.json
2920 result=$(python3 ../common/count_json_elements.py "./tmp/.tmp.curl.json")
BjornMagnussonXA80a92002020-03-19 14:31:06 +01002921 fi
2922 if [ $retcode -ne 0 ]; then
2923 ((RES_FAIL++))
BjornMagnussonXA80a92002020-03-19 14:31:06 +01002924 echo -e $RED" FAIL ${ERED}- ${3} ${4} ${5} not reached, result = ${result}"
BjornMagnussonXAfec823b2021-08-03 14:14:05 +02002925 __print_current_stats
BjornMagnussonXA048aaa12020-06-04 07:48:37 +02002926 __check_stop_at_error
BjornMagnussonXA80a92002020-03-19 14:31:06 +01002927 elif [ $4 = "=" ] && [ "$result" -eq $5 ]; then
2928 ((RES_PASS++))
2929 echo -e $GREEN" PASS${EGREEN} - Result=${result}"
BjornMagnussonXAfec823b2021-08-03 14:14:05 +02002930 __print_current_stats
BjornMagnussonXA80a92002020-03-19 14:31:06 +01002931 elif [ $4 = ">" ] && [ "$result" -gt $5 ]; then
2932 ((RES_PASS++))
2933 echo -e $GREEN" PASS${EGREEN} - Result=${result}"
BjornMagnussonXAfec823b2021-08-03 14:14:05 +02002934 __print_current_stats
BjornMagnussonXA80a92002020-03-19 14:31:06 +01002935 elif [ $4 = "<" ] && [ "$result" -lt $5 ]; then
2936 ((RES_PASS++))
2937 echo -e $GREEN" PASS${EGREEN} - Result=${result}"
BjornMagnussonXAfec823b2021-08-03 14:14:05 +02002938 __print_current_stats
BjornMagnussonXA80a92002020-03-19 14:31:06 +01002939 elif [ $4 = "contain_str" ] && [[ $result =~ $5 ]]; then
2940 ((RES_PASS++))
2941 echo -e $GREEN" PASS${EGREEN} - Result=${result}"
BjornMagnussonXAfec823b2021-08-03 14:14:05 +02002942 __print_current_stats
BjornMagnussonXA80a92002020-03-19 14:31:06 +01002943 else
2944 ((RES_FAIL++))
2945 echo -e $RED" FAIL${ERED} - ${3} ${4} ${5} not reached, result = ${result}"
BjornMagnussonXAfec823b2021-08-03 14:14:05 +02002946 __print_current_stats
BjornMagnussonXA048aaa12020-06-04 07:48:37 +02002947 __check_stop_at_error
BjornMagnussonXA80a92002020-03-19 14:31:06 +01002948 fi
2949 else
2950 echo "Wrong args to __var_test, needs five or six args: <simulator-name> <host> <variable-name> <condition-operator> <target-value> [ <timeout> ]"
2951 echo "Got:" $@
2952 exit 1
2953 fi
2954}