3 # ============LICENSE_START===============================================
4 # Copyright (C) 2020 Nordix Foundation. All rights reserved.
5 # ========================================================================
6 # Licensed under the Apache License, Version 2.0 (the "License");
7 # you may not use this file except in compliance with the License.
8 # You may obtain a copy of the License at
10 # http://www.apache.org/licenses/LICENSE-2.0
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=================================================
20 # 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
23 . ../common/api_curl.sh
24 . ../common/testengine_config.sh
27 echo "Args: remote|remote-remove docker|kube --env-file <environment-filename> [release] [auto-clean] [--stop-at-error] "
28 echo " [--ricsim-prefix <prefix> ] [--use-local-image <app-nam>+] [--use-snapshot-image <app-nam>+]"
29 echo " [--use-staging-image <app-nam>+] [--use-release-image <app-nam>+] [--image-repo <repo-address]"
30 echo " [--repo-policy local|remote] [--cluster-timeout <timeout-in seconds>] [--print-stats]"
31 echo " [--override <override-environment-filename> --pre-clean --gen-stats]"
34 if [ $# -eq 1 ] && [ "$1" == "help" ]; then
36 if [ ! -z "$TC_ONELINE_DESCR" ]; then
37 echo "Test script description:"
38 echo $TC_ONELINE_DESCR
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"
45 echo "docker - Test executed in docker environment"
46 echo "kube - Test executed in kubernetes environment - requires an already started kubernetes environment"
47 echo "--env-file <file> - The script will use the supplied file to read environment variables from"
48 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"
56 echo "--image-repo - Url to optional image repo. Only locally built images will be re-tagged and pushed to this repo"
57 echo "--repo-policy - Policy controlling which images to re-tag and push if param --image-repo is set. Default is 'local'"
58 echo "--cluster-timeout - Optional timeout for cluster where it takes time to obtain external ip/host-name. Timeout in seconds. "
59 echo "--print-stats - Print current test stats after each test."
60 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"
62 echo "--gen-stats - Collect container/pod runtime statistics"
65 echo "List of app short names supported: "$APP_SHORT_NAMES
70 # Create a test case id, ATC (Auto Test Case), from the name of the test case script.
71 # FTC1.sh -> ATC == FTC1
72 ATC=$(basename "${BASH_SOURCE[$i+1]}" .sh)
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
76 echo "1" > "$PWD/.result$ATC.txt"
78 #Formatting for 'echo' cmd
83 GREEN="\033[32m\033[1m"
85 YELLOW="\033[33m\033[1m"
89 # Just resetting any previous echo formatting...
92 # default test environment variables
94 #Override env file, will be added on top of the above file
95 TEST_ENV_VAR_FILE_OVERRIDE=""
97 echo "Test case started as: ${BASH_SOURCE[$i+1]} "$@
100 LOCALHOST_NAME="localhost"
101 LOCALHOST_HTTP="http://localhost"
102 LOCALHOST_HTTPS="https://localhost"
104 # Var to hold 'auto' in case containers shall be stopped when test case ends
107 # Var to indicate pre clean, if flag --pre-clean is set the script will clean kube resouces when running docker and vice versa
110 # Var to hold the app names to use local images for
113 # Var to hold the app names to use remote snapshot images for
114 USE_SNAPSHOT_IMAGES=""
116 # Var to hold the app names to use remote staging images for
117 USE_STAGING_IMAGES=""
119 # Var to hold the app names to use remote release images for
120 USE_RELEASE_IMAGES=""
123 # 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
126 # 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
131 #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>
134 DOCKER_COMPOSE_VERION="V1"
136 # Function to indent cmd output with one space
137 indent1() { sed 's/^/ /'; }
139 # Function to indent cmd output with two spaces
140 indent2() { sed 's/^/ /'; }
142 # Set a description string for the test case
143 if [ -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
148 # Counter for test suites
149 if [ -f .tmp_tcsuite_ctr ]; then
150 tmpval=$(< .tmp_tcsuite_ctr)
152 echo $tmpval > .tmp_tcsuite_ctr
155 # Create the logs dir if not already created in the current dir
156 if [ ! -d "logs" ]; then
161 # 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
163 # files in the ./tmp is moved to ./tmp/prev when a new test is started
164 if [ ! -d "tmp" ]; then
166 if [ $? -ne 0 ]; then
167 echo "Cannot create dir for temp files, $PWD/tmp"
174 if [ $? -ne 0 ]; then
175 echo "Cannot cd to $PWD/tmp"
180 TESTENV_TEMP_FILES=$PWD
182 if [ ! -d "prev" ]; then
184 if [ $? -ne 0 ]; then
185 echo "Cannot create dir for previous temp files, $PWD/prev"
191 TMPFILES=$(ls -A | grep -vw prev)
192 if [ ! -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"
199 if [ $(pwd | xargs basename) == "tmp" ]; then #Check that current dir is tmp...for safety
201 rm -rf $TMPFILES # Remove all temp files
206 if [ $? -ne 0 ]; then
207 echo "Cannot cd to $curdir"
212 # Create a http message log for this testcase
213 HTTPLOG=$PWD"/.httplog_"$ATC".txt"
216 # Create a log dir for the test case
217 mkdir -p $TESTLOGS/$ATC
219 # Save create for current logs
220 mkdir -p $TESTLOGS/$ATC/previous
222 rm $TESTLOGS/$ATC/previous/*.log &> /dev/null
223 rm $TESTLOGS/$ATC/previous/*.txt &> /dev/null
224 rm $TESTLOGS/$ATC/previous/*.json &> /dev/null
226 mv $TESTLOGS/$ATC/*.log $TESTLOGS/$ATC/previous &> /dev/null
227 mv $TESTLOGS/$ATC/*.txt $TESTLOGS/$ATC/previous &> /dev/null
228 mv $TESTLOGS/$ATC/*.txt $TESTLOGS/$ATC/previous &> /dev/null
230 # Clear the log dir for the test case
231 rm $TESTLOGS/$ATC/*.log &> /dev/null
232 rm $TESTLOGS/$ATC/*.txt &> /dev/null
233 rm $TESTLOGS/$ATC/*.json &> /dev/null
235 # Log all output from the test case to a TC log
236 TCLOG=$TESTLOGS/$ATC/TC.log
237 exec &> >(tee ${TCLOG})
239 #Variables for counting tests as well as passed and failed tests
246 #Var to control if current stats shall be printed
247 PRINT_CURRENT_STATS=0
249 #Var to control if container/pod runtim statistics shall be collected
250 COLLECT_RUNTIME_STATS=0
251 COLLECT_RUNTIME_STATS_PID=0
253 #File to keep deviation messages
254 DEVIATION_FILE=".tmp_deviations"
255 rm $DEVIATION_FILE &> /dev/null
257 # Trap "command not found" and make the script fail
260 if [ $? -eq 127 ]; then
261 echo -e $RED"Function not found, setting script to FAIL"$ERED
263 __print_current_stats
268 # Trap to kill subprocess for stats collection (if running)
270 if [ $COLLECT_RUNTIME_STATS_PID -ne 0 ]; then
271 kill $COLLECT_RUNTIME_STATS_PID
279 # Function to log the start of a test case
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
285 ((TEST_SEQUENCE_NR++))
288 # Function to print current statistics
289 __print_current_stats() {
290 if [ $PRINT_CURRENT_STATS -ne 0 ]; then
291 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"
295 # General function to log a failed test case
296 __log_test_fail_general() {
297 echo -e $RED" FAIL."$1 $ERED
299 __print_current_stats
300 __check_stop_at_error
303 # Function to log a test case failed due to incorrect response code
304 __log_test_fail_status_code() {
305 echo -e $RED" FAIL. Exepected status "$1", got "$2 $3 $ERED
307 __print_current_stats
308 __check_stop_at_error
311 # Function to log a test case failed due to incorrect response body
312 __log_test_fail_body() {
313 echo -e $RED" FAIL, returned body not correct"$ERED
315 __print_current_stats
316 __check_stop_at_error
319 # Function to log a test case that is not supported
320 __log_test_fail_not_supported() {
321 echo -e $RED" FAIL, function not supported"$ERED
323 __print_current_stats
324 __check_stop_at_error
327 # General function to log a passed test case
329 if [ $# -gt 0 ]; then
333 echo -e $GREEN" PASS"$EGREEN
334 __print_current_stats
337 #Counter for configurations
340 # Function to log the start of a configuration setup
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++))
348 # Function to log a failed configuration setup
349 __log_conf_fail_general() {
350 echo -e $RED" FAIL."$1 $ERED
352 __print_current_stats
353 __check_stop_at_error
356 # Function to log a failed configuration setup due to incorrect response code
357 __log_conf_fail_status_code() {
358 echo -e $RED" FAIL. Exepected status "$1", got "$2 $3 $ERED
360 __print_current_stats
361 __check_stop_at_error
364 # Function to log a failed configuration setup due to incorrect response body
365 __log_conf_fail_body() {
366 echo -e $RED" FAIL, returned body not correct"$ERED
368 __print_current_stats
369 __check_stop_at_error
372 # Function to log a configuration that is not supported
373 __log_conf_fail_not_supported() {
374 echo -e $RED" FAIL, function not supported"$ERED$@
376 __print_current_stats
377 __check_stop_at_error
380 # Function to log a passed configuration setup
382 if [ $# -gt 0 ]; then
385 echo -e $GREEN" OK"$EGREEN
386 __print_current_stats
389 #Var for measuring execution time
390 TCTEST_START=$SECONDS
392 #Vars to hold the start time and timer text for a custom timer
393 TC_TIMER_STARTTIME=""
394 TC_TIMER_TIMER_TEXT=""
395 TC_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
399 #File to save timer measurement results
400 TIMER_MEASUREMENTS=".timer_measurement.txt"
401 echo -e "Activity \t Duration \t Info" > $TIMER_MEASUREMENTS
403 # If this is set, some images (control by the parameter repo-polcy) will be re-tagged and pushed to this repo before any
405 IMAGE_REPO_POLICY="local"
408 echo "-------------------------------------------------------------------------------------------------"
409 echo "----------------------------------- Test case: "$ATC
410 echo "----------------------------------- Started: "$(date)
411 echo "-------------------------------------------------------------------------------------------------"
412 echo "-- Description: "$TC_ONELINE_DESCR
413 echo "-------------------------------------------------------------------------------------------------"
414 echo "----------------------------------- Test case setup -----------------------------------"
416 echo "Setting AUTOTEST_HOME="$AUTOTEST_HOME
420 if [ $# -lt 1 ]; then
423 if [ $paramerror -eq 0 ]; then
424 if [ "$1" != "remote" ] && [ "$1" != "remote-remove" ]; then
426 if [ -z "$paramerror_str" ]; then
427 paramerror_str="First arg shall be 'remote' or 'remote-remove'"
433 if [ $paramerror -eq 0 ]; then
434 if [ "$1" != "docker" ] && [ "$1" != "kube" ]; then
436 if [ -z "$paramerror_str" ]; then
437 paramerror_str="Second arg shall be 'docker' or 'kube'"
440 if [ $1 == "docker" ]; then
442 echo "Setting RUNMODE=DOCKER"
444 if [ $1 == "kube" ]; then
446 echo "Setting RUNMODE=KUBE"
452 while [ $paramerror -eq 0 ] && [ $foundparm -eq 0 ]; do
454 if [ $paramerror -eq 0 ]; then
455 if [ "$1" == "release" ]; then
456 IMAGE_CATEGORY="RELEASE"
457 echo "Option set - Release image tags used for applicable images "
462 if [ $paramerror -eq 0 ]; then
463 if [ "$1" == "auto-clean" ]; then
465 echo "Option set - Auto clean at end of test script"
470 if [ $paramerror -eq 0 ]; then
471 if [ "$1" == "--stop-at-error" ]; then
473 echo "Option set - Stop at first error"
478 if [ $paramerror -eq 0 ]; then
479 if [ "$1" == "--ricsim-prefix" ]; then
481 TMP_RIC_SIM_PREFIX=$1 #RIC_SIM_PREFIX need to be updated after sourcing of the env file
484 if [ -z "$paramerror_str" ]; then
485 paramerror_str="No prefix found for flag: '--ricsim-prefix'"
488 echo "Option set - Overriding RIC_SIM_PREFIX with: "$1
494 if [ $paramerror -eq 0 ]; then
495 if [ "$1" == "--env-file" ]; then
500 if [ -z "$paramerror_str" ]; then
501 paramerror_str="No env file found for flag: '--env-file'"
504 echo "Option set - Reading test env from: "$1
510 if [ $paramerror -eq 0 ]; then
511 if [ "$1" == "--use-local-image" ]; then
514 while [ $# -gt 0 ] && [[ "$1" != "--"* ]]; do
515 USE_LOCAL_IMAGES=$USE_LOCAL_IMAGES" "$1
516 if [[ "$AVAILABLE_IMAGES_OVERRIDE" != *"$1"* ]]; then
518 if [ -z "$paramerror_str" ]; then
519 paramerror_str="App name $1 is not available for local override for flag: '--use-local-image'"
525 if [ -z "$USE_LOCAL_IMAGES" ]; then
527 if [ -z "$paramerror_str" ]; then
528 paramerror_str="No app name found for flag: '--use-local-image'"
531 echo "Option set - Overriding with local images for app(s):"$USE_LOCAL_IMAGES
535 if [ $paramerror -eq 0 ]; then
536 if [ "$1" == "--use-snapshot-image" ]; then
537 USE_SNAPSHOT_IMAGES=""
539 while [ $# -gt 0 ] && [[ "$1" != "--"* ]]; do
540 USE_SNAPSHOT_IMAGES=$USE_SNAPSHOT_IMAGES" "$1
541 if [[ "$AVAILABLE_IMAGES_OVERRIDE" != *"$1"* ]]; then
543 if [ -z "$paramerror_str" ]; then
544 paramerror_str="App name $1 is not available for snapshot override for flag: '--use-snapshot-image'"
550 if [ -z "$USE_SNAPSHOT_IMAGES" ]; then
552 if [ -z "$paramerror_str" ]; then
553 paramerror_str="No app name found for flag: '--use-snapshot-image'"
556 echo "Option set - Overriding with snapshot images for app(s):"$USE_SNAPSHOT_IMAGES
560 if [ $paramerror -eq 0 ]; then
561 if [ "$1" == "--use-staging-image" ]; then
562 USE_STAGING_IMAGES=""
564 while [ $# -gt 0 ] && [[ "$1" != "--"* ]]; do
565 USE_STAGING_IMAGES=$USE_STAGING_IMAGES" "$1
566 if [[ "$AVAILABLE_IMAGES_OVERRIDE" != *"$1"* ]]; then
568 if [ -z "$paramerror_str" ]; then
569 paramerror_str="App name $1 is not available for staging override for flag: '--use-staging-image'"
575 if [ -z "$USE_STAGING_IMAGES" ]; then
577 if [ -z "$paramerror_str" ]; then
578 paramerror_str="No app name found for flag: '--use-staging-image'"
581 echo "Option set - Overriding with staging images for app(s):"$USE_STAGING_IMAGES
585 if [ $paramerror -eq 0 ]; then
586 if [ "$1" == "--use-release-image" ]; then
587 USE_RELEASE_IMAGES=""
589 while [ $# -gt 0 ] && [[ "$1" != "--"* ]]; do
590 USE_RELEASE_IMAGES=$USE_RELEASE_IMAGES" "$1
591 if [[ "$AVAILABLE_IMAGES_OVERRIDE" != *"$1"* ]]; then
593 if [ -z "$paramerror_str" ]; then
594 paramerror_str="App name $1 is not available for release override for flag: '--use-release-image'"
600 if [ -z "$USE_RELEASE_IMAGES" ]; then
602 if [ -z "$paramerror_str" ]; then
603 paramerror_str="No app name found for flag: '--use-release-image'"
606 echo "Option set - Overriding with release images for app(s):"$USE_RELEASE_IMAGES
610 if [ $paramerror -eq 0 ]; then
611 if [ "$1" == "--image-repo" ]; then
616 if [ -z "$paramerror_str" ]; then
617 paramerror_str="No image repo url found for : '--image-repo'"
620 echo "Option set - Image repo url: "$1
626 if [ $paramerror -eq 0 ]; then
627 if [ "$1" == "--repo-policy" ]; then
632 if [ -z "$paramerror_str" ]; then
633 paramerror_str="No policy found for : '--repo-policy'"
636 if [ "$1" == "local" ] || [ "$1" == "remote" ]; then
637 echo "Option set - Image repo policy: "$1
642 if [ -z "$paramerror_str" ]; then
643 paramerror_str="Repo policy shall be 'local' or 'remote'"
649 if [ $paramerror -eq 0 ]; then
650 if [ "$1" == "--cluster-timeout" ]; then
655 if [ -z "$paramerror_str" ]; then
656 paramerror_str="No timeout value found for : '--cluster-timeout'"
659 #Check if positive int
660 case ${CLUSTER_TIME_OUT#[+]} in
663 if [ -z "$paramerror_str" ]; then
664 paramerror_str="Value for '--cluster-timeout' not an int : "$CLUSTER_TIME_OUT
669 echo "Option set - Cluster timeout: "$1
675 if [ $paramerror -eq 0 ]; then
676 if [ "$1" == "--override" ]; then
678 TEST_ENV_VAR_FILE_OVERRIDE=$1
681 if [ -z "$paramerror_str" ]; then
682 paramerror_str="No env file found for flag: '--override'"
685 if [ ! -f $TEST_ENV_VAR_FILE_OVERRIDE ]; then
687 if [ -z "$paramerror_str" ]; then
688 paramerror_str="File for '--override' does not exist : "$TEST_ENV_VAR_FILE_OVERRIDE
691 echo "Option set - Override env from: "$1
697 if [ $paramerror -eq 0 ]; then
698 if [ "$1" == "--pre-clean" ]; then
700 echo "Option set - Pre-clean of kube/docker resouces"
705 if [ $paramerror -eq 0 ]; then
706 if [ "$1" == "--print-stats" ]; then
707 PRINT_CURRENT_STATS=1
708 echo "Option set - Print stats after every test-case and config"
713 if [ $paramerror -eq 0 ]; then
714 if [ "$1" == "--gen-stats" ]; then
715 COLLECT_RUNTIME_STATS=1
716 echo "Option set - Collect runtime statistics"
726 if [ $paramerror -eq 0 ] && [ $# -gt 0 ]; then
728 if [ -z "$paramerror_str" ]; then
729 paramerror_str="Unknown parameter(s): "$@
733 if [ $paramerror -eq 1 ]; then
734 echo -e $RED"Incorrect arg list: "$paramerror_str$ERED
739 # sourcing the selected env variables for the test case
740 if [ -f "$TEST_ENV_VAR_FILE" ]; then
741 echo -e $BOLD"Sourcing env vars from: "$TEST_ENV_VAR_FILE$EBOLD
743 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
748 if [ -z "$TEST_ENV_PROFILE" ] || [ -z "$SUPPORTED_PROFILES" ]; then
749 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
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
758 if [ $found_profile -ne 1 ]; then
759 echo -e $RED"Test case does not support the selected test env file"$ERED
760 echo "Profile: "$TEST_ENV_PROFILE" Supported profiles: "$SUPPORTED_PROFILES
761 echo -e $RED"Exiting...."$ERED
766 echo -e $RED"Selected env var file does not exist: "$TEST_ENV_VAR_FILE$ERED
767 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>"
769 ls $AUTOTEST_HOME/../common/test_env* | indent1
773 #This var need be preserved from the command line option, if set, when env var is sourced.
774 if [ ! -z "$TMP_RIC_SIM_PREFIX" ]; then
775 RIC_SIM_PREFIX=$TMP_RIC_SIM_PREFIX
778 if [ -z "$PROJECT_IMAGES_APP_NAMES" ]; then
779 echo -e $RED"Var PROJECT_IMAGES_APP_NAMES must be defined in: "$TEST_ENV_VAR_FILE $ERED
783 if [[ $SUPPORTED_RUNMODES != *"$RUNMODE"* ]]; then
784 echo -e $RED"This test script does not support RUNMODE $RUNMODE"$ERED
785 echo "Supported RUNMODEs: "$SUPPORTED_RUNMODES
789 # Choose list of included apps depending on run-mode
790 if [ $RUNMODE == "KUBE" ]; then
791 INCLUDED_IMAGES=$KUBE_INCLUDED_IMAGES
793 INCLUDED_IMAGES=$DOCKER_INCLUDED_IMAGES
797 # auto adding system apps
799 echo -e $BOLD"Auto adding system apps"$EBOLD
800 if [ $RUNMODE == "KUBE" ]; then
801 INCLUDED_IMAGES=$INCLUDED_IMAGES" "$TESTENV_KUBE_SYSTEM_APPS
802 TMP_APPS=$TESTENV_KUBE_SYSTEM_APPS
804 INCLUDED_IMAGES=$INCLUDED_IMAGES" "$TESTENV_DOCKER_SYSTEM_APPS
805 TMP_APPS=$TESTENV_DOCKER_SYSTEM_APPS
807 if [ ! -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"
812 while [ ${#padded_iapp} -lt 16 ]; do
813 padded_iapp=$padded_iapp" "
815 echo " Auto-adding system app $padded_iapp Sourcing $file_pointer"
817 if [ $? -ne 0 ]; then
818 echo " Include file $file_pointer contain errors. Exiting..."
821 __added_apps=" $iapp "$__added_apps
827 if [ $RUNMODE == "KUBE" ]; then
828 TMP_APPS=$INCLUDED_IMAGES" "$KUBE_PRESTARTED_IMAGES
830 TMP_APPS=$INCLUDED_IMAGES
833 echo -e $BOLD"Auto adding included apps"$EBOLD
834 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"
839 while [ ${#padded_iapp} -lt 16 ]; do
840 padded_iapp=$padded_iapp" "
842 echo " Auto-adding included app $padded_iapp Sourcing $file_pointer"
843 if [ ! -f "$file_pointer" ]; then
844 echo " Include file $file_pointer for app $iapp does not exist"
848 if [ $? -ne 0 ]; then
849 echo " Include file $file_pointer contain errors. Exiting..."
856 echo -e $BOLD"Test environment info"$EBOLD
858 # Check needed installed sw
861 if [ $? -ne 0 ] || [ -z "$tmp" ]; then
862 echo -e $RED"bash is required to run the test environment, pls install"$ERED
865 echo " bash is installed and using version:"
866 echo "$(bash --version)" | indent2
869 if [ $? -ne 0 ] || [ -z "$tmp" ]; then
870 echo -e $RED"python3 is required to run the test environment, pls install"$ERED
873 echo " python3 is installed and using version: $(python3 --version)"
876 if [ $? -ne 0 ] || [ -z "$tmp" ]; then
877 echo -e $RED"docker is required to run the test environment, pls install"$ERED
880 echo " docker is installed and using versions:"
881 echo " $(docker version --format 'Client version {{.Client.Version}} Server version {{.Server.Version}}')"
883 tmp=$(which docker-compose)
884 if [ $? -ne 0 ] || [ -z "$tmp" ]; then
885 if [ $RUNMODE == "DOCKER" ]; then
886 echo -e $RED"docker-compose is required to run the test environment, pls install"$ERED
890 tmp=$(docker-compose version --short)
891 echo " docker-compose installed and using version $tmp"
892 if [[ "$tmp" == *'v2'* ]]; then
893 DOCKER_COMPOSE_VERION="V2"
897 if [ $? -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
903 if [ $RUNMODE == "KUBE" ]; then
904 echo " kubectl is installed and using versions:"
905 echo $(kubectl version --short=true) | indent2
906 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"
912 echo "kubectl response:"
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 "
921 echo -e $BOLD"sudo <test-script-and-parameters>"$EBOLD
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
929 echo "Set KUBECONFIG inline (replace user)"
930 echo -e $BOLD"sudo KUBECONFIG='/home/<user>/.kube/config' <test-script-and-parameters>"$EBOLD
934 echo " Node(s) and container container runtime config"
935 kubectl get nodes -o wide | indent2
941 echo -e $BOLD"Checking configured image setting for this test case"$EBOLD
943 #Temp var to check for image variable name errors
945 #Create a file with image info for later printing as a table
946 image_list_file="./tmp/.image-list"
947 echo -e "Application\tApp short name\tImage\ttag\ttag-switch" > $image_list_file
949 # Check if image env var is set and if so export the env var with image to use (used by docker compose files)
950 # arg: <app-short-name> <target-variable-name> <image-variable-name> <image-tag-variable-name> <tag-suffix> <image name>
951 __check_and_create_image_var() {
953 if [ $# -ne 6 ]; then
954 echo "Expected arg: <app-short-name> <target-variable-name> <image-variable-name> <image-tag-variable-name> <tag-suffix> <image name>"
959 __check_included_image $1
960 if [ $? -ne 0 ]; then
961 echo -e "$6\t$1\t<image-excluded>\t<no-tag>" >> $image_list_file
962 # Image is excluded since the corresponding app is not used in this test
966 #Create var from the input var names
971 optional_image_repo_target=""
973 if [ -z $image ]; then
974 __check_ignore_image $1
975 if [ $? -eq 0 ]; then
978 app_ds="<app ignored>"
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
985 echo -e $RED"\$"$3" not set in $TEST_ENV_VAR_FILE"$ERED
988 tmp=$tmp"<no-image>\t"
991 optional_image_repo_target=$image
993 #Add repo depending on image type
994 if [ "$5" == "REMOTE_RELEASE" ]; then
995 image=$NEXUS_RELEASE_REPO$image
997 if [ "$5" == "REMOTE" ]; then
998 image=$NEXUS_STAGING_REPO$image
1000 if [ "$5" == "REMOTE_SNAPSHOT" ]; then
1001 image=$NEXUS_SNAPSHOT_REPO$image
1003 if [ "$5" == "REMOTE_PROXY" ]; then
1004 image=$NEXUS_PROXY_REPO$image
1006 if [ "$5" == "REMOTE_RELEASE_ONAP" ]; then
1007 image=$NEXUS_RELEASE_REPO_ONAP$image
1009 if [ "$5" == "REMOTE_RELEASE_ORAN" ]; then
1010 image=$NEXUS_RELEASE_REPO_ORAN$image
1012 #No nexus repo added for local images, tag: LOCAL
1015 if [ -z $tag ]; then
1016 echo -e $RED"\$"$tmptag" not set in $TEST_ENV_VAR_FILE"$ERED
1019 tmp=$tmp"<no-tag>\t"
1024 echo -e "$tmp" >> $image_list_file
1026 export "${2}"=$image":"$tag #Note, this var may be set to the value of the target value below in __check_and_pull_image
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
1033 if [[ $5 == *"REMOTE"* ]]; then
1034 if [ "$IMAGE_REPO_POLICY" == "remote" ]; then
1035 remote_or_local_push=true
1039 if $remote_or_local_push; then # Only re-tag and push images according to policy, if repo is given
1040 export "${2}_SOURCE"=$image":"$tag #Var to keep the actual source image
1041 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
1045 export "${2}_TARGET"=$IMAGE_REPO_ADR"/"$optional_image_repo_target":"$tag #Create image + tag for optional image repo - pushed later if needed
1047 export "${2}_SOURCE"=""
1048 export "${2}_TARGET"=""
1052 # Check if app uses image included in this test run
1053 # Returns 0 if image is included, 1 if not
1054 __check_included_image() {
1055 for im in $INCLUDED_IMAGES; do
1056 if [ "$1" == "$im" ]; then
1063 # 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
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
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
1096 # Removed image from included list of included images
1097 # Used when an image is marked as conditionally ignored
1098 __remove_included_image() {
1100 for im in $INCLUDED_IMAGES; do
1101 if [ "$1" != "$im" ]; then
1102 tmp_img_rem_list=$tmp_img_rem_list" "$im
1105 INCLUDED_IMAGES=$tmp_img_rem_list
1109 # 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
1120 # Check if an app shall use a local image, based on the cmd parameters
1121 __check_image_local_override() {
1122 for im in $USE_LOCAL_IMAGES; do
1123 if [ "$1" == "$im" ]; then
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() {
1134 for im in $ORAN_IMAGES_APP_NAMES; do
1135 if [ "$1" == "$im" ]; then
1136 echo "REMOTE_RELEASE_ORAN"
1141 for im in $ONAP_IMAGES_APP_NAMES; do
1142 if [ "$1" == "$im" ]; then
1143 echo "REMOTE_RELEASE_ONAP"
1149 for im in $PROJECT_IMAGES_APP_NAMES; do
1150 if [ "$1" == "$im" ]; then
1155 if [ $found -eq 0 ]; then
1161 if [ $IMAGE_CATEGORY == "RELEASE" ]; then
1162 suffix="REMOTE_RELEASE"
1164 if [ $IMAGE_CATEGORY == "DEV" ]; then
1168 for im in $USE_STAGING_IMAGES; do
1169 if [ "$1" == "$im" ]; then
1174 for im in $USE_RELEASE_IMAGES; do
1175 if [ "$1" == "$im" ]; then
1176 suffix="REMOTE_RELEASE"
1180 for im in $USE_SNAPSHOT_IMAGES; do
1181 if [ "$1" == "$im" ]; then
1182 suffix="REMOTE_SNAPSHOT"
1186 for im in $USE_LOCAL_IMAGES; do
1187 if [ "$1" == "$im" ]; then
1193 if [ $CTR -gt 1 ]; then
1199 # 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}"
1206 if [ -z $target_image ]; then
1207 return 0 # Image with no target shall not be pushed
1210 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
1216 echo -e " Attempt to re-tag image to: ${BOLD}${target_image}${EBOLD} - ${RED}Failed${ERED}"
1217 cat ./tmp/.dockererr
1220 echo -e " Attempt to re-tag image to: ${BOLD}${target_image}${EBOLD} - ${GREEN}OK${EGREEN}"
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
1228 echo -e " Attempt to push re-tagged image: ${BOLD}${target_image}${EBOLD} - ${RED}Failed${ERED}"
1229 cat ./tmp/.dockererr
1232 echo -e " Attempt to push re-tagged image: ${BOLD}${target_image}${EBOLD} - ${GREEN}OK${EGREEN}"
1234 export "${1}"=$target_image
1239 #Function to check if image exist and stop+remove the container+pull new images as needed
1240 #args <script-start-arg> <descriptive-image-name> <container-base-name> <image-with-tag-var-name>
1241 __check_and_pull_image() {
1243 source_image="${!4}"
1245 echo -e " Checking $BOLD$2$EBOLD container(s) with basename: $BOLD$3$EBOLD using image: $BOLD$source_image$EBOLD"
1246 format_string="\"{{.Repository}}\\t{{.Tag}}\\t{{.CreatedSince}}\\t{{.Size}}\""
1247 tmp_im=$(docker images --format $format_string $source_image)
1249 if [ $1 == "local" ]; then
1250 if [ -z "$tmp_im" ]; then
1251 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
1255 echo -e " "$2" (local image): \033[1m"$source_image"\033[0m "$GREEN"OK"$EGREEN
1257 elif [ $1 == "remote" ] || [ $1 == "remote-remove" ]; then
1258 if [ $1 == "remote-remove" ]; then
1259 if [ $RUNMODE == "DOCKER" ]; then
1260 echo -ne " Attempt to stop and remove container(s), if running - ${SAMELINE}"
1261 tmp=$(docker ps -aq --filter name=${3} --filter network=${DOCKER_SIM_NWNAME})
1262 if [ $? -eq 0 ] && [ ! -z "$tmp" ]; then
1263 docker stop $tmp &> ./tmp/.dockererr
1264 if [ $? -ne 0 ]; then
1267 echo -e $RED" Container(s) could not be stopped - try manual stopping the container(s)"$ERED
1268 cat ./tmp/.dockererr
1272 echo -ne " Attempt to stop and remove container(s), if running - "$GREEN"stopped"$EGREEN"${SAMELINE}"
1273 tmp=$(docker ps -aq --filter name=${3} --filter network=${DOCKER_SIM_NWNAME}) &> /dev/null
1274 if [ $? -eq 0 ] && [ ! -z "$tmp" ]; then
1275 docker rm $tmp &> ./tmp/.dockererr
1276 if [ $? -ne 0 ]; then
1279 echo -e $RED" Container(s) could not be removed - try manual removal of the container(s)"$ERED
1280 cat ./tmp/.dockererr
1284 echo -e " Attempt to stop and remove container(s), if running - "$GREEN"stopped removed"$EGREEN
1290 if [ -z "$tmp_im" ]; then
1291 echo -ne " Pulling image${SAMELINE}"
1292 out=$(docker pull $source_image)
1293 if [ $? -ne 0 ]; then
1295 echo -e " Pulling image -$RED could not be pulled"$ERED
1297 echo $out > ./tmp/.dockererr
1301 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"
1307 echo -e " Pulling image -$GREEN Pulled $EGREEN"
1310 echo -e " Pulling image -$GREEN OK $EGREEN(exists in local repository)"
1314 __retag_and_push_image $4
1319 setup_testenvironment() {
1320 # Check that image env setting are available
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
1327 __check_project_image $imagename
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
1339 # A function name is created from the app short name
1340 # for example app short name 'ICS' -> produce the function
1341 # name __ICS_imagesetup
1342 # This function is called and is expected to exist in the imported
1343 # file for the ics test functions
1344 # 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
1350 function_pointer="__"$imagename"_test_requirements"
1355 #Errors in image setting - exit
1356 if [ $IMAGE_ERR -ne 0 ]; then
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
1366 #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
1375 echo " SIM_GROUP auto set to: " $SIM_GROUP
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
1381 echo " SIM_GROUP env var already set to: " $SIM_GROUP
1386 #Temp var to check for image pull errors
1389 # The following sequence pull the configured images
1392 echo -e $BOLD"Pulling configured images, if needed"$EBOLD
1393 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
1396 for imagename in $APP_SHORT_NAMES; do
1397 __check_included_image $imagename
1399 __check_project_image $imagename
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"
1409 START_ARG_MOD=$START_ARG
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
1425 echo -e $YELLOW" Excluding $imagename image from image check/pull"$EYELLOW
1430 #Errors in image setting - exit
1431 if [ $IMAGE_ERR -ne 0 ]; then
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
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
1443 echo "#################################################################################################"
1450 echo -e $BOLD"Building images needed for test"$EBOLD
1452 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"
1468 echo -e $YELLOW" Excluding image for app $imagename from image build"$EYELLOW
1473 cd $AUTOTEST_HOME # Just to make sure...
1477 # 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
1480 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
1484 for imagename in $APP_SHORT_NAMES; do
1485 __check_included_image $imagename
1486 if [ $? -eq 0 ]; then
1487 # Only print image data if image repo is null, or if image repo is set and image is local
1489 if [ -z "$IMAGE_REPO_ADR" ]; then
1492 __check_image_local_build $imagename
1493 if [ $? -eq 0 ]; then
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
1510 column -t -s $'\t' $docker_tmp_file | indent1
1514 if [ ! -z "$IMAGE_REPO_ADR" ]; then
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
1520 docker_tmp_file=./tmp/.docker-images-table
1521 format_string="{{.Repository}}\\t{{.Tag}}"
1522 echo -e "Application\tRepository\tTag" > $docker_tmp_file
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
1542 column -t -s $'\t' $docker_tmp_file | indent1
1547 if [ $RUNMODE == "KUBE" ]; then
1549 echo "================================================================================="
1550 echo "================================================================================="
1552 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. "
1556 export KUBE_IMAGE_PULL_POLICY="Never"
1558 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"
1564 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
1567 echo "================================================================================="
1568 echo "================================================================================="
1572 echo -e $BOLD"======================================================="$EBOLD
1573 echo -e $BOLD"== Common test setup completed - test script begins =="$EBOLD
1574 echo -e $BOLD"======================================================="$EBOLD
1579 for imagename in $APP_SHORT_NAMES; do
1580 __check_included_image $imagename
1582 __check_prestarted_image $imagename
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
1592 function_pointer="__"$imagename"_initial_setup"
1595 function_pointer="__"$imagename"_statisics_setup"
1596 LOG_STAT_ARGS=$LOG_STAT_ARGS" "$($function_pointer)
1600 if [ $COLLECT_RUNTIME_STATS -eq 1 ]; then
1601 ../common/genstat.sh $RUNMODE $SECONDS $TESTLOGS/$ATC/stat_data.csv $LOG_STAT_ARGS &
1602 COLLECT_RUNTIME_STATS_PID=$!
1607 # Function to print the test result, shall be the last cmd in a test script
1609 # (Function for test scripts)
1613 duration=$((TCTEST_END-TCTEST_START))
1615 echo "-------------------------------------------------------------------------------------------------"
1616 echo "------------------------------------- Test case: "$ATC
1617 echo "------------------------------------- Ended: "$(date)
1618 echo "-------------------------------------------------------------------------------------------------"
1619 echo "-- Description: "$TC_ONELINE_DESCR
1620 echo "-- Execution time: " $duration " seconds"
1621 echo "-- Used env file: "$TEST_ENV_VAR_FILE
1622 echo "-------------------------------------------------------------------------------------------------"
1623 echo "------------------------------------- RESULTS"
1627 if [ $RES_DEVIATION -gt 0 ]; then
1628 echo "Test case deviations"
1629 echo "===================================="
1633 echo "Timer measurement in the test script"
1634 echo "===================================="
1635 column -t -s $'\t' $TIMER_MEASUREMENTS
1636 if [ $RES_PASS != $RES_TEST ]; then
1637 echo -e $RED"Measurement may not be reliable when there are failed test - failures may cause long measurement values due to timeouts etc."$ERED
1641 if [ $COLLECT_RUNTIME_STATS -eq 1 ]; then
1642 echo "Runtime statistics collected in file: "$TESTLOGS/$ATC/stat_data.csv
1646 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
1660 echo -e "\033[1mOne or more configurations has failed. Check the script log....\033[0m"
1661 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"
1673 # Update test suite counter
1674 if [ -f .tmp_tcsuite_pass_ctr ]; then
1675 tmpval=$(< .tmp_tcsuite_pass_ctr)
1677 echo $tmpval > .tmp_tcsuite_pass_ctr
1679 if [ -f .tmp_tcsuite_pass ]; then
1680 echo " - "$ATC " -- "$TC_ONELINE_DESCR" Execution time: "$duration" seconds" >> .tmp_tcsuite_pass
1682 #Create file with OK exit code
1683 echo "0" > "$AUTOTEST_HOME/.result$ATC.txt"
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"
1691 # Update test suite counter
1692 if [ -f .tmp_tcsuite_fail_ctr ]; then
1693 tmpval=$(< .tmp_tcsuite_fail_ctr)
1695 echo $tmpval > .tmp_tcsuite_fail_ctr
1697 if [ -f .tmp_tcsuite_fail ]; then
1698 echo " - "$ATC " -- "$TC_ONELINE_DESCR" Execution time: "$duration" seconds" >> .tmp_tcsuite_fail
1702 echo "++++ Number of tests: "$RES_TEST
1703 echo "++++ Number of passed tests: "$RES_PASS
1704 echo "++++ Number of failed tests: "$RES_FAIL
1706 echo "++++ Number of failed configs: "$RES_CONF_FAIL
1708 echo "++++ Number of test case deviations: "$RES_DEVIATION
1710 echo "------------------------------------- Test case complete ---------------------------------"
1711 echo "-------------------------------------------------------------------------------------------------"
1715 #####################################################################
1716 ###### Functions for start, configuring, stoping, cleaning etc ######
1717 #####################################################################
1719 # Start timer for time measurement
1720 # 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"
1723 echo -e $BOLD"INFO(${BASH_LINENO[0]}): "${FUNCNAME[0]}"," $@ $EBOLD
1724 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
1731 TC_TIMER_CURRENT_FAILS=$(($RES_FAIL+$RES_CONF_FAIL))
1732 echo " Timer started: $(date)"
1735 # 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
1738 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" $@
1743 duration=$(($SECONDS-$TC_TIMER_STARTTIME))
1744 if [ $duration -eq 0 ]; then
1745 duration="<1 second"
1747 duration=$duration" seconds"
1749 echo " Timer duration :" $duration
1751 if [ $(($RES_FAIL+$RES_CONF_FAIL)) -ne $TC_TIMER_CURRENT_FAILS ]; then
1752 res="Failures occured during test - timer not reliabled"
1755 echo -e "$TC_TIMER_TIMER_TEXT \t $duration \t $res" >> $TIMER_MEASUREMENTS
1758 # Print info about a deviations from intended tests
1759 # Each deviation counted is also printed in the testreport
1760 # args <deviation message to print>
1762 echo -e $BOLD"DEVIATION(${BASH_LINENO[0]}): "${FUNCNAME[0]} $EBOLD
1763 if [ $# -lt 1 ]; then
1765 __print_err "need 1 or more args, <deviation message to print>" $@
1769 echo -e $BOLD$YELLOW" Test case deviation: ${@:1}"$EYELLOW$EBOLD
1770 echo "Line: ${BASH_LINENO[0]} - ${@:1}" >> $DEVIATION_FILE
1771 __print_current_stats
1775 # 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"
1785 # Stop and remove all containers
1787 # (Not for test scripts)
1788 __clean_containers() {
1790 echo -e $BOLD"Docker clean and stopping and removing all running containers, by container name"$EBOLD
1793 running_contr_file="./tmp/running_contr.txt"
1794 > $running_contr_file
1796 # 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
1800 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=""
1805 # 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
1808 tab_heading1="App display name"
1809 tab_heading2="App short name"
1810 tab_heading3="Container name"
1812 tab_heading1_len=${#tab_heading1}
1813 tab_heading2_len=${#tab_heading2}
1814 tab_heading3_len=${#tab_heading3}
1816 #Calc field lengths of each item in the list of containers
1818 if (( $cntr % 3 == 0 ));then
1819 if [ ${#p} -gt $tab_heading1_len ]; then
1820 tab_heading1_len=${#p}
1823 if (( $cntr % 3 == 1));then
1824 if [ ${#p} -gt $tab_heading2_len ]; then
1825 tab_heading2_len=${#p}
1828 if (( $cntr % 3 == 2));then
1829 if [ ${#p} -gt $tab_heading3_len ]; then
1830 tab_heading3_len=${#p}
1834 done <$running_contr_file
1836 let tab_heading1_len=tab_heading1_len+2
1837 while (( ${#tab_heading1} < $tab_heading1_len)); do
1838 tab_heading1="$tab_heading1"" "
1841 let tab_heading2_len=tab_heading2_len+2
1842 while (( ${#tab_heading2} < $tab_heading2_len)); do
1843 tab_heading2="$tab_heading2"" "
1846 let tab_heading3_len=tab_heading3_len+2
1847 while (( ${#tab_heading3} < $tab_heading3_len)); do
1848 tab_heading3="$tab_heading3"" "
1851 if [ ! -z "$running_contr_file_empty" ]; then
1852 echo $running_contr_file_empty | indent1
1854 echo " $tab_heading1$tab_heading2$tab_heading3"" Actions"
1857 if (( $cntr % 3 == 0 ));then
1860 heading_len=$tab_heading1_len
1862 if (( $cntr % 3 == 1));then
1864 heading_len=$tab_heading2_len
1866 if (( $cntr % 3 == 2));then
1869 heading_len=$tab_heading3_len
1871 while (( ${#heading} < $heading_len)); do
1872 heading="$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}"
1884 done <$running_contr_file
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
1892 docker network rm $DOCKER_SIM_NWNAME | indent2
1893 if [ $? -ne 0 ]; then
1894 echo -e $RED" Cannot remove docker network. Manually remove or disconnect containers from $DOCKER_SIM_NWNAME"$ERED
1898 echo -e "$GREEN Done$EGREEN"
1900 echo -e $BOLD" Removing all unused docker neworks"$EBOLD
1901 docker network prune --force | indent2
1902 echo -e "$GREEN Done$EGREEN"
1904 echo -e $BOLD" Removing all unused docker volumes"$EBOLD
1905 docker volume prune --force | indent2
1906 echo -e "$GREEN Done$EGREEN"
1908 echo -e $BOLD" Removing all dangling/untagged docker images"$EBOLD
1909 docker rmi --force $(docker images -q -f dangling=true) &> /dev/null
1910 echo -e "$GREEN Done$EGREEN"
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
1917 docker ps -a | indent1
1923 ###################################
1924 ### Functions for kube management
1925 ###################################
1927 # 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
1935 kubectl get sts $1 -n $2 1> /dev/null 2> ./tmp/kubeerr
1936 if [ $? -eq 0 ]; then
1940 echo "unknown-resource-type"
1944 # Scale a kube resource to a specific count
1945 # args: <resource-type> <resource-name> <namespace> <target-count>
1946 # (Not for test scripts)
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"
1953 echo " Message: $(<./tmp/kubeerr)"
1956 echo -e " Setting $1 $2 replicas=$4 in namespace $3 $GREEN OK $EGREEN"
1961 for i in {1..500}; do
1962 count=$(kubectl get $1/$2 -n $3 -o jsonpath='{.status.replicas}' 2> /dev/null)
1964 if [ -z "$count" ]; then
1965 #No value is sometimes returned for some reason, in case the resource has replica 0
1968 if [ $retcode -ne 0 ]; then
1969 echo -e "$RED Cannot fetch current replica count for $1 $2 in namespace $3 $ERED"
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"
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"
1985 echo -e "$RED Replica count did not reach target replicas=$4. Failed with replicas=$count $ERED"
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() {
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
2002 for resid in $result; do
2003 echo -ne " Ordered caling $restype $resid in namespace $namespace with label $labelname=$labelid to 0"$SAMELINE
2004 kubectl scale $restype $resid -n $namespace --replicas=0 1> /dev/null 2> ./tmp/kubeerr
2005 echo -e " Ordered scaling $restype $resid in namespace $namespace with label $labelname=$labelid to 0 $GREEN OK $EGREEN"
2011 # Scale all kube resource sets to 0 in a namespace for resources having a certain lable and an optional label-id
2012 # This function do wait for the resource to reach 0
2013 # args: <namespace> <label-name> [ <label-id> ]
2014 # (Not for test scripts)
2015 __kube_scale_and_wait_all_resources() {
2019 if [ -z "$3" ]; then
2020 echo " Attempt to scale - deployment replicaset statefulset - in namespace $namespace with label $labelname"
2022 echo " Attempt to scale - deployment replicaset statefulset - in namespace $namespace with label $labelname=$labelid"
2024 resources="deployment replicaset statefulset"
2026 while [ $scaled_all -ne 0 ]; do
2028 for restype in $resources; do
2029 if [ -z "$3" ]; then
2030 result=$(kubectl get $restype -n $namespace -o jsonpath='{.items[?(@.metadata.labels.'$labelname')].metadata.name}')
2032 result=$(kubectl get $restype -n $namespace -o jsonpath='{.items[?(@.metadata.labels.'$labelname'=="'$labelid'")].metadata.name}')
2034 if [ $? -eq 0 ] && [ ! -z "$result" ]; then
2035 for resid in $result; do
2036 echo -e " Ordered scaling $restype $resid in namespace $namespace with label $labelname=$labelid to 0"
2037 kubectl scale $restype $resid -n $namespace --replicas=0 1> /dev/null 2> ./tmp/kubeerr
2040 while [ $count -ne 0 ]; do
2041 count=$(kubectl get $restype $resid -n $namespace -o jsonpath='{.status.replicas}' 2> /dev/null)
2042 echo -ne " Scaling $restype $resid in namespace $namespace with label $labelname=$labelid to 0, current count=$count"$SAMELINE
2043 if [ $? -eq 0 ] && [ ! -z "$count" ]; then
2048 duration=$(($SECONDS-$T_START))
2049 if [ $duration -gt 100 ]; then
2050 #Forcring count 0, to avoid hanging for failed scaling
2055 echo -e " Scaled $restype $resid in namespace $namespace with label $labelname=$labelid to 0, current count=$count $GREEN OK $EGREEN"
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() {
2070 resources="deployments replicaset statefulset services pods configmaps persistentvolumeclaims persistentvolumes serviceaccounts clusterrolebindings"
2071 deleted_resourcetypes=""
2072 for restype in $resources; do
2073 ns_flag="-n $namespace"
2074 ns_text="in namespace $namespace"
2075 if [ $restype == "persistentvolumes" ]; then
2079 if [ $restype == "clusterrolebindings" ]; then
2083 result=$(kubectl get $restype $ns_flag -o jsonpath='{.items[?(@.metadata.labels.'$labelname'=="'$labelid'")].metadata.name}')
2084 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
2089 while [ $count -ne 0 ]; do
2090 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
2092 if [ $? -eq 0 ] && [ ! -z "$count" ]; then
2098 echo -e " Scaled $restype $resid $ns_text with label $labelname=$labelid to 0, current count=$count $GREEN OK $EGREEN"
2100 echo -ne " Deleting $restype $resid $ns_text with label $labelname=$labelid "$SAMELINE
2101 kubectl delete --grace-period=1 $restype $resid $ns_flag 1> /dev/null 2> ./tmp/kubeerr
2102 if [ $? -eq 0 ]; then
2103 echo -e " Deleted $restype $resid $ns_text with label $labelname=$labelid $GREEN OK $EGREEN"
2105 echo -e " Deleted $restype $resid $ns_text with label $labelname=$labelid $GREEN Does not exist - OK $EGREEN"
2111 if [ ! -z "$deleted_resourcetypes" ]; then
2112 for restype in $deleted_resources; do
2113 ns_flag="-n $namespace"
2114 ns_text="in namespace $namespace"
2115 if [ $restype == "persistentvolumes" ]; then
2119 echo -ne " Waiting for $restype $ns_text with label $labelname=$labelid to be deleted..."$SAMELINE
2122 while [ ! -z "$result" ]; do
2124 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
2126 if [ -z "$result" ]; then
2127 echo -e " Waiting for $restype $ns_text with label $labelname=$labelid to be deleted...$(($SECONDS-$T_START)) seconds $GREEN OK $EGREEN"
2128 elif [ $(($SECONDS-$T_START)) -gt 300 ]; then
2129 echo -e " Waiting for $restype $ns_text with label $labelname=$labelid to be deleted...$(($SECONDS-$T_START)) seconds $RED Failed $ERED"
2137 # Creates a namespace if it does not exists
2139 # (Not for test scripts)
2140 __kube_create_namespace() {
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"
2150 echo " Message: $(<./tmp/kubeerr)"
2153 echo -e " Creating namespace $1 $GREEN$BOLD OK $EBOLD$EGREEN"
2156 echo -e " Creating namespace $1 $GREEN$BOLD Already exists, OK $EBOLD$EGREEN"
2161 # Removes a namespace if it exists
2163 # (Not for test scripts)
2164 __kube_delete_namespace() {
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"
2174 echo " Message: $(<./tmp/kubeerr)"
2177 echo -e " Removing namespace $1 $GREEN$BOLD OK $EBOLD$EGREEN"
2180 echo -e " Namespace $1 $GREEN$BOLD does not exist, OK $EBOLD$EGREEN"
2185 # Removes a namespace
2187 # (Not for test scripts)
2188 clean_and_create_namespace() {
2191 if [ $# -ne 1 ]; then
2192 __print_err "<namespace>" $@
2195 __kube_delete_namespace $1
2196 if [ $? -ne 0 ]; then
2199 __kube_create_namespace $1
2200 if [ $? -ne 0 ]; then
2206 # 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
2212 __print_err "need 2 args, <app-name> <namespace>" $@
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
2226 echo "host-not-found-fatal-error"
2230 # 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
2236 __print_err "need 3 args, <app-name> <namespace> <port-name>" $@
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
2255 # 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
2261 __print_err "need 3 args, <app-name> <namespace> <port-name>" $@
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
2280 # 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
2286 kubectl apply -f $4 1> /dev/null 2> ./tmp/kubeerr
2287 if [ $? -ne 0 ]; then
2289 echo -e " Creating $1 $2 $RED Failed $ERED"
2290 echo " Message: $(<./tmp/kubeerr)"
2293 echo -e " Creating $1 $2 $GREEN OK $EGREEN"
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"
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)"
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)"
2325 # Log the resulting map
2326 kubectl get configmap $1 -n $2 -o yaml > $6
2328 echo -e " Creating configmap $1 $GREEN OK $EGREEN"
2332 # 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'
2334 # args: <full kubectl cmd with parameters>
2335 # (Not for test scripts)
2336 __kube_cmd_with_timeout() {
2337 TS_TMP=$(($SECONDS+$CLUSTER_TIME_OUT))
2340 kube_cmd_result=$($@)
2341 if [ $? -ne 0 ]; then
2344 if [ $SECONDS -ge $TS_TMP ] || [ ! -z "$kube_cmd_result" ] ; then
2345 echo $kube_cmd_result
2352 # 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() {
2359 #using env vars setup in pvccleaner_api_functions.sh
2361 export PVC_CLEANER_NAMESPACE=$2
2362 export PVC_CLEANER_CLAIMNAME=$3
2363 export PVC_CLEANER_RM_PATH=$4
2364 export PVC_CLEANER_APP_NAME
2365 input_yaml=$SIM_GROUP"/"$PVC_CLEANER_COMPOSE_DIR"/"pvc-cleaner.yaml
2366 output_yaml=$PWD/tmp/$2-pvc-cleaner.yaml
2368 envsubst < $input_yaml > $output_yaml
2370 kubectl delete -f $output_yaml 1> /dev/null 2> /dev/null # Delete the previous terminated pod - if existing
2372 __kube_create_instance pod $PVC_CLEANER_APP_NAME $input_yaml $output_yaml
2373 if [ $? -ne 0 ]; then
2374 echo $YELLOW" Could not clean pvc for app: $1 - persistent storage not clean - tests may not work"
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
2388 # This function scales or deletes all resources for app selected by the testcase.
2390 # (Not for test scripts)
2392 echo -e $BOLD"Initialize kube pods/statefulsets/replicaset to initial state"$EBOLD
2394 # Scale prestarted or managed apps
2395 for imagename in $APP_SHORT_NAMES; do
2396 # 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
2405 if [ $? -eq 0 ]; then
2406 function_pointer="__"$imagename"_kube_scale_zero_and_wait"
2407 echo -e " Scaling all kube resources for app $BOLD $imagename $EBOLD to 0"
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"
2419 # 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"
2441 # Function stop and remove all containers (docker) and services/deployments etc(kube)
2443 # Function for test script
2444 clean_environment() {
2445 if [ $RUNMODE == "KUBE" ]; then
2447 if [ $PRE_CLEAN -eq 1 ]; then
2448 echo " Cleaning docker resouces to free up resources, may take time..."
2449 ../common/clean_docker.sh 2>&1 /dev/null
2454 if [ $PRE_CLEAN -eq 1 ]; then
2455 echo " Cleaning kubernetes resouces to free up resources, may take time..."
2456 ../common/clean_kube.sh 2>&1 /dev/null
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
2464 # (Function for test scripts)
2465 auto_clean_environment() {
2467 if [ "$AUTO_CLEAN" == "auto" ]; then
2468 echo -e $BOLD"Initiating automatic cleaning of environment"$EBOLD
2473 # Function to sleep a test case for a numner of seconds. Prints the optional text args as info
2474 # args: <sleep-time-in-sec> [any-text-in-quotes-to-be-printed]
2475 # (Function for test scripts)
2478 echo -e $BOLD"INFO(${BASH_LINENO[0]}): "${FUNCNAME[0]}"," $@ $EBOLD
2479 if [ $# -lt 1 ]; then
2481 __print_err "need at least one arg, <sleep-time-in-sec> [any-text-to-printed]" $@
2484 #echo "---- Sleep for " $1 " seconds ---- "$2
2486 duration=$((SECONDS-start))
2487 while [ $duration -lt $1 ]; do
2488 echo -ne " Slept for ${duration} seconds${SAMELINE}"
2490 duration=$((SECONDS-start))
2492 echo -ne " Slept for ${duration} seconds${SAMELINE}"
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.
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
2506 # Function to create the docker network for the test
2507 # Not to be called from the test script itself.
2508 __create_docker_network() {
2509 tmp=$(docker network ls --format={{.Name}} --filter name=$DOCKER_SIM_NWNAME)
2510 if [ $? -ne 0 ]; then
2511 echo -e $RED" Could not check if docker network $DOCKER_SIM_NWNAME exists"$ERED
2514 if [ "$tmp" != $DOCKER_SIM_NWNAME ]; then
2515 echo -e " Creating docker network:$BOLD $DOCKER_SIM_NWNAME $EBOLD"
2516 docker network create $DOCKER_SIM_NWNAME | indent2
2517 if [ $? -ne 0 ]; then
2518 echo -e $RED" Could not create docker network $DOCKER_SIM_NWNAME"$ERED
2521 echo -e "$GREEN Done$EGREEN"
2524 echo -e " Docker network $DOCKER_SIM_NWNAME already exists$GREEN OK $EGREEN"
2528 # Function to start container with docker-compose and wait until all are in state running.
2529 # 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>+
2531 # (Not for test scripts)
2532 __start_container() {
2534 if [ $# -lt 5 ]; then
2536 __print_err "need 5 or more args, <docker-compose-dir> <docker-compose-file> <docker-compose-arg>|NODOCKERARGS <count> <app-name>+" $@
2540 __create_docker_network
2548 if [ -z "$compose_file" ]; then
2549 compose_file="docker-compose.yml"
2557 envsubst < $compose_file > "gen_"$compose_file
2558 compose_file="gen_"$compose_file
2559 if [ $DOCKER_COMPOSE_VERION == "V1" ]; then
2560 docker_compose_cmd="docker-compose"
2562 docker_compose_cmd="docker compose"
2565 if [ "$compose_args" == "NODOCKERARGS" ]; then
2566 $docker_compose_cmd -f $compose_file up -d &> .dockererr
2567 if [ $? -ne 0 ]; then
2568 echo -e $RED"Problem to launch container(s) with docker-compose"$ERED
2570 echo -e $RED"Stopping script...."$ERED
2574 $docker_compose_cmd -f $compose_file up -d $compose_args &> .dockererr
2575 if [ $? -ne 0 ]; then
2576 echo -e $RED"Problem to launch container(s) with docker-compose"$ERED
2578 echo -e $RED"Stopping script...."$ERED
2586 while [ $appindex -lt $appcount ]; do
2590 for i in {1..10}; do
2591 if [ "$(docker inspect --format '{{ .State.Running }}' $appname)" == "true" ]; then
2592 echo -e " Container $BOLD${appname}$EBOLD$GREEN running$EGREEN on$BOLD image $(docker inspect --format '{{ .Config.Image }}' ${appname}) $EBOLD"
2599 if [ $app_started -eq 0 ]; then
2602 echo -e $RED" Container $BOLD${appname}$EBOLD could not be started"$ERED
2603 echo -e $RED" Stopping script..."$ERED
2606 let appindex=appindex+1
2611 # 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() {
2616 if [ $# -ne 2 ]; then
2618 __print_err "need 2 args, <container-name>|<service-name> url" $@
2622 if [ $RUNMODE == "KUBE" ]; then
2623 ENTITY="service/set/deployment"
2629 echo -ne " Container $BOLD${appname}$EBOLD starting${SAMELINE}"
2633 echo -ne " Waiting for ${ENTITY} ${appname} service status...${SAMELINE}"
2636 while (( $TSTART+600 > $SECONDS )); do
2637 result="$(__do_curl -m 10 $url)"
2638 if [ $? -eq 0 ]; then
2639 if [ ${#result} -gt 15 ]; then
2640 #If response is too long, truncate
2641 result="...response text too long, omitted"
2643 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"
2650 if (( $TS_OFFSET > 5 )); then
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}"
2658 let loop_ctr=loop_ctr+1
2661 if [ "$pa_st" = "false" ]; then
2663 echo -e $RED" The ${ENTITY} ${appname} did not respond to service status on ${url} in $(($SECONDS-$TSTART)) seconds"$ERED
2676 __check_container_logs() {
2684 echo -e $BOLD"Checking $dispname container $appname log ($logpath) for WARNINGs and ERRORs"$EBOLD
2686 if [ $RUNMODE == "KUBE" ]; then
2687 echo -e $YELLOW" Internal log for $dispname not checked in kube"$EYELLOW
2691 #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
2694 echo " "$dispname" is not running, no check made"
2697 foundentries="$(docker exec -t $tmp grep $warning $logpath | wc -l)"
2698 if [ $? -ne 0 ];then
2699 echo " Problem to search $appname log $logpath"
2701 if [ $foundentries -eq 0 ]; then
2702 echo " No WARN entries found in $appname log $logpath"
2704 echo -e " Found \033[1m"$foundentries"\033[0m WARN entries in $appname log $logpath"
2707 foundentries="$(docker exec -t $tmp grep $error $logpath | wc -l)"
2708 if [ $? -ne 0 ];then
2709 echo " Problem to search $appname log $logpath"
2711 if [ $foundentries -eq 0 ]; then
2712 echo " No ERR entries found in $appname log $logpath"
2714 echo -e $RED" Found \033[1m"$foundentries"\033[0m"$RED" ERR entries in $appname log $logpath"$ERED
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)
2725 if [ $# != 1 ]; then
2727 __print_err "need one arg, <file-prefix>" $@
2730 echo -e $BOLD"Storing all docker/kube container logs and other test logs in $TESTLOGS/$ATC using prefix: "$1$EBOLD
2732 docker stats --no-stream > $TESTLOGS/$ATC/$1_docker_stats.log 2>&1
2734 docker ps -a > $TESTLOGS/$ATC/$1_docker_ps.log 2>&1
2736 cp .httplog_${ATC}.txt $TESTLOGS/$ATC/$1_httplog_${ATC}.txt 2>&1
2738 if [ $RUNMODE == "DOCKER" ]; then
2740 # 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
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
2770 # Generic curl function, assumes all 200-codes are ok
2771 # args: <valid-curl-args-including full url>
2772 # 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
2775 echo ${FUNCNAME[1]} "line: "${BASH_LINENO[1]} >> $HTTPLOG
2777 if [ ! -z "$KUBE_PROXY_PATH" ]; then
2778 if [ $KUBE_PROXY_HTTPX == "http" ]; then
2779 proxyflag=" --proxy $KUBE_PROXY_PATH"
2781 proxyflag=" --proxy-insecure --proxy $KUBE_PROXY_PATH"
2784 curlString="curl -skw %{http_code} $proxyflag $@"
2785 echo " CMD: $curlString" >> $HTTPLOG
2788 echo " RESP: $res" >> $HTTPLOG
2789 echo " RETCODE: $retcode" >> $HTTPLOG
2790 if [ $retcode -ne 0 ]; then
2791 echo "<no-response-from-server>"
2794 http_code="${res:${#res}-3}"
2795 if [ ${#res} -eq 3 ]; then
2796 if [ $http_code -lt 200 ] || [ $http_code -gt 299 ]; then
2797 echo "<no-response-from-server>"
2803 if [ $http_code -lt 200 ] || [ $http_code -gt 299 ]; then
2804 echo "<not found, resp:${http_code}>"
2807 if [ $# -eq 2 ]; then
2808 echo "${res:0:${#res}-3}" | xargs
2810 echo "${res:0:${#res}-3}"
2817 #######################################
2818 ### Basic helper function for test cases
2819 #######################################
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.
2830 checkjsonarraycount=0
2831 TIMESTAMP=$(date "+%Y-%m-%d %H:%M:%S")
2832 if [ $# -eq 6 ]; then
2833 if [[ $3 == "json:"* ]]; then
2834 checkjsonarraycount=1
2837 echo -e $BOLD"TEST $TEST_SEQUENCE_NR (${BASH_LINENO[1]}): ${1}, ${3} ${4} ${5} within ${6} seconds"$EBOLD
2838 echo "TEST $TEST_SEQUENCE_NR - ${TIMESTAMP}: (${BASH_LINENO[1]}): ${1}, ${3} ${4} ${5} within ${6} seconds" >> $HTTPLOG
2841 ((TEST_SEQUENCE_NR++))
2845 if [ $checkjsonarraycount -eq 0 ]; then
2846 result="$(__do_curl $2$3)"
2848 result=${result//[[:blank:]]/} #Strip blanks
2851 result="$(__do_curl $2$path)"
2853 echo "$result" > ./tmp/.tmp.curl.json
2854 result=$(python3 ../common/count_json_elements.py "./tmp/.tmp.curl.json")
2856 duration=$((SECONDS-start))
2857 echo -ne " Result=${result} after ${duration} seconds${SAMELINE}"
2859 if [ $retcode -ne 0 ]; then
2860 if [ $duration -gt $6 ]; then
2862 echo -e $RED" FAIL${ERED} - ${3} ${4} ${5} not reached in ${6} seconds, result = ${result}"
2863 __print_current_stats
2864 __check_stop_at_error
2867 elif [ $4 = "=" ] && [ "$result" -eq $5 ]; then
2869 echo -e " Result=${result} after ${duration} seconds${SAMELINE}"
2870 echo -e $GREEN" PASS${EGREEN} - Result=${result} after ${duration} seconds"
2871 __print_current_stats
2873 elif [ $4 = ">" ] && [ "$result" -gt $5 ]; then
2875 echo -e " Result=${result} after ${duration} seconds${SAMELINE}"
2876 echo -e $GREEN" PASS${EGREEN} - Result=${result} after ${duration} seconds"
2877 __print_current_stats
2879 elif [ $4 = "<" ] && [ "$result" -lt $5 ]; then
2881 echo -e " Result=${result} after ${duration} seconds${SAMELINE}"
2882 echo -e $GREEN" PASS${EGREEN} - Result=${result} after ${duration} seconds"
2883 __print_current_stats
2885 elif [ $4 = "contain_str" ] && [[ $result =~ $5 ]]; then
2887 echo -e " Result=${result} after ${duration} seconds${SAMELINE}"
2888 echo -e $GREEN" PASS${EGREEN} - Result=${result} after ${duration} seconds"
2889 __print_current_stats
2892 if [ $duration -gt $6 ]; then
2894 echo -e $RED" FAIL${ERED} - ${3} ${4} ${5} not reached in ${6} seconds, result = ${result}"
2895 __print_current_stats
2896 __check_stop_at_error
2902 elif [ $# -eq 5 ]; then
2903 if [[ $3 == "json:"* ]]; then
2904 checkjsonarraycount=1
2907 echo -e $BOLD"TEST $TEST_SEQUENCE_NR (${BASH_LINENO[1]}): ${1}, ${3} ${4} ${5}"$EBOLD
2908 echo "TEST $TEST_SEQUENCE_NR - ${TIMESTAMP}: (${BASH_LINENO[1]}): ${1}, ${3} ${4} ${5}" >> $HTTPLOG
2910 ((TEST_SEQUENCE_NR++))
2911 if [ $checkjsonarraycount -eq 0 ]; then
2912 result="$(__do_curl $2$3)"
2914 result=${result//[[:blank:]]/} #Strip blanks
2917 result="$(__do_curl $2$path)"
2919 echo "$result" > ./tmp/.tmp.curl.json
2920 result=$(python3 ../common/count_json_elements.py "./tmp/.tmp.curl.json")
2922 if [ $retcode -ne 0 ]; then
2924 echo -e $RED" FAIL ${ERED}- ${3} ${4} ${5} not reached, result = ${result}"
2925 __print_current_stats
2926 __check_stop_at_error
2927 elif [ $4 = "=" ] && [ "$result" -eq $5 ]; then
2929 echo -e $GREEN" PASS${EGREEN} - Result=${result}"
2930 __print_current_stats
2931 elif [ $4 = ">" ] && [ "$result" -gt $5 ]; then
2933 echo -e $GREEN" PASS${EGREEN} - Result=${result}"
2934 __print_current_stats
2935 elif [ $4 = "<" ] && [ "$result" -lt $5 ]; then
2937 echo -e $GREEN" PASS${EGREEN} - Result=${result}"
2938 __print_current_stats
2939 elif [ $4 = "contain_str" ] && [[ $result =~ $5 ]]; then
2941 echo -e $GREEN" PASS${EGREEN} - Result=${result}"
2942 __print_current_stats
2945 echo -e $RED" FAIL${ERED} - ${3} ${4} ${5} not reached, result = ${result}"
2946 __print_current_stats
2947 __check_stop_at_error
2950 echo "Wrong args to __var_test, needs five or six args: <simulator-name> <host> <variable-name> <condition-operator> <target-value> [ <timeout> ]"