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>]"
33 if [ $# -eq 1 ] && [ "$1" == "help" ]; then
35 if [ ! -z "$TC_ONELINE_DESCR" ]; then
36 echo "Test script description:"
37 echo $TC_ONELINE_DESCR
42 echo "remote - Use images from remote repositories. Can be overridden for individual images using the '--use_xxx' flags"
43 echo "remote-remove - Same as 'remote' but will also try to pull fresh images from remote repositories"
44 echo "docker - Test executed in docker environment"
45 echo "kube - Test executed in kubernetes environment - requires an already started kubernetes environment"
46 echo "--env-file - The script will use the supplied file to read environment variables from"
47 echo "release - If this flag is given the script will use release version of the images"
48 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."
49 echo "--stop-at-error - The script will stop when the first failed test or configuration"
50 echo "--ricsim-prefix - The a1 simulator will use the supplied string as container prefix instead of 'ricsim'"
51 echo "--use-local-image - The script will use local images for the supplied apps, space separated list of app short names"
52 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"
53 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"
54 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"
55 echo "--image-repo - Url to optional image repo. Only locally built images will be re-tagged and pushed to this repo"
56 echo "--repo-policy - Policy controlling which images to re-tag and push if param --image-repo is set. Default is 'local'"
57 echo "--cluster-timeout - Optional timeout for cluster where it takes time to obtain external ip/host-name. Timeout in seconds. "
59 echo "List of app short names supported: "$APP_SHORT_NAMES
64 # Create a test case id, ATC (Auto Test Case), from the name of the test case script.
65 # FTC1.sh -> ATC == FTC1
66 ATC=$(basename "${BASH_SOURCE[$i+1]}" .sh)
68 #Create result file (containing '1' for error) for this test case
69 #Will be replaced with a file containing '0' if all test cases pass
70 echo "1" > "$PWD/.result$ATC.txt"
72 #Formatting for 'echo' cmd
77 GREEN="\033[32m\033[1m"
79 YELLOW="\033[33m\033[1m"
83 # Just resetting any previous echo formatting...
86 # default test environment variables
89 echo "Test case started as: ${BASH_SOURCE[$i+1]} "$@
92 LOCALHOST_NAME="localhost"
93 LOCALHOST_HTTP="http://localhost"
94 LOCALHOST_HTTPS="https://localhost"
96 # Var to hold 'auto' in case containers shall be stopped when test case ends
99 # Var to hold the app names to use local images for
102 # Var to hold the app names to use remote snapshot images for
103 USE_SNAPSHOT_IMAGES=""
105 # Var to hold the app names to use remote staging images for
106 USE_STAGING_IMAGES=""
108 # Var to hold the app names to use remote release images for
109 USE_RELEASE_IMAGES=""
112 # 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
115 # The default value "DEV" indicate that development image tags (SNAPSHOT) and nexus repos (nexus port 10002) are used.
116 # The value "RELEASE" indicate that relase image tag and nexus repos (nexus port) are used
117 # Applies only to images defined in the test-env files with image names and tags defined as XXXX_RELEASE
120 # Function to indent cmd output with one space
121 indent1() { sed 's/^/ /'; }
123 # Function to indent cmd output with two spaces
124 indent2() { sed 's/^/ /'; }
126 # Set a description string for the test case
127 if [ -z "$TC_ONELINE_DESCR" ]; then
128 TC_ONELINE_DESCR="<no-description>"
129 echo "No test case description found, TC_ONELINE_DESCR should be set on in the test script , using "$TC_ONELINE_DESCR
132 # Counter for test suites
133 if [ -f .tmp_tcsuite_ctr ]; then
134 tmpval=$(< .tmp_tcsuite_ctr)
136 echo $tmpval > .tmp_tcsuite_ctr
139 # Create the logs dir if not already created in the current dir
140 if [ ! -d "logs" ]; then
145 # Create the tmp dir for temporary files that is not needed after the test
146 # hidden files for the test env is still stored in the current dir
147 # files in the ./tmp is moved to ./tmp/prev when a new test is started
148 if [ ! -d "tmp" ]; then
153 if [ $? -ne 0 ]; then
154 echo "Cannot cd to $PWD/tmp"
155 echo "Dir cannot be created. Exiting...."
157 if [ ! -d "prev" ]; then
161 mv ./tmp/* ./tmp/prev 2> /dev/null
163 # Create a http message log for this testcase
164 HTTPLOG=$PWD"/.httplog_"$ATC".txt"
167 # Create a log dir for the test case
168 mkdir -p $TESTLOGS/$ATC
170 # Save create for current logs
171 mkdir -p $TESTLOGS/$ATC/previous
173 rm $TESTLOGS/$ATC/previous/*.log &> /dev/null
174 rm $TESTLOGS/$ATC/previous/*.txt &> /dev/null
175 rm $TESTLOGS/$ATC/previous/*.json &> /dev/null
177 mv $TESTLOGS/$ATC/*.log $TESTLOGS/$ATC/previous &> /dev/null
178 mv $TESTLOGS/$ATC/*.txt $TESTLOGS/$ATC/previous &> /dev/null
179 mv $TESTLOGS/$ATC/*.txt $TESTLOGS/$ATC/previous &> /dev/null
181 # Clear the log dir for the test case
182 rm $TESTLOGS/$ATC/*.log &> /dev/null
183 rm $TESTLOGS/$ATC/*.txt &> /dev/null
184 rm $TESTLOGS/$ATC/*.json &> /dev/null
186 # Log all output from the test case to a TC log
187 TCLOG=$TESTLOGS/$ATC/TC.log
188 exec &> >(tee ${TCLOG})
190 #Variables for counting tests as well as passed and failed tests
197 #File to keep deviation messages
198 DEVIATION_FILE=".tmp_deviations"
199 rm $DEVIATION_FILE &> /dev/null
201 # Trap "command not found" and make the script fail
204 if [ $? -eq 127 ]; then
205 echo -e $RED"Function not found, setting script to FAIL"$ERED
214 # Function to log the start of a test case
216 TIMESTAMP=$(date "+%Y-%m-%d %H:%M:%S")
217 echo -e $BOLD"TEST $TEST_SEQUENCE_NR (${BASH_LINENO[1]}): ${FUNCNAME[1]}" $@ $EBOLD
218 echo "TEST $TEST_SEQUENCE_NR - ${TIMESTAMP}: (${BASH_LINENO[1]}): ${FUNCNAME[1]}" $@ >> $HTTPLOG
220 ((TEST_SEQUENCE_NR++))
223 # General function to log a failed test case
224 __log_test_fail_general() {
225 echo -e $RED" FAIL."$1 $ERED
227 __check_stop_at_error
230 # Function to log a test case failed due to incorrect response code
231 __log_test_fail_status_code() {
232 echo -e $RED" FAIL. Exepected status "$1", got "$2 $3 $ERED
234 __check_stop_at_error
237 # Function to log a test case failed due to incorrect response body
238 __log_test_fail_body() {
239 echo -e $RED" FAIL, returned body not correct"$ERED
241 __check_stop_at_error
244 # Function to log a test case that is not supported
245 __log_test_fail_not_supported() {
246 echo -e $RED" FAIL, function not supported"$ERED
248 __check_stop_at_error
251 # General function to log a passed test case
253 if [ $# -gt 0 ]; then
257 echo -e $GREEN" PASS"$EGREEN
260 #Counter for configurations
263 # Function to log the start of a configuration setup
265 TIMESTAMP=$(date "+%Y-%m-%d %H:%M:%S")
266 echo -e $BOLD"CONF $CONF_SEQUENCE_NR (${BASH_LINENO[1]}): "${FUNCNAME[1]} $@ $EBOLD
267 echo "CONF $CONF_SEQUENCE_NR - ${TIMESTAMP}: (${BASH_LINENO[1]}): "${FUNCNAME[1]} $@ >> $HTTPLOG
268 ((CONF_SEQUENCE_NR++))
271 # Function to log a failed configuration setup
272 __log_conf_fail_general() {
273 echo -e $RED" FAIL."$1 $ERED
275 __check_stop_at_error
278 # Function to log a failed configuration setup due to incorrect response code
279 __log_conf_fail_status_code() {
280 echo -e $RED" FAIL. Exepected status "$1", got "$2 $3 $ERED
282 __check_stop_at_error
285 # Function to log a failed configuration setup due to incorrect response body
286 __log_conf_fail_body() {
287 echo -e $RED" FAIL, returned body not correct"$ERED
289 __check_stop_at_error
292 # Function to log a passed configuration setup
294 if [ $# -gt 0 ]; then
297 echo -e $GREEN" OK"$EGREEN
300 #Var for measuring execution time
301 TCTEST_START=$SECONDS
303 #File to save timer measurement results
304 TIMER_MEASUREMENTS=".timer_measurement.txt"
305 echo -e "Activity \t Duration" > $TIMER_MEASUREMENTS
307 # If this is set, some images (control by the parameter repo-polcy) will be re-tagged and pushed to this repo before any
309 IMAGE_REPO_POLICY="local"
312 echo "-------------------------------------------------------------------------------------------------"
313 echo "----------------------------------- Test case: "$ATC
314 echo "----------------------------------- Started: "$(date)
315 echo "-------------------------------------------------------------------------------------------------"
316 echo "-- Description: "$TC_ONELINE_DESCR
317 echo "-------------------------------------------------------------------------------------------------"
318 echo "----------------------------------- Test case setup -----------------------------------"
320 echo "Setting AUTOTEST_HOME="$AUTOTEST_HOME
324 if [ $# -lt 1 ]; then
327 if [ $paramerror -eq 0 ]; then
328 if [ "$1" != "remote" ] && [ "$1" != "remote-remove" ]; then
330 if [ -z "$paramerror_str" ]; then
331 paramerror_str="First arg shall be 'remote' or 'remote-remove'"
337 if [ $paramerror -eq 0 ]; then
338 if [ "$1" != "docker" ] && [ "$1" != "kube" ]; then
340 if [ -z "$paramerror_str" ]; then
341 paramerror_str="Second arg shall be 'docker' or 'kube'"
344 if [ $1 == "docker" ]; then
346 echo "Setting RUNMODE=DOCKER"
348 if [ $1 == "kube" ]; then
350 echo "Setting RUNMODE=KUBE"
356 while [ $paramerror -eq 0 ] && [ $foundparm -eq 0 ]; do
358 if [ $paramerror -eq 0 ]; then
359 if [ "$1" == "release" ]; then
360 IMAGE_CATEGORY="RELEASE"
361 echo "Option set - Release image tags used for applicable images "
366 if [ $paramerror -eq 0 ]; then
367 if [ "$1" == "auto-clean" ]; then
369 echo "Option set - Auto clean at end of test script"
374 if [ $paramerror -eq 0 ]; then
375 if [ "$1" == "--stop-at-error" ]; then
377 echo "Option set - Stop at first error"
382 if [ $paramerror -eq 0 ]; then
383 if [ "$1" == "--ricsim-prefix" ]; then
385 TMP_RIC_SIM_PREFIX=$1 #RIC_SIM_PREFIX need to be updated after sourcing of the env file
388 if [ -z "$paramerror_str" ]; then
389 paramerror_str="No prefix found for flag: '--ricsim-prefix'"
392 echo "Option set - Overriding RIC_SIM_PREFIX with: "$1
398 if [ $paramerror -eq 0 ]; then
399 if [ "$1" == "--env-file" ]; then
404 if [ -z "$paramerror_str" ]; then
405 paramerror_str="No env file found for flag: '--env-file'"
408 echo "Option set - Reading test env from: "$1
414 if [ $paramerror -eq 0 ]; then
415 if [ "$1" == "--use-local-image" ]; then
418 while [ $# -gt 0 ] && [[ "$1" != "--"* ]]; do
419 USE_LOCAL_IMAGES=$USE_LOCAL_IMAGES" "$1
420 if [[ "$AVAILABLE_IMAGES_OVERRIDE" != *"$1"* ]]; then
422 if [ -z "$paramerror_str" ]; then
423 paramerror_str="App name $1 is not available for local override for flag: '--use-local-image'"
429 if [ -z "$USE_LOCAL_IMAGES" ]; then
431 if [ -z "$paramerror_str" ]; then
432 paramerror_str="No app name found for flag: '--use-local-image'"
435 echo "Option set - Overriding with local images for app(s):"$USE_LOCAL_IMAGES
439 if [ $paramerror -eq 0 ]; then
440 if [ "$1" == "--use-snapshot-image" ]; then
441 USE_SNAPSHOT_IMAGES=""
443 while [ $# -gt 0 ] && [[ "$1" != "--"* ]]; do
444 USE_SNAPSHOT_IMAGES=$USE_SNAPSHOT_IMAGES" "$1
445 if [[ "$AVAILABLE_IMAGES_OVERRIDE" != *"$1"* ]]; then
447 if [ -z "$paramerror_str" ]; then
448 paramerror_str="App name $1 is not available for snapshot override for flag: '--use-snapshot-image'"
454 if [ -z "$USE_SNAPSHOT_IMAGES" ]; then
456 if [ -z "$paramerror_str" ]; then
457 paramerror_str="No app name found for flag: '--use-snapshot-image'"
460 echo "Option set - Overriding with snapshot images for app(s):"$USE_SNAPSHOT_IMAGES
464 if [ $paramerror -eq 0 ]; then
465 if [ "$1" == "--use-staging-image" ]; then
466 USE_STAGING_IMAGES=""
468 while [ $# -gt 0 ] && [[ "$1" != "--"* ]]; do
469 USE_STAGING_IMAGES=$USE_STAGING_IMAGES" "$1
470 if [[ "$AVAILABLE_IMAGES_OVERRIDE" != *"$1"* ]]; then
472 if [ -z "$paramerror_str" ]; then
473 paramerror_str="App name $1 is not available for staging override for flag: '--use-staging-image'"
479 if [ -z "$USE_STAGING_IMAGES" ]; then
481 if [ -z "$paramerror_str" ]; then
482 paramerror_str="No app name found for flag: '--use-staging-image'"
485 echo "Option set - Overriding with staging images for app(s):"$USE_STAGING_IMAGES
489 if [ $paramerror -eq 0 ]; then
490 if [ "$1" == "--use-release-image" ]; then
491 USE_RELEASE_IMAGES=""
493 while [ $# -gt 0 ] && [[ "$1" != "--"* ]]; do
494 USE_RELEASE_IMAGES=$USE_RELEASE_IMAGES" "$1
495 if [[ "$AVAILABLE_IMAGES_OVERRIDE" != *"$1"* ]]; then
497 if [ -z "$paramerror_str" ]; then
498 paramerror_str="App name $1 is not available for release override for flag: '--use-release-image'"
504 if [ -z "$USE_RELEASE_IMAGES" ]; then
506 if [ -z "$paramerror_str" ]; then
507 paramerror_str="No app name found for flag: '--use-release-image'"
510 echo "Option set - Overriding with release images for app(s):"$USE_RELEASE_IMAGES
514 if [ $paramerror -eq 0 ]; then
515 if [ "$1" == "--image-repo" ]; then
520 if [ -z "$paramerror_str" ]; then
521 paramerror_str="No image repo url found for : '--image-repo'"
524 echo "Option set - Image repo url: "$1
530 if [ $paramerror -eq 0 ]; then
531 if [ "$1" == "--repo-policy" ]; then
536 if [ -z "$paramerror_str" ]; then
537 paramerror_str="No policy found for : '--repo-policy'"
540 if [ "$1" == "local" ] || [ "$1" == "remote" ]; then
541 echo "Option set - Image repo policy: "$1
546 if [ -z "$paramerror_str" ]; then
547 paramerror_str="Repo policy shall be 'local' or 'remote'"
553 if [ $paramerror -eq 0 ]; then
554 if [ "$1" == "--cluster-timeout" ]; then
559 if [ -z "$paramerror_str" ]; then
560 paramerror_str="No timeout value found for : '--cluster-timeout'"
563 #Check if positive int
564 case ${CLUSTER_TIME_OUT#[+]} in
567 if [ -z "$paramerror_str" ]; then
568 paramerror_str="Value for '--cluster-timeout' not an int : "$CLUSTER_TIME_OUT
573 echo "Option set - Cluster timeout: "$1
583 if [ $paramerror -eq 0 ] && [ $# -gt 0 ]; then
585 if [ -z "$paramerror_str" ]; then
586 paramerror_str="Unknown parameter(s): "$@
590 if [ $paramerror -eq 1 ]; then
591 echo -e $RED"Incorrect arg list: "$paramerror_str$ERED
596 # sourcing the selected env variables for the test case
597 if [ -f "$TEST_ENV_VAR_FILE" ]; then
598 echo -e $BOLD"Sourcing env vars from: "$TEST_ENV_VAR_FILE$EBOLD
601 if [ -z "$TEST_ENV_PROFILE" ] || [ -z "$SUPPORTED_PROFILES" ]; then
602 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
605 for prof in $SUPPORTED_PROFILES; do
606 if [ "$TEST_ENV_PROFILE" == "$prof" ]; then
607 echo -e $GREEN"Test case supports the selected test env file"$EGREEN
611 if [ $found_profile -ne 1 ]; then
612 echo -e $RED"Test case does not support the selected test env file"$ERED
613 echo "Profile: "$TEST_ENV_PROFILE" Supported profiles: "$SUPPORTED_PROFILES
614 echo -e $RED"Exiting...."$ERED
619 echo -e $RED"Selected env var file does not exist: "$TEST_ENV_VAR_FILE$ERED
620 echo " Select one of following env var file matching the intended target of the test"
621 echo " Restart the test using the flag '--env-file <path-to-env-file>"
622 ls $AUTOTEST_HOME/../common/test_env* | indent1
626 #This var need be preserved from the command line option, if set, when env var is sourced.
627 if [ ! -z "$TMP_RIC_SIM_PREFIX" ]; then
628 RIC_SIM_PREFIX=$TMP_RIC_SIM_PREFIX
631 if [ -z "$PROJECT_IMAGES_APP_NAMES" ]; then
632 echo -e $RED"Var PROJECT_IMAGES_APP_NAMES must be defined in: "$TEST_ENV_VAR_FILE $ERED
636 if [[ $SUPPORTED_RUNMODES != *"$RUNMODE"* ]]; then
637 echo -e $RED"This test script does not support RUNMODE $RUNMODE"$ERED
638 echo "Supported RUNMODEs: "$SUPPORTED_RUNMODES
642 # Choose list of included apps depending on run-mode
643 if [ $RUNMODE == "KUBE" ]; then
644 INCLUDED_IMAGES=$KUBE_INCLUDED_IMAGES
646 INCLUDED_IMAGES=$DOCKER_INCLUDED_IMAGES
649 # Check needed installed sw
651 if [ $? -ne 0 ] || [ -z tmp ]; then
652 echo -e $RED"python3 is required to run the test environment, pls install"$ERED
656 if [ $? -ne 0 ] || [ -z tmp ]; then
657 echo -e $RED"docker is required to run the test environment, pls install"$ERED
661 tmp=$(which docker-compose)
662 if [ $? -ne 0 ] || [ -z tmp ]; then
663 if [ $RUNMODE == "DOCKER" ]; then
664 echo -e $RED"docker-compose is required to run the test environment, pls install"$ERED
670 if [ $? -ne 0 ] || [ -z tmp ]; then
671 if [ $RUNMODE == "KUBE" ]; then
672 echo -e $RED"kubectl is required to run the test environment in kubernetes mode, pls install"$ERED
676 if [ $RUNMODE == "KUBE" ]; then
677 res=$(kubectl cluster-info 2>&1)
678 if [ $? -ne 0 ]; then
679 echo -e "$BOLD$RED############################################# $ERED$EBOLD"
680 echo -e $BOLD$RED"Command 'kubectl cluster-info' returned error $ERED$EBOLD"
681 echo -e "$BOLD$RED############################################# $ERED$EBOLD"
683 echo "kubectl response:"
686 echo "This script may have been started with user with no permission to run kubectl"
687 echo "Try running with 'sudo' or set 'KUBECONFIG'"
688 echo "Do either 1, 2 or 3 "
692 echo -e $BOLD"sudo <test-script-and-parameters>"$EBOLD
695 echo "Export KUBECONFIG and pass env to sudo - (replace user)"
696 echo -e $BOLD"export KUBECONFIG='/home/<user>/.kube/config'"$EBOLD
697 echo -e $BOLD"sudo -E <test-script-and-parameters>"$EBOLD
700 echo "Set KUBECONFIG inline (replace user)"
701 echo -e $BOLD"sudo KUBECONFIG='/home/<user>/.kube/config' <test-script-and-parameters>"$EBOLD
708 echo -e $BOLD"Checking configured image setting for this test case"$EBOLD
710 #Temp var to check for image variable name errors
712 #Create a file with image info for later printing as a table
713 image_list_file="./tmp/.image-list"
714 echo -e "Application\tApp short name\tImage\ttag\ttag-switch" > $image_list_file
716 # Check if image env var is set and if so export the env var with image to use (used by docker compose files)
717 # arg: <app-short-name> <target-variable-name> <image-variable-name> <image-tag-variable-name> <tag-suffix> <image name>
718 __check_and_create_image_var() {
720 if [ $# -ne 6 ]; then
721 echo "Expected arg: <app-short-name> <target-variable-name> <image-variable-name> <image-tag-variable-name> <tag-suffix> <image name>"
726 __check_included_image $1
727 if [ $? -ne 0 ]; then
728 echo -e "$6\t$1\t<image-excluded>\t<no-tag>" >> $image_list_file
729 # Image is excluded since the corresponding app is not used in this test
733 #Create var from the input var names
738 optional_image_repo_target=""
740 if [ -z $image ]; then
741 __check_ignore_image $1
742 if [ $? -eq 0 ]; then
745 app_ds="<app ignored>"
747 echo -e "$app_ds\t$1\t<image-ignored>\t<no-tag>" >> $image_list_file
748 # Image is ignored since the corresponding the images is not set in the env file
749 __remove_included_image $1 # Remove the image from the list of included images
752 echo -e $RED"\$"$3" not set in $TEST_ENV_VAR_FILE"$ERED
755 tmp=$tmp"<no-image>\t"
758 optional_image_repo_target=$image
760 #Add repo depending on image type
761 if [ "$5" == "REMOTE_RELEASE" ]; then
762 image=$NEXUS_RELEASE_REPO$image
764 if [ "$5" == "REMOTE" ]; then
765 image=$NEXUS_STAGING_REPO$image
767 if [ "$5" == "REMOTE_SNAPSHOT" ]; then
768 image=$NEXUS_SNAPSHOT_REPO$image
770 if [ "$5" == "REMOTE_PROXY" ]; then
771 image=$NEXUS_PROXY_REPO$image
773 if [ "$5" == "REMOTE_RELEASE_ONAP" ]; then
774 image=$NEXUS_RELEASE_REPO_ONAP$image
776 if [ "$5" == "REMOTE_RELEASE_ORAN" ]; then
777 image=$NEXUS_RELEASE_REPO_ORAN$image
779 #No nexus repo added for local images, tag: LOCAL
783 echo -e $RED"\$"$tmptag" not set in $TEST_ENV_VAR_FILE"$ERED
791 echo -e "$tmp" >> $image_list_file
793 export "${2}"=$image":"$tag #Note, this var may be set to the value of the target value below in __check_and_pull_image
795 remote_or_local_push=false
796 if [ ! -z "$IMAGE_REPO_ADR" ] && [[ $5 != *"PROXY"* ]]; then
797 if [ $5 == "LOCAL" ]; then
798 remote_or_local_push=true
800 if [[ $5 == *"REMOTE"* ]]; then
801 if [ "$IMAGE_REPO_POLICY" == "remote" ]; then
802 remote_or_local_push=true
806 if $remote_or_local_push; then # Only re-tag and push images according to policy, if repo is given
807 export "${2}_SOURCE"=$image":"$tag #Var to keep the actual source image
808 if [[ $optional_image_repo_target == *"/"* ]]; then # Replace all / with _ for images to push to external repo
809 optional_image_repo_target_tmp=${optional_image_repo_target//\//_}
810 optional_image_repo_target=$optional_image_repo_target_tmp
812 export "${2}_TARGET"=$IMAGE_REPO_ADR"/"$optional_image_repo_target":"$tag #Create image + tag for optional image repo - pushed later if needed
814 export "${2}_SOURCE"=""
815 export "${2}_TARGET"=""
819 # Check if app uses image included in this test run
820 # Returns 0 if image is included, 1 if not
821 __check_included_image() {
822 for im in $INCLUDED_IMAGES; do
823 if [ "$1" == "$im" ]; then
830 # Check if app uses a project image
831 # Returns 0 if image is included, 1 if not
832 __check_project_image() {
833 for im in $PROJECT_IMAGES; do
834 if [ "$1" == "$im" ]; then
841 # Check if app uses image built by the test script
842 # Returns 0 if image is included, 1 if not
843 __check_image_local_build() {
844 for im in $LOCAL_IMAGE_BUILD; do
845 if [ "$1" == "$im" ]; then
852 # Check if app image is conditionally ignored in this test run
853 # Returns 0 if image is conditionally ignored, 1 if not
854 __check_ignore_image() {
855 for im in $CONDITIONALLY_IGNORED_IMAGES; do
856 if [ "$1" == "$im" ]; then
863 # Removed image from included list of included images
864 # Used when an image is marked as conditionally ignored
865 __remove_included_image() {
867 for im in $INCLUDED_IMAGES; do
868 if [ "$1" != "$im" ]; then
869 tmp_img_rem_list=$tmp_img_rem_list" "$im
872 INCLUDED_IMAGES=$tmp_img_rem_list
876 # Check if app is included in the prestarted set of apps
877 # Returns 0 if image is included, 1 if not
878 __check_prestarted_image() {
879 for im in $KUBE_PRESTARTED_IMAGES; do
880 if [ "$1" == "$im" ]; then
887 # Check if an app shall use a local image, based on the cmd parameters
888 __check_image_local_override() {
889 for im in $USE_LOCAL_IMAGES; do
890 if [ "$1" == "$im" ]; then
897 # Check if app uses image override
898 # Returns the image/tag suffix LOCAL for local image or REMOTE/REMOTE_RELEASE/REMOTE_SNAPSHOT for staging/release/snapshot image
899 __check_image_override() {
901 for im in $ORAN_IMAGES_APP_NAMES; do
902 if [ "$1" == "$im" ]; then
903 echo "REMOTE_RELEASE_ORAN"
908 for im in $ONAP_IMAGES_APP_NAMES; do
909 if [ "$1" == "$im" ]; then
910 echo "REMOTE_RELEASE_ONAP"
916 for im in $PROJECT_IMAGES_APP_NAMES; do
917 if [ "$1" == "$im" ]; then
922 if [ $found -eq 0 ]; then
928 if [ $IMAGE_CATEGORY == "RELEASE" ]; then
929 suffix="REMOTE_RELEASE"
931 if [ $IMAGE_CATEGORY == "DEV" ]; then
935 for im in $USE_STAGING_IMAGES; do
936 if [ "$1" == "$im" ]; then
941 for im in $USE_RELEASE_IMAGES; do
942 if [ "$1" == "$im" ]; then
943 suffix="REMOTE_RELEASE"
947 for im in $USE_SNAPSHOT_IMAGES; do
948 if [ "$1" == "$im" ]; then
949 suffix="REMOTE_SNAPSHOT"
953 for im in $USE_LOCAL_IMAGES; do
954 if [ "$1" == "$im" ]; then
960 if [ $CTR -gt 1 ]; then
966 # Function to re-tag and image and push to another image repo
967 __retag_and_push_image() {
968 if [ ! -z "$IMAGE_REPO_ADR" ]; then
970 trg_var_name=$1_"TARGET" # This var is created in func __check_and_create_image_var
971 target_image="${!trg_var_name}"
973 if [ -z $target_image ]; then
974 return 0 # Image with no target shall not be pushed
977 echo -ne " Attempt to re-tag image to: ${BOLD}${target_image}${EBOLD}${SAMELINE}"
978 tmp=$(docker image tag $source_image ${target_image} )
979 if [ $? -ne 0 ]; then
980 docker stop $tmp &> ./tmp/.dockererr
983 echo -e " Attempt to re-tag image to: ${BOLD}${target_image}${EBOLD} - ${RED}Failed${ERED}"
987 echo -e " Attempt to re-tag image to: ${BOLD}${target_image}${EBOLD} - ${GREEN}OK${EGREEN}"
989 echo -ne " Attempt to push re-tagged image: ${BOLD}${target_image}${EBOLD}${SAMELINE}"
990 tmp=$(docker push ${target_image} )
991 if [ $? -ne 0 ]; then
992 docker stop $tmp &> ./tmp/.dockererr
995 echo -e " Attempt to push re-tagged image: ${BOLD}${target_image}${EBOLD} - ${RED}Failed${ERED}"
999 echo -e " Attempt to push re-tagged image: ${BOLD}${target_image}${EBOLD} - ${GREEN}OK${EGREEN}"
1001 export "${1}"=$target_image
1006 #Function to check if image exist and stop+remove the container+pull new images as needed
1007 #args <script-start-arg> <descriptive-image-name> <container-base-name> <image-with-tag-var-name>
1008 __check_and_pull_image() {
1010 source_image="${!4}"
1012 echo -e " Checking $BOLD$2$EBOLD container(s) with basename: $BOLD$3$EBOLD using image: $BOLD$source_image$EBOLD"
1013 format_string="\"{{.Repository}}\\t{{.Tag}}\\t{{.CreatedSince}}\\t{{.Size}}\""
1014 tmp_im=$(docker images --format $format_string $source_image)
1016 if [ $1 == "local" ]; then
1017 if [ -z "$tmp_im" ]; then
1018 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
1022 echo -e " "$2" (local image): \033[1m"$source_image"\033[0m "$GREEN"OK"$EGREEN
1024 elif [ $1 == "remote" ] || [ $1 == "remote-remove" ]; then
1025 if [ $1 == "remote-remove" ]; then
1026 if [ $RUNMODE == "DOCKER" ]; then
1027 echo -ne " Attempt to stop and remove container(s), if running - ${SAMELINE}"
1028 tmp=$(docker ps -aq --filter name=${3} --filter network=${DOCKER_SIM_NWNAME})
1029 if [ $? -eq 0 ] && [ ! -z "$tmp" ]; then
1030 docker stop $tmp &> ./tmp/.dockererr
1031 if [ $? -ne 0 ]; then
1034 echo -e $RED" Container(s) could not be stopped - try manual stopping the container(s)"$ERED
1035 cat ./tmp/.dockererr
1039 echo -ne " Attempt to stop and remove container(s), if running - "$GREEN"stopped"$EGREEN"${SAMELINE}"
1040 tmp=$(docker ps -aq --filter name=${3} --filter network=${DOCKER_SIM_NWNAME}) &> /dev/null
1041 if [ $? -eq 0 ] && [ ! -z "$tmp" ]; then
1042 docker rm $tmp &> ./tmp/.dockererr
1043 if [ $? -ne 0 ]; then
1046 echo -e $RED" Container(s) could not be removed - try manual removal of the container(s)"$ERED
1047 cat ./tmp/.dockererr
1051 echo -e " Attempt to stop and remove container(s), if running - "$GREEN"stopped removed"$EGREEN
1057 if [ -z "$tmp_im" ]; then
1058 echo -ne " Pulling image${SAMELINE}"
1059 out=$(docker pull $source_image)
1060 if [ $? -ne 0 ]; then
1062 echo -e " Pulling image -$RED could not be pulled"$ERED
1064 echo $out > ./tmp/.dockererr
1068 echo $out > ./tmp/.dockererr
1069 if [[ $out == *"up to date"* ]]; then
1070 echo -e " Pulling image -$GREEN Image is up to date $EGREEN"
1071 elif [[ $out == *"Downloaded newer image"* ]]; then
1072 echo -e " Pulling image -$GREEN Newer image pulled $EGREEN"
1074 echo -e " Pulling image -$GREEN Pulled $EGREEN"
1077 echo -e " Pulling image -$GREEN OK $EGREEN(exists in local repository)"
1081 __retag_and_push_image $4
1086 setup_testenvironment() {
1087 # Check that image env setting are available
1090 # Image var setup for all project images included in the test
1091 for imagename in $APP_SHORT_NAMES; do
1092 __check_included_image $imagename
1094 __check_project_image $imagename
1096 if [ $incl -eq 0 ]; then
1097 if [ $proj -eq 0 ]; then
1098 IMAGE_SUFFIX=$(__check_image_override $imagename)
1099 if [ $? -ne 0 ]; then
1100 echo -e $RED"Image setting from cmd line not consistent for $imagename."$ERED
1106 # A function name is created from the app short name
1107 # for example app short name 'ECS' -> produce the function
1108 # name __ECS_imagesetup
1109 # This function is called and is expected to exist in the imported
1110 # file for the ecs test functions
1111 # The resulting function impl will call '__check_and_create_image_var' function
1112 # with appropriate parameters
1113 # If the image suffix is none, then the component decides the suffix
1114 function_pointer="__"$imagename"_imagesetup"
1115 $function_pointer $IMAGE_SUFFIX
1119 #Errors in image setting - exit
1120 if [ $IMAGE_ERR -ne 0 ]; then
1124 #Print a tables of the image settings
1125 echo -e $BOLD"Images configured for start arg: "$START_ARG $EBOLD
1126 column -t -s $'\t' $image_list_file | indent1
1130 #Set the SIM_GROUP var
1131 echo -e $BOLD"Setting var to main dir of all container/simulator scripts"$EBOLD
1132 if [ -z "$SIM_GROUP" ]; then
1133 SIM_GROUP=$AUTOTEST_HOME/../simulator-group
1134 if [ ! -d $SIM_GROUP ]; then
1135 echo "Trying to set env var SIM_GROUP to dir 'simulator-group' in the nontrtric repo, but failed."
1136 echo -e $RED"Please set the SIM_GROUP manually in the applicable $TEST_ENV_VAR_FILE"$ERED
1139 echo " SIM_GROUP auto set to: " $SIM_GROUP
1141 elif [ $SIM_GROUP = *simulator_group ]; then
1142 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
1145 echo " SIM_GROUP env var already set to: " $SIM_GROUP
1150 #Temp var to check for image pull errors
1153 # The following sequence pull the configured images
1156 echo -e $BOLD"Pulling configured images, if needed"$EBOLD
1157 if [ ! -z "$IMAGE_REPO_ADR" ] && [ $IMAGE_REPO_POLICY == "local" ]; then
1158 echo -e $YELLOW" Excluding all remote image check/pull when running with image repo: $IMAGE_REPO_ADR and image policy $IMAGE_REPO_POLICY"$EYELLOW
1160 for imagename in $APP_SHORT_NAMES; do
1161 __check_included_image $imagename
1163 __check_project_image $imagename
1165 if [ $incl -eq 0 ]; then
1166 if [ $proj -eq 0 ]; then
1167 START_ARG_MOD=$START_ARG
1168 __check_image_local_override $imagename
1169 if [ $? -eq 1 ]; then
1170 START_ARG_MOD="local"
1173 START_ARG_MOD=$START_ARG
1175 __check_image_local_build $imagename
1176 #No pull of images built locally
1177 if [ $? -ne 0 ]; then
1178 # A function name is created from the app short name
1179 # for example app short name 'HTTPPROXY' -> produce the function
1180 # name __HTTPPROXY_imagesetup
1181 # This function is called and is expected to exist in the imported
1182 # file for the httpproxy test functions
1183 # The resulting function impl will call '__check_and_pull_image' function
1184 # with appropriate parameters
1185 function_pointer="__"$imagename"_imagepull"
1186 $function_pointer $START_ARG_MOD $START_ARG
1189 echo -e $YELLOW" Excluding $imagename image from image check/pull"$EYELLOW
1194 #Errors in image setting - exit
1195 if [ $IMAGE_ERR -ne 0 ]; then
1197 echo "#################################################################################################"
1198 echo -e $RED"One or more images could not be pulled or containers using the images could not be stopped/removed"$ERED
1199 echo -e $RED"Or local image, overriding remote image, does not exist"$ERED
1200 if [ $IMAGE_CATEGORY == "DEV" ]; then
1201 echo -e $RED"Note that SNAPSHOT images may be purged from nexus after a certain period."$ERED
1202 echo -e $RED"In that case, switch to use a released image instead."$ERED
1204 echo "#################################################################################################"
1211 echo -e $BOLD"Building images needed for test"$EBOLD
1213 for imagename in $APP_SHORT_NAMES; do
1214 cd $AUTOTEST_HOME #Always reset to orig dir
1215 __check_image_local_build $imagename
1216 if [ $? -eq 0 ]; then
1217 __check_included_image $imagename
1218 if [ $? -eq 0 ]; then
1219 # A function name is created from the app short name
1220 # for example app short name 'MR' -> produce the function
1221 # name __MR_imagebuild
1222 # This function is called and is expected to exist in the imported
1223 # file for the mr test functions
1224 # The resulting function impl shall build the imagee
1225 function_pointer="__"$imagename"_imagebuild"
1229 echo -e $YELLOW" Excluding image for app $imagename from image build"$EYELLOW
1234 cd $AUTOTEST_HOME # Just to make sure...
1238 # Create a table of the images used in the script - from local repo
1239 echo -e $BOLD"Local docker registry images used in this test script"$EBOLD
1241 docker_tmp_file=./tmp/.docker-images-table
1242 format_string="{{.Repository}}\\t{{.Tag}}\\t{{.CreatedSince}}\\t{{.Size}}\\t{{.CreatedAt}}"
1243 echo -e "Application\tRepository\tTag\tCreated since\tSize\tCreated at" > $docker_tmp_file
1245 for imagename in $APP_SHORT_NAMES; do
1246 __check_included_image $imagename
1247 if [ $? -eq 0 ]; then
1248 # Only print image data if image repo is null, or if image repo is set and image is local
1250 if [ -z "$IMAGE_REPO_ADR" ]; then
1253 __check_image_local_build $imagename
1254 if [ $? -eq 0 ]; then
1258 if [ $print_image_data -eq 1 ]; then
1259 # A function name is created from the app short name
1260 # for example app short name 'MR' -> produce the function
1261 # name __MR_imagebuild
1262 # This function is called and is expected to exist in the imported
1263 # file for the mr test functions
1264 # The resulting function impl shall build the imagee
1265 function_pointer="__"$imagename"_image_data"
1266 $function_pointer "$format_string" $docker_tmp_file
1271 column -t -s $'\t' $docker_tmp_file | indent1
1275 if [ ! -z "$IMAGE_REPO_ADR" ]; then
1277 # Create a table of the images used in the script - from remote repo
1278 echo -e $BOLD"Remote repo images used in this test script"$EBOLD
1279 echo -e $YELLOW"-- Note: These image will be pulled when the container starts. Images not managed by the test engine --"$EYELLOW
1281 docker_tmp_file=./tmp/.docker-images-table
1282 format_string="{{.Repository}}\\t{{.Tag}}"
1283 echo -e "Application\tRepository\tTag" > $docker_tmp_file
1285 for imagename in $APP_SHORT_NAMES; do
1286 __check_included_image $imagename
1287 if [ $? -eq 0 ]; then
1288 # Only print image data if image repo is null, or if image repo is set and image is local
1289 __check_image_local_build $imagename
1290 if [ $? -ne 0 ]; then
1291 # A function name is created from the app short name
1292 # for example app short name 'MR' -> produce the function
1293 # name __MR_imagebuild
1294 # This function is called and is expected to exist in the imported
1295 # file for the mr test functions
1296 # The resulting function impl shall build the imagee
1297 function_pointer="__"$imagename"_image_data"
1298 $function_pointer "$format_string" $docker_tmp_file
1303 column -t -s $'\t' $docker_tmp_file | indent1
1308 if [ $RUNMODE == "KUBE" ]; then
1310 echo "================================================================================="
1311 echo "================================================================================="
1313 if [ -z "$IMAGE_REPO_ADR" ]; then
1314 echo -e $YELLOW" The image pull policy is set to 'Never' - assuming a local image repo is available for all images"$EYELLOW
1315 echo -e " This setting only works on single node clusters on the local machine"
1316 echo -e " It does not work with multi-node clusters or remote clusters. "
1317 export KUBE_IMAGE_PULL_POLICY="Never"
1319 echo -e $YELLOW" The image pull policy is set to 'Always'"$EYELLOW
1320 echo -e " This setting work on local clusters, multi-node clusters and remote cluster. "
1321 echo -e " Only locally built images are managed. Remote images are always pulled from remote repos"
1322 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"
1323 export KUBE_IMAGE_PULL_POLICY="Always"
1325 CLUSTER_IP=$(kubectl config view -o jsonpath={.clusters[0].cluster.server} | awk -F[/:] '{print $4}')
1326 echo -e $YELLOW" The cluster hostname/ip is: $CLUSTER_IP"$EYELLOW
1328 echo "================================================================================="
1329 echo "================================================================================="
1333 echo -e $BOLD"======================================================="$EBOLD
1334 echo -e $BOLD"== Common test setup completed - test script begins =="$EBOLD
1335 echo -e $BOLD"======================================================="$EBOLD
1340 # Function to print the test result, shall be the last cmd in a test script
1342 # (Function for test scripts)
1346 duration=$((TCTEST_END-TCTEST_START))
1348 echo "-------------------------------------------------------------------------------------------------"
1349 echo "------------------------------------- Test case: "$ATC
1350 echo "------------------------------------- Ended: "$(date)
1351 echo "-------------------------------------------------------------------------------------------------"
1352 echo "-- Description: "$TC_ONELINE_DESCR
1353 echo "-- Execution time: " $duration " seconds"
1354 echo "-- Used env file: "$TEST_ENV_VAR_FILE
1355 echo "-------------------------------------------------------------------------------------------------"
1356 echo "------------------------------------- RESULTS"
1360 if [ $RES_DEVIATION -gt 0 ]; then
1361 echo "Test case deviations"
1362 echo "===================================="
1366 echo "Timer measurement in the test script"
1367 echo "===================================="
1368 column -t -s $'\t' $TIMER_MEASUREMENTS
1371 total=$((RES_PASS+RES_FAIL))
1372 if [ $RES_TEST -eq 0 ]; then
1373 echo -e "\033[1mNo tests seem to have been executed. Check the script....\033[0m"
1374 echo -e "\033[31m\033[1m ___ ___ ___ ___ ___ _____ ___ _ ___ _ _ _ ___ ___ \033[0m"
1375 echo -e "\033[31m\033[1m/ __|/ __| _ \_ _| _ \_ _| | __/_\ |_ _| | | | | | _ \ __|\033[0m"
1376 echo -e "\033[31m\033[1m\__ \ (__| /| || _/ | | | _/ _ \ | || |_| |_| | / _| \033[0m"
1377 echo -e "\033[31m\033[1m|___/\___|_|_\___|_| |_| |_/_/ \_\___|____\___/|_|_\___|\033[0m"
1378 elif [ $total != $RES_TEST ]; then
1379 echo -e "\033[1mTotal number of tests does not match the sum of passed and failed tests. Check the script....\033[0m"
1380 echo -e "\033[31m\033[1m ___ ___ ___ ___ ___ _____ ___ _ ___ _ _ _ ___ ___ \033[0m"
1381 echo -e "\033[31m\033[1m/ __|/ __| _ \_ _| _ \_ _| | __/_\ |_ _| | | | | | _ \ __|\033[0m"
1382 echo -e "\033[31m\033[1m\__ \ (__| /| || _/ | | | _/ _ \ | || |_| |_| | / _| \033[0m"
1383 echo -e "\033[31m\033[1m|___/\___|_|_\___|_| |_| |_/_/ \_\___|____\___/|_|_\___|\033[0m"
1384 elif [ $RES_CONF_FAIL -ne 0 ]; then
1385 echo -e "\033[1mOne or more configurations has failed. Check the script log....\033[0m"
1386 echo -e "\033[31m\033[1m ___ ___ ___ ___ ___ _____ ___ _ ___ _ _ _ ___ ___ \033[0m"
1387 echo -e "\033[31m\033[1m/ __|/ __| _ \_ _| _ \_ _| | __/_\ |_ _| | | | | | _ \ __|\033[0m"
1388 echo -e "\033[31m\033[1m\__ \ (__| /| || _/ | | | _/ _ \ | || |_| |_| | / _| \033[0m"
1389 echo -e "\033[31m\033[1m|___/\___|_|_\___|_| |_| |_/_/ \_\___|____\___/|_|_\___|\033[0m"
1390 elif [ $RES_PASS = $RES_TEST ]; then
1391 echo -e "All tests \033[32m\033[1mPASS\033[0m"
1392 echo -e "\033[32m\033[1m ___ _ ___ ___ \033[0m"
1393 echo -e "\033[32m\033[1m | _ \/_\ / __/ __| \033[0m"
1394 echo -e "\033[32m\033[1m | _/ _ \\__ \__ \\ \033[0m"
1395 echo -e "\033[32m\033[1m |_|/_/ \_\___/___/ \033[0m"
1398 # Update test suite counter
1399 if [ -f .tmp_tcsuite_pass_ctr ]; then
1400 tmpval=$(< .tmp_tcsuite_pass_ctr)
1402 echo $tmpval > .tmp_tcsuite_pass_ctr
1404 if [ -f .tmp_tcsuite_pass ]; then
1405 echo " - "$ATC " -- "$TC_ONELINE_DESCR" Execution time: "$duration" seconds" >> .tmp_tcsuite_pass
1407 #Create file with OK exit code
1408 echo "0" > "$AUTOTEST_HOME/.result$ATC.txt"
1410 echo -e "One or more tests with status \033[31m\033[1mFAIL\033[0m "
1411 echo -e "\033[31m\033[1m ___ _ ___ _ \033[0m"
1412 echo -e "\033[31m\033[1m | __/_\ |_ _| | \033[0m"
1413 echo -e "\033[31m\033[1m | _/ _ \ | || |__ \033[0m"
1414 echo -e "\033[31m\033[1m |_/_/ \_\___|____|\033[0m"
1416 # Update test suite counter
1417 if [ -f .tmp_tcsuite_fail_ctr ]; then
1418 tmpval=$(< .tmp_tcsuite_fail_ctr)
1420 echo $tmpval > .tmp_tcsuite_fail_ctr
1422 if [ -f .tmp_tcsuite_fail ]; then
1423 echo " - "$ATC " -- "$TC_ONELINE_DESCR" Execution time: "$duration" seconds" >> .tmp_tcsuite_fail
1427 echo "++++ Number of tests: "$RES_TEST
1428 echo "++++ Number of passed tests: "$RES_PASS
1429 echo "++++ Number of failed tests: "$RES_FAIL
1431 echo "++++ Number of failed configs: "$RES_CONF_FAIL
1433 echo "++++ Number of test case deviations: "$RES_DEVIATION
1435 echo "------------------------------------- Test case complete ---------------------------------"
1436 echo "-------------------------------------------------------------------------------------------------"
1440 #####################################################################
1441 ###### Functions for start, configuring, stoping, cleaning etc ######
1442 #####################################################################
1444 # Start timer for time measurement
1445 # args - (any args will be printed though)
1447 echo -e $BOLD"INFO(${BASH_LINENO[0]}): "${FUNCNAME[0]}"," $@ $EBOLD
1449 echo " Timer started: $(date)"
1452 # Print the value of the time (in seconds)
1453 # args - <timer message to print> - timer value and message will be printed both on screen
1454 # and in the timer measurement report
1456 echo -e $BOLD"INFO(${BASH_LINENO[0]}): "${FUNCNAME[0]}"," $@ $EBOLD
1457 if [ $# -lt 1 ]; then
1459 __print_err "need 1 or more args, <timer message to print>" $@
1462 duration=$(($SECONDS-$TC_TIMER))
1463 if [ $duration -eq 0 ]; then
1464 duration="<1 second"
1466 duration=$duration" seconds"
1468 echo " Timer duration :" $duration
1470 echo -e "${@:1} \t $duration" >> $TIMER_MEASUREMENTS
1473 # Print the value of the time (in seconds) and reset the timer
1474 # args - <timer message to print> - timer value and message will be printed both on screen
1475 # and in the timer measurement report
1476 print_and_reset_timer() {
1477 echo -e $BOLD"INFO(${BASH_LINENO[0]}): "${FUNCNAME[0]}"," $@ $EBOLD
1478 if [ $# -lt 1 ]; then
1480 __print_err "need 1 or more args, <timer message to print>" $@
1483 duration=$(($SECONDS-$TC_TIMER))" seconds"
1484 if [ $duration -eq 0 ]; then
1485 duration="<1 second"
1487 duration=$duration" seconds"
1489 echo " Timer duration :" $duration
1493 echo -e "${@:1} \t $duration" >> $TIMER_MEASUREMENTS
1496 # Print info about a deviations from intended tests
1497 # Each deviation counted is also printed in the testreport
1498 # args <deviation message to print>
1500 echo -e $BOLD"DEVIATION(${BASH_LINENO[0]}): "${FUNCNAME[0]} $EBOLD
1501 if [ $# -lt 1 ]; then
1503 __print_err "need 1 or more args, <deviation message to print>" $@
1507 echo -e $BOLD$YELLOW" Test case deviation: ${@:1}"$EYELLOW$EBOLD
1508 echo "Line: ${BASH_LINENO[0]} - ${@:1}" >> $DEVIATION_FILE
1512 # Stop at first FAIL test case and take all logs - only for debugging/trouble shooting
1513 __check_stop_at_error() {
1514 if [ $STOP_AT_ERROR -eq 1 ]; then
1515 echo -e $RED"Test script configured to stop at first FAIL, taking all logs and stops"$ERED
1516 store_logs "STOP_AT_ERROR"
1522 # Stop and remove all containers
1524 # (Not for test scripts)
1525 __clean_containers() {
1527 echo -e $BOLD"Docker clean and stopping and removing all running containers, by container name"$EBOLD
1530 running_contr_file="./tmp/running_contr.txt"
1531 > $running_contr_file
1533 # Get list of all containers started by the test script
1534 for imagename in $APP_SHORT_NAMES; do
1535 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
1538 tab_heading1="App display name"
1539 tab_heading2="App short name"
1540 tab_heading3="Container name"
1542 tab_heading1_len=${#tab_heading1}
1543 tab_heading2_len=${#tab_heading2}
1544 tab_heading3_len=${#tab_heading3}
1546 #Calc field lengths of each item in the list of containers
1548 if (( $cntr % 3 == 0 ));then
1549 if [ ${#p} -gt $tab_heading1_len ]; then
1550 tab_heading1_len=${#p}
1553 if (( $cntr % 3 == 1));then
1554 if [ ${#p} -gt $tab_heading2_len ]; then
1555 tab_heading2_len=${#p}
1558 if (( $cntr % 3 == 2));then
1559 if [ ${#p} -gt $tab_heading3_len ]; then
1560 tab_heading3_len=${#p}
1564 done <$running_contr_file
1566 let tab_heading1_len=tab_heading1_len+2
1567 while (( ${#tab_heading1} < $tab_heading1_len)); do
1568 tab_heading1="$tab_heading1"" "
1571 let tab_heading2_len=tab_heading2_len+2
1572 while (( ${#tab_heading2} < $tab_heading2_len)); do
1573 tab_heading2="$tab_heading2"" "
1576 let tab_heading3_len=tab_heading3_len+2
1577 while (( ${#tab_heading3} < $tab_heading3_len)); do
1578 tab_heading3="$tab_heading3"" "
1581 echo " $tab_heading1$tab_heading2$tab_heading3"" Actions"
1584 if (( $cntr % 3 == 0 ));then
1587 heading_len=$tab_heading1_len
1589 if (( $cntr % 3 == 1));then
1591 heading_len=$tab_heading2_len
1593 if (( $cntr % 3 == 2));then
1596 heading_len=$tab_heading3_len
1598 while (( ${#heading} < $heading_len)); do
1599 heading="$heading"" "
1602 if (( $cntr % 3 == 2));then
1603 echo -ne $row$SAMELINE
1604 echo -ne " $row ${GREEN}stopping...${EGREEN}${SAMELINE}"
1605 docker stop $(docker ps -qa --filter name=${contr} --filter network=$DOCKER_SIM_NWNAME) &> /dev/null
1606 echo -ne " $row ${GREEN}stopped removing...${EGREEN}${SAMELINE}"
1607 docker rm --force $(docker ps -qa --filter name=${contr} --filter network=$DOCKER_SIM_NWNAME) &> /dev/null
1608 echo -e " $row ${GREEN}stopped removed ${EGREEN}"
1611 done <$running_contr_file
1615 echo -e $BOLD" Removing docker network"$EBOLD
1616 TMP=$(docker network ls -q --filter name=$DOCKER_SIM_NWNAME)
1617 if [ "$TMP" == $DOCKER_SIM_NWNAME ]; then
1618 docker network rm $DOCKER_SIM_NWNAME | indent2
1619 if [ $? -ne 0 ]; then
1620 echo -e $RED" Cannot remove docker network. Manually remove or disconnect containers from $DOCKER_SIM_NWNAME"$ERED
1624 echo -e "$GREEN Done$EGREEN"
1626 echo -e $BOLD" Removing all unused docker neworks"$EBOLD
1627 docker network prune --force | indent2
1628 echo -e "$GREEN Done$EGREEN"
1630 echo -e $BOLD" Removing all unused docker volumes"$EBOLD
1631 docker volume prune --force | indent2
1632 echo -e "$GREEN Done$EGREEN"
1634 echo -e $BOLD" Removing all dangling/untagged docker images"$EBOLD
1635 docker rmi --force $(docker images -q -f dangling=true) &> /dev/null
1636 echo -e "$GREEN Done$EGREEN"
1639 CONTRS=$(docker ps | awk '$1 != "CONTAINER" { n++ }; END { print n+0 }')
1640 if [ $? -eq 0 ]; then
1641 if [ $CONTRS -ne 0 ]; then
1642 echo -e $RED"Containers running, may cause distubance to the test case"$ERED
1643 docker ps -a | indent1
1649 ###################################
1650 ### Functions for kube management
1651 ###################################
1653 # Get resource type for scaling
1654 # args: <resource-name> <namespace>
1655 __kube_get_resource_type() {
1656 kubectl get deployment $1 -n $2 1> /dev/null 2> ./tmp/kubeerr
1657 if [ $? -eq 0 ]; then
1661 kubectl get sts $1 -n $2 1> /dev/null 2> ./tmp/kubeerr
1662 if [ $? -eq 0 ]; then
1666 echo "unknown-resource-type"
1670 # Scale a kube resource to a specific count
1671 # args: <resource-type> <resource-name> <namespace> <target-count>
1672 # (Not for test scripts)
1674 echo -ne " Setting $1 $2 replicas=$4 in namespace $3"$SAMELINE
1675 kubectl scale $1 $2 -n $3 --replicas=$4 1> /dev/null 2> ./tmp/kubeerr
1676 if [ $? -ne 0 ]; then
1677 echo -e " Setting $1 $2 replicas=$4 in namespace $3 $RED Failed $ERED"
1679 echo " Message: $(<./tmp/kubeerr)"
1682 echo -e " Setting $1 $2 replicas=$4 in namespace $3 $GREEN OK $EGREEN"
1687 for i in {1..500}; do
1688 count=$(kubectl get $1/$2 -n $3 -o jsonpath='{.status.replicas}' 2> /dev/null)
1690 if [ -z "$count" ]; then
1691 #No value is sometimes returned for some reason, in case the resource has replica 0
1694 if [ $retcode -ne 0 ]; then
1695 echo -e "$RED Cannot fetch current replica count for $1 $2 in namespace $3 $ERED"
1700 if [ $count -ne $4 ]; then
1701 echo -ne " Waiting for $1 $2 replicas=$4 in namespace $3. Replicas=$count after $(($SECONDS-$TSTART)) seconds $SAMELINE"
1704 echo -e " Waiting for $1 $2 replicas=$4 in namespace $3. Replicas=$count after $(($SECONDS-$TSTART)) seconds"
1705 echo -e " Replicas=$4 after $(($SECONDS-$TSTART)) seconds $GREEN OK $EGREEN"
1711 echo -e "$RED Replica count did not reach target replicas=$4. Failed with replicas=$count $ERED"
1716 # Scale all kube resource sets to 0 in a namespace for resources having a certain lable and label-id
1717 # This function does not wait for the resource to reach 0
1718 # args: <namespace> <label-name> <label-id>
1719 # (Not for test scripts)
1720 __kube_scale_all_resources() {
1724 resources="deployment replicaset statefulset"
1725 for restype in $resources; do
1726 result=$(kubectl get $restype -n $namespace -o jsonpath='{.items[?(@.metadata.labels.'$labelname'=="'$labelid'")].metadata.name}')
1727 if [ $? -eq 0 ] && [ ! -z "$result" ]; then
1728 deleted_resourcetypes=$deleted_resourcetypes" "$restype
1729 for resid in $result; do
1730 echo -ne " Ordered caling $restype $resid from namespace $namespace with label $labelname=$labelid to 0"$SAMELINE
1731 kubectl scale $restype $resid -n $namespace --replicas=0 1> /dev/null 2> ./tmp/kubeerr
1732 echo -e " Ordered scaling $restype $resid from namespace $namespace with label $labelname=$labelid to 0 $GREEN OK $EGREEN"
1738 # Scale all kube resource sets to 0 in a namespace for resources having a certain lable and label-id
1739 # This function do wait for the resource to reach 0
1740 # args: <namespace> <label-name> <label-id>
1741 # (Not for test scripts)
1742 __kube_scale_and_wait_all_resources() {
1746 resources="deployment replicaset statefulset"
1748 while [ $scaled_all -ne 0 ]; do
1750 for restype in $resources; do
1751 result=$(kubectl get $restype -n $namespace -o jsonpath='{.items[?(@.metadata.labels.'$labelname'=="'$labelid'")].metadata.name}')
1752 if [ $? -eq 0 ] && [ ! -z "$result" ]; then
1753 for resid in $result; do
1754 echo -e " Ordered scaling $restype $resid from namespace $namespace with label $labelname=$labelid to 0"
1755 kubectl scale $restype $resid -n $namespace --replicas=0 1> /dev/null 2> ./tmp/kubeerr
1758 while [ $count -ne 0 ]; do
1759 count=$(kubectl get $restype $resid -n $namespace -o jsonpath='{.status.replicas}' 2> /dev/null)
1760 echo -ne " Scaling $restype $resid from namespace $namespace with label $labelname=$labelid to 0,count=$count"$SAMELINE
1761 if [ $? -eq 0 ] && [ ! -z "$count" ]; then
1766 duration=$(($SECONDS-$T_START))
1767 if [ $duration -gt 100 ]; then
1768 #Forcring count 0, to avoid hanging for failed scaling
1773 echo -e " Scaled $restype $resid from namespace $namespace with label $labelname=$labelid to 0,count=$count $GREEN OK $EGREEN"
1780 # Remove all kube resources in a namespace for resources having a certain label and label-id
1781 # This function wait until the resources are gone. Scaling to 0 must have been ordered previously
1782 # args: <namespace> <label-name> <label-id>
1783 # (Not for test scripts)
1784 __kube_delete_all_resources() {
1788 resources="deployments replicaset statefulset services pods configmaps persistentvolumeclaims persistentvolumes"
1789 deleted_resourcetypes=""
1790 for restype in $resources; do
1791 result=$(kubectl get $restype -n $namespace -o jsonpath='{.items[?(@.metadata.labels.'$labelname'=="'$labelid'")].metadata.name}')
1792 if [ $? -eq 0 ] && [ ! -z "$result" ]; then
1793 deleted_resourcetypes=$deleted_resourcetypes" "$restype
1794 for resid in $result; do
1795 if [ $restype == "replicaset" ] || [ $restype == "statefulset" ]; then
1797 while [ $count -ne 0 ]; do
1798 count=$(kubectl get $restype $resid -n $namespace -o jsonpath='{.status.replicas}' 2> /dev/null)
1799 echo -ne " Scaling $restype $resid from namespace $namespace with label $labelname=$labelid to 0,count=$count"$SAMELINE
1800 if [ $? -eq 0 ] && [ ! -z "$count" ]; then
1806 echo -e " Scaled $restype $resid from namespace $namespace with label $labelname=$labelid to 0,count=$count $GREEN OK $EGREEN"
1808 echo -ne " Deleting $restype $resid from namespace $namespace with label $labelname=$labelid "$SAMELINE
1809 kubectl delete $restype $resid -n $namespace 1> /dev/null 2> ./tmp/kubeerr
1810 if [ $? -eq 0 ]; then
1811 echo -e " Deleted $restype $resid from namespace $namespace with label $labelname=$labelid $GREEN OK $EGREEN"
1813 echo -e " Deleted $restype $resid from namespace $namespace with label $labelname=$labelid $GREEN Does not exist - OK $EGREEN"
1819 if [ ! -z "$deleted_resourcetypes" ]; then
1820 for restype in $deleted_resources; do
1821 echo -ne " Waiting for $restype in namespace $namespace with label $labelname=$labelid to be deleted..."$SAMELINE
1824 while [ ! -z "$result" ]; do
1826 result=$(kubectl get $restype -n $namespace -o jsonpath='{.items[?(@.metadata.labels.'$labelname'=="'$labelid'")].metadata.name}')
1827 echo -ne " Waiting for $restype in namespace $namespace with label $labelname=$labelid to be deleted...$(($SECONDS-$T_START)) seconds "$SAMELINE
1828 if [ -z "$result" ]; then
1829 echo -e " Waiting for $restype in namespace $namespace with label $labelname=$labelid to be deleted...$(($SECONDS-$T_START)) seconds $GREEN OK $EGREEN"
1830 elif [ $(($SECONDS-$T_START)) -gt 300 ]; then
1831 echo -e " Waiting for $restype in namespace $namespace with label $labelname=$labelid to be deleted...$(($SECONDS-$T_START)) seconds $RED Failed $ERED"
1839 # Creates a namespace if it does not exists
1841 # (Not for test scripts)
1842 __kube_create_namespace() {
1844 #Check if test namespace exists, if not create it
1845 kubectl get namespace $1 1> /dev/null 2> ./tmp/kubeerr
1846 if [ $? -ne 0 ]; then
1847 echo -ne " Creating namespace "$1 $SAMELINE
1848 kubectl create namespace $1 1> /dev/null 2> ./tmp/kubeerr
1849 if [ $? -ne 0 ]; then
1850 echo -e " Creating namespace $1 $RED$BOLD FAILED $EBOLD$ERED"
1852 echo " Message: $(<./tmp/kubeerr)"
1855 echo -e " Creating namespace $1 $GREEN$BOLD OK $EBOLD$EGREEN"
1858 echo -e " Creating namespace $1 $GREEN$BOLD Already exists, OK $EBOLD$EGREEN"
1863 # Find the host ip of an app (using the service resource)
1864 # args: <app-name> <namespace>
1865 # (Not for test scripts)
1866 __kube_get_service_host() {
1867 if [ $# -ne 2 ]; then
1869 __print_err "need 2 args, <app-name> <namespace>" $@
1872 for timeout in {1..60}; do
1873 host=$(kubectl get svc $1 -n $2 -o jsonpath='{.spec.clusterIP}')
1874 if [ $? -eq 0 ]; then
1875 if [ ! -z "$host" ]; then
1883 echo "host-not-found-fatal-error"
1887 # Find the named port to an app (using the service resource)
1888 # args: <app-name> <namespace> <port-name>
1889 # (Not for test scripts)
1890 __kube_get_service_port() {
1891 if [ $# -ne 3 ]; then
1893 __print_err "need 3 args, <app-name> <namespace> <port-name>" $@
1897 for timeout in {1..60}; do
1898 port=$(kubectl get svc $1 -n $2 -o jsonpath='{...ports[?(@.name=="'$3'")].port}')
1899 if [ $? -eq 0 ]; then
1900 if [ ! -z "$port" ]; then
1912 # Find the named node port to an app (using the service resource)
1913 # args: <app-name> <namespace> <port-name>
1914 # (Not for test scripts)
1915 __kube_get_service_nodeport() {
1916 if [ $# -ne 3 ]; then
1918 __print_err "need 3 args, <app-name> <namespace> <port-name>" $@
1922 for timeout in {1..60}; do
1923 port=$(kubectl get svc $1 -n $2 -o jsonpath='{...ports[?(@.name=="'$3'")].nodePort}')
1924 if [ $? -eq 0 ]; then
1925 if [ ! -z "$port" ]; then
1937 # Create a kube resource from a yaml template
1938 # args: <resource-type> <resource-name> <template-yaml> <output-yaml>
1939 # (Not for test scripts)
1940 __kube_create_instance() {
1941 echo -ne " Creating $1 $2"$SAMELINE
1943 kubectl apply -f $4 1> /dev/null 2> ./tmp/kubeerr
1944 if [ $? -ne 0 ]; then
1946 echo -e " Creating $1 $2 $RED Failed $ERED"
1947 echo " Message: $(<./tmp/kubeerr)"
1950 echo -e " Creating $1 $2 $GREEN OK $EGREEN"
1954 # Function to create a configmap in kubernetes
1955 # args: <configmap-name> <namespace> <labelname> <labelid> <path-to-data-file> <path-to-output-yaml>
1956 # (Not for test scripts)
1957 __kube_create_configmap() {
1958 echo -ne " Creating configmap $1 "$SAMELINE
1959 envsubst < $5 > $5"_tmp"
1960 cp $5"_tmp" $5 #Need to copy back to orig file name since create configmap neeed the original file name
1961 kubectl create configmap $1 -n $2 --from-file=$5 --dry-run=client -o yaml > $6
1962 if [ $? -ne 0 ]; then
1963 echo -e " Creating configmap $1 $RED Failed $ERED"
1968 kubectl apply -f $6 1> /dev/null 2> ./tmp/kubeerr
1969 if [ $? -ne 0 ]; then
1970 echo -e " Creating configmap $1 $RED Apply failed $ERED"
1971 echo " Message: $(<./tmp/kubeerr)"
1975 kubectl label configmap $1 -n $2 $3"="$4 --overwrite 1> /dev/null 2> ./tmp/kubeerr
1976 if [ $? -ne 0 ]; then
1977 echo -e " Creating configmap $1 $RED Labeling failed $ERED"
1978 echo " Message: $(<./tmp/kubeerr)"
1982 # Log the resulting map
1983 kubectl get configmap $1 -n $2 -o yaml > $6
1985 echo -e " Creating configmap $1 $GREEN OK $EGREEN"
1989 # This function runs a kubectl cmd where a single output value is expected, for example get ip with jsonpath filter.
1990 # The function retries up to the timeout given in the cmd flag '--cluster-timeout'
1991 # args: <full kubectl cmd with parameters>
1992 # (Not for test scripts)
1993 __kube_cmd_with_timeout() {
1994 TS_TMP=$(($SECONDS+$CLUSTER_TIME_OUT))
1997 kube_cmd_result=$($@)
1998 if [ $? -ne 0 ]; then
2001 if [ $SECONDS -ge $TS_TMP ] || [ ! -z "$kube_cmd_result" ] ; then
2002 echo $kube_cmd_result
2009 # This function starts a pod that cleans a the contents of a path mounted as a pvc
2010 # After this action the pod should terminate
2011 # This should only be executed when the pod owning the pvc is not running
2012 # args: <appname> <namespace> <pvc-name> <path-to remove>
2013 # (Not for test scripts)
2014 __kube_clean_pvc() {
2016 export PVC_CLEANER_NAMESPACE=$2
2017 export PVC_CLEANER_CLAIMNAME=$3
2018 export PVC_CLEANER_RM_PATH=$4
2019 input_yaml=$SIM_GROUP"/pvc-cleaner/"pvc-cleaner.yaml
2020 output_yaml=$PWD/tmp/$2-pvc-cleaner.yaml
2022 envsubst < $input_yaml > $output_yaml
2024 kubectl delete -f $output_yaml 1> /dev/null 2> /dev/null # Delete the previous terminated pod - if existing
2026 __kube_create_instance pod pvc-cleaner $input_yaml $output_yaml
2027 if [ $? -ne 0 ]; then
2028 echo $YELLOW" Could not clean pvc for app: $1 - persistent storage not clean - tests may not work"
2032 term_ts=$(($SECONDS+30))
2033 while [ $term_ts -gt $SECONDS ]; do
2034 pod_status=$(kubectl get pod pvc-cleaner -n $PVC_CLEANER_NAMESPACE --no-headers -o custom-columns=":status.phase")
2035 if [ "$pod_status" == "Succeeded" ]; then
2042 # This function scales or deletes all resources for app selected by the testcase.
2044 # (Not for test scripts)
2046 echo -e $BOLD"Initialize kube services//pods/statefulsets/replicaset to initial state"$EBOLD
2048 # Scale prestarted or managed apps
2049 for imagename in $APP_SHORT_NAMES; do
2050 # A function name is created from the app short name
2051 # for example app short name 'RICMSIM' -> produce the function
2052 # name __RICSIM_kube_scale_zero or __RICSIM_kube_scale_zero_and_wait
2053 # This function is called and is expected to exist in the imported
2054 # file for the ricsim test functions
2055 # The resulting function impl shall scale the resources to 0
2056 # For prestarted apps, the function waits until the resources are 0
2057 # For included (not prestated) apps, the scaling is just ordered
2058 __check_prestarted_image $imagename
2059 if [ $? -eq 0 ]; then
2060 function_pointer="__"$imagename"_kube_scale_zero_and_wait"
2061 echo -e " Scaling all kube resources for app $BOLD $imagename $EBOLD to 0"
2064 __check_included_image $imagename
2065 if [ $? -eq 0 ]; then
2066 function_pointer="__"$imagename"_kube_scale_zero"
2067 echo -e " Scaling all kube resources for app $BOLD $imagename $EBOLD to 0"
2073 # Delete managed apps
2074 for imagename in $APP_SHORT_NAMES; do
2075 __check_included_image $imagename
2076 if [ $? -eq 0 ]; then
2077 __check_prestarted_image $imagename
2078 if [ $? -ne 0 ]; then
2079 # A function name is created from the app short name
2080 # for example app short name 'RICMSIM' -> produce the function
2081 # name __RICSIM__kube_delete_all
2082 # This function is called and is expected to exist in the imported
2083 # file for the ricsim test functions
2084 # The resulting function impl shall delete all its resources
2085 function_pointer="__"$imagename"_kube_delete_all"
2086 echo -e " Deleting all kube resources for app $BOLD $imagename $EBOLD"
2095 # Function stop and remove all containers (docker) and services/deployments etc(kube)
2097 # Function for test script
2098 clean_environment() {
2099 if [ $RUNMODE == "KUBE" ]; then
2106 # 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
2108 # (Function for test scripts)
2109 auto_clean_environment() {
2111 if [ "$AUTO_CLEAN" == "auto" ]; then
2112 echo -e $BOLD"Initiating automatic cleaning of environment"$EBOLD
2117 # Function to sleep a test case for a numner of seconds. Prints the optional text args as info
2118 # args: <sleep-time-in-sec> [any-text-in-quotes-to-be-printed]
2119 # (Function for test scripts)
2122 echo -e $BOLD"INFO(${BASH_LINENO[0]}): "${FUNCNAME[0]}"," $@ $EBOLD
2123 if [ $# -lt 1 ]; then
2125 __print_err "need at least one arg, <sleep-time-in-sec> [any-text-to-printed]" $@
2128 #echo "---- Sleep for " $1 " seconds ---- "$2
2130 duration=$((SECONDS-start))
2131 while [ $duration -lt $1 ]; do
2132 echo -ne " Slept for ${duration} seconds${SAMELINE}"
2134 duration=$((SECONDS-start))
2136 echo -ne " Slept for ${duration} seconds${SAMELINE}"
2140 # Print error info for the call in the parent script (test case). Arg: <error-message-to-print>
2141 # Not to be called from the test script itself.
2143 echo -e $RED ${FUNCNAME[1]} " "$1" " ${BASH_SOURCE[2]} " line" ${BASH_LINENO[1]} $ERED
2144 if [ $# -gt 1 ]; then
2145 echo -e $RED" Got: "${FUNCNAME[1]} ${@:2} $ERED
2150 # Function to create the docker network for the test
2151 # Not to be called from the test script itself.
2152 __create_docker_network() {
2153 tmp=$(docker network ls --format={{.Name}} --filter name=$DOCKER_SIM_NWNAME)
2154 if [ $? -ne 0 ]; then
2155 echo -e $RED" Could not check if docker network $DOCKER_SIM_NWNAME exists"$ERED
2158 if [ "$tmp" != $DOCKER_SIM_NWNAME ]; then
2159 echo -e " Creating docker network:$BOLD $DOCKER_SIM_NWNAME $EBOLD"
2160 docker network create $DOCKER_SIM_NWNAME | indent2
2161 if [ $? -ne 0 ]; then
2162 echo -e $RED" Could not create docker network $DOCKER_SIM_NWNAME"$ERED
2165 echo -e "$GREEN Done$EGREEN"
2168 echo -e " Docker network $DOCKER_SIM_NWNAME already exists$GREEN OK $EGREEN"
2172 # Function to start container with docker-compose and wait until all are in state running.
2173 # If the <docker-compose-file> is empty, the default 'docker-compose.yml' is assumed.
2174 #args: <docker-compose-dir> <docker-compose-file> <docker-compose-arg>|NODOCKERARGS <count> <app-name>+
2175 # (Not for test scripts)
2176 __start_container() {
2178 if [ $# -lt 5 ]; then
2180 __print_err "need 5 or more args, <docker-compose-dir> <docker-compose-file> <docker-compose-arg>|NODOCKERARGS <count> <app-name>+" $@
2184 __create_docker_network
2192 if [ -z "$compose_file" ]; then
2193 compose_file="docker-compose.yml"
2201 if [ "$compose_args" == "NODOCKERARGS" ]; then
2202 docker-compose -f $compose_file up -d &> .dockererr
2203 if [ $? -ne 0 ]; then
2204 echo -e $RED"Problem to launch container(s) with docker-compose"$ERED
2206 echo -e $RED"Stopping script...."$ERED
2210 docker-compose -f $compose_file up -d $compose_args &> .dockererr
2211 if [ $? -ne 0 ]; then
2212 echo -e $RED"Problem to launch container(s) with docker-compose"$ERED
2214 echo -e $RED"Stopping script...."$ERED
2222 while [ $appindex -lt $appcount ]; do
2226 for i in {1..10}; do
2227 if [ "$(docker inspect --format '{{ .State.Running }}' $appname)" == "true" ]; then
2228 echo -e " Container $BOLD${appname}$EBOLD$GREEN running$EGREEN on$BOLD image $(docker inspect --format '{{ .Config.Image }}' ${appname}) $EBOLD"
2235 if [ $app_started -eq 0 ]; then
2238 echo -e $RED" Container $BOLD${appname}$EBOLD could not be started"$ERED
2239 echo -e $RED" Stopping script..."$ERED
2242 let appindex=appindex+1
2247 # Function to check if container/service is responding to http/https
2248 # args: <container-name>|<service-name> url
2249 # (Not for test scripts)
2250 __check_service_start() {
2252 if [ $# -ne 2 ]; then
2254 __print_err "need 2 args, <container-name>|<service-name> url" $@
2258 if [ $RUNMODE == "KUBE" ]; then
2259 ENTITY="service/set/deployment"
2265 echo -ne " Container $BOLD${appname}$EBOLD starting${SAMELINE}"
2269 echo -ne " Waiting for ${ENTITY} ${appname} service status...${SAMELINE}"
2272 while (( $TSTART+600 > $SECONDS )); do
2273 result="$(__do_curl -m 10 $url)"
2274 if [ $? -eq 0 ]; then
2275 if [ ${#result} -gt 15 ]; then
2276 #If response is too long, truncate
2277 result="...response text too long, omitted"
2279 echo -ne " Waiting for {ENTITY} $BOLD${appname}$EBOLD service status on ${3}, result: $result${SAMELINE}"
2280 echo -ne " The ${ENTITY} $BOLD${appname}$EBOLD$GREEN is alive$EGREEN, responds to service status:$GREEN $result $EGREEN on ${url} after $(($SECONDS-$TSTART)) seconds"
2286 if (( $TS_OFFSET > 5 )); then
2289 while [ $(($TS_TMP+$TS_OFFSET)) -gt $SECONDS ]; do
2290 echo -ne " Waiting for ${ENTITY} ${appname} service status on ${url}...$(($SECONDS-$TSTART)) seconds, retrying in $(($TS_TMP+$TS_OFFSET-$SECONDS)) seconds ${SAMELINE}"
2294 let loop_ctr=loop_ctr+1
2297 if [ "$pa_st" = "false" ]; then
2299 echo -e $RED" The ${ENTITY} ${appname} did not respond to service status on ${url} in $(($SECONDS-$TSTART)) seconds"$ERED
2312 __check_container_logs() {
2320 echo -e $BOLD"Checking $dispname container $appname log ($logpath) for WARNINGs and ERRORs"$EBOLD
2322 if [ $RUNMODE == "KUBE" ]; then
2323 echo -e $YELLOW" Internal log for $dispname not checked in kube"$EYELLOW
2327 #tmp=$(docker ps | grep $appname)
2328 tmp=$(docker ps -q --filter name=$appname) #get the container id
2329 if [ -z "$tmp" ]; then #Only check logs for running Policy Agent apps
2330 echo " "$dispname" is not running, no check made"
2333 foundentries="$(docker exec -t $tmp grep $warning $logpath | wc -l)"
2334 if [ $? -ne 0 ];then
2335 echo " Problem to search $appname log $logpath"
2337 if [ $foundentries -eq 0 ]; then
2338 echo " No WARN entries found in $appname log $logpath"
2340 echo -e " Found \033[1m"$foundentries"\033[0m WARN entries in $appname log $logpath"
2343 foundentries="$(docker exec -t $tmp grep $error $logpath | wc -l)"
2344 if [ $? -ne 0 ];then
2345 echo " Problem to search $appname log $logpath"
2347 if [ $foundentries -eq 0 ]; then
2348 echo " No ERR entries found in $appname log $logpath"
2350 echo -e $RED" Found \033[1m"$foundentries"\033[0m"$RED" ERR entries in $appname log $logpath"$ERED
2356 # Store all container logs and other logs in the log dir for the script
2357 # Logs are stored with a prefix in case logs should be stored several times during a test
2358 # args: <logfile-prefix>
2359 # (Function for test scripts)
2361 if [ $# != 1 ]; then
2363 __print_err "need one arg, <file-prefix>" $@
2366 echo -e $BOLD"Storing all docker/kube container logs and other test logs in $TESTLOGS/$ATC using prefix: "$1$EBOLD
2368 docker stats --no-stream > $TESTLOGS/$ATC/$1_docker_stats.log 2>&1
2370 docker ps -a > $TESTLOGS/$ATC/$1_docker_ps.log 2>&1
2372 cp .httplog_${ATC}.txt $TESTLOGS/$ATC/$1_httplog_${ATC}.txt 2>&1
2374 if [ $RUNMODE == "DOCKER" ]; then
2376 # Store docker logs for all container
2377 for imagename in $APP_SHORT_NAMES; do
2378 __check_included_image $imagename
2379 if [ $? -eq 0 ]; then
2380 # A function name is created from the app short name
2381 # for example app short name 'RICMSIM' -> produce the function
2382 # name __RICSIM__store_docker_logs
2383 # This function is called and is expected to exist in the imported
2384 # file for the ricsim test functions
2385 # The resulting function impl shall store the docker logs for each container
2386 function_pointer="__"$imagename"_store_docker_logs"
2387 $function_pointer "$TESTLOGS/$ATC/" $1
2391 if [ $RUNMODE == "KUBE" ]; then
2392 namespaces=$(kubectl get namespaces -o jsonpath='{.items[?(@.metadata.name)].metadata.name}')
2393 for nsid in $namespaces; do
2394 pods=$(kubectl get pods -n $nsid -o jsonpath='{.items[?(@.metadata.labels.autotest)].metadata.name}')
2395 for podid in $pods; do
2396 kubectl logs -n $nsid $podid > $TESTLOGS/$ATC/$1_${podid}.log
2406 # Generic curl function, assumes all 200-codes are ok
2407 # args: <valid-curl-args-including full url>
2408 # returns: <returned response (without respose code)> or "<no-response-from-server>" or "<not found, <http-code>>""
2409 # returns: The return code is 0 for ok and 1 for not ok
2411 echo ${FUNCNAME[1]} "line: "${BASH_LINENO[1]} >> $HTTPLOG
2413 if [ $RUNMODE == "KUBE" ]; then
2414 if [ ! -z "$KUBE_PROXY_PATH" ]; then
2415 if [ $KUBE_PROXY_HTTPX == "http" ]; then
2416 proxyflag=" --proxy $KUBE_PROXY_PATH"
2418 proxyflag=" --proxy-insecure --proxy $KUBE_PROXY_PATH"
2422 curlString="curl -skw %{http_code} $proxyflag $@"
2423 echo " CMD: $curlString" >> $HTTPLOG
2426 echo " RESP: $res" >> $HTTPLOG
2427 echo " RETCODE: $retcode" >> $HTTPLOG
2428 if [ $retcode -ne 0 ]; then
2429 echo "<no-response-from-server>"
2432 http_code="${res:${#res}-3}"
2433 if [ ${#res} -eq 3 ]; then
2434 if [ $http_code -lt 200 ] || [ $http_code -gt 299 ]; then
2435 echo "<no-response-from-server>"
2441 if [ $http_code -lt 200 ] || [ $http_code -gt 299 ]; then
2442 echo "<not found, resp:${http_code}>"
2445 if [ $# -eq 2 ]; then
2446 echo "${res:0:${#res}-3}" | xargs
2448 echo "${res:0:${#res}-3}"
2455 #######################################
2456 ### Basic helper function for test cases
2457 #######################################
2459 # Test a simulator container variable value towards target value using an condition operator with an optional timeout.
2460 # Arg: <simulator-name> <host> <variable-name> <condition-operator> <target-value> - This test is done
2461 # immediately and sets pass or fail depending on the result of comparing variable and target using the operator.
2462 # Arg: <simulator-name> <host> <variable-name> <condition-operator> <target-value> <timeout> - This test waits up to the timeout
2463 # before setting pass or fail depending on the result of comparing variable and target using the operator.
2464 # 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.
2465 # Not to be called from test script.
2468 checkjsonarraycount=0
2470 if [ $# -eq 6 ]; then
2471 if [[ $3 == "json:"* ]]; then
2472 checkjsonarraycount=1
2475 echo -e $BOLD"TEST $TEST_SEQUENCE_NR (${BASH_LINENO[1]}): ${1}, ${3} ${4} ${5} within ${6} seconds"$EBOLD
2477 ((TEST_SEQUENCE_NR++))
2481 if [ $checkjsonarraycount -eq 0 ]; then
2482 result="$(__do_curl $2$3)"
2484 result=${result//[[:blank:]]/} #Strip blanks
2487 result="$(__do_curl $2$path)"
2489 echo "$result" > ./tmp/.tmp.curl.json
2490 result=$(python3 ../common/count_json_elements.py "./tmp/.tmp.curl.json")
2492 duration=$((SECONDS-start))
2493 echo -ne " Result=${result} after ${duration} seconds${SAMELINE}"
2495 if [ $retcode -ne 0 ]; then
2496 if [ $duration -gt $6 ]; then
2498 echo -e $RED" FAIL${ERED} - ${3} ${4} ${5} not reached in ${6} seconds, result = ${result}"
2499 __check_stop_at_error
2502 elif [ $4 = "=" ] && [ "$result" -eq $5 ]; then
2504 echo -e " Result=${result} after ${duration} seconds${SAMELINE}"
2505 echo -e $GREEN" PASS${EGREEN} - Result=${result} after ${duration} seconds"
2507 elif [ $4 = ">" ] && [ "$result" -gt $5 ]; then
2509 echo -e " Result=${result} after ${duration} seconds${SAMELINE}"
2510 echo -e $GREEN" PASS${EGREEN} - Result=${result} after ${duration} seconds"
2512 elif [ $4 = "<" ] && [ "$result" -lt $5 ]; then
2514 echo -e " Result=${result} after ${duration} seconds${SAMELINE}"
2515 echo -e $GREEN" PASS${EGREEN} - Result=${result} after ${duration} seconds"
2517 elif [ $4 = "contain_str" ] && [[ $result =~ $5 ]]; then
2519 echo -e " Result=${result} after ${duration} seconds${SAMELINE}"
2520 echo -e $GREEN" PASS${EGREEN} - Result=${result} after ${duration} seconds"
2523 if [ $duration -gt $6 ]; then
2525 echo -e $RED" FAIL${ERED} - ${3} ${4} ${5} not reached in ${6} seconds, result = ${result}"
2526 __check_stop_at_error
2532 elif [ $# -eq 5 ]; then
2533 if [[ $3 == "json:"* ]]; then
2534 checkjsonarraycount=1
2537 echo -e $BOLD"TEST $TEST_SEQUENCE_NR (${BASH_LINENO[1]}): ${1}, ${3} ${4} ${5}"$EBOLD
2539 ((TEST_SEQUENCE_NR++))
2540 if [ $checkjsonarraycount -eq 0 ]; then
2541 result="$(__do_curl $2$3)"
2543 result=${result//[[:blank:]]/} #Strip blanks
2546 result="$(__do_curl $2$path)"
2548 echo "$result" > ./tmp/.tmp.curl.json
2549 result=$(python3 ../common/count_json_elements.py "./tmp/.tmp.curl.json")
2551 if [ $retcode -ne 0 ]; then
2553 echo -e $RED" FAIL ${ERED}- ${3} ${4} ${5} not reached, result = ${result}"
2554 __check_stop_at_error
2555 elif [ $4 = "=" ] && [ "$result" -eq $5 ]; then
2557 echo -e $GREEN" PASS${EGREEN} - Result=${result}"
2558 elif [ $4 = ">" ] && [ "$result" -gt $5 ]; then
2560 echo -e $GREEN" PASS${EGREEN} - Result=${result}"
2561 elif [ $4 = "<" ] && [ "$result" -lt $5 ]; then
2563 echo -e $GREEN" PASS${EGREEN} - Result=${result}"
2564 elif [ $4 = "contain_str" ] && [[ $result =~ $5 ]]; then
2566 echo -e $GREEN" PASS${EGREEN} - Result=${result}"
2569 echo -e $RED" FAIL${ERED} - ${3} ${4} ${5} not reached, result = ${result}"
2570 __check_stop_at_error
2573 echo "Wrong args to __var_test, needs five or six args: <simulator-name> <host> <variable-name> <condition-operator> <target-value> [ <timeout> ]"