X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=test%2Fcommon%2Ftestcase_common.sh;h=39a593c8e720b0963ba2d79e5833e814d6ce4834;hb=575869c5ed7533f22b0c7db05fdbbbb8e00e09fc;hp=4d89d0c1d3e5e1ff59512308137f3c675837a677;hpb=a26055e5007e75a5aa9551305ea4da211e80df14;p=nonrtric.git diff --git a/test/common/testcase_common.sh b/test/common/testcase_common.sh index 4d89d0c1..39a593c8 100755 --- a/test/common/testcase_common.sh +++ b/test/common/testcase_common.sh @@ -18,7 +18,7 @@ # # This is a script that contains all the functions needed for auto test -# Arg: local|remote|remote-remove [auto-clean] +# Arg: local|remote|remote-remove [auto-clean] [--stop-at-error] [--ricsim-prefix ] [ --env-file ] [--use-local-image []*] #Formatting for 'echo' cmd @@ -52,33 +52,11 @@ fi # Just resetting any previous echo formatting... echo -ne $EBOLD -# source test environment variables -. ../common/test_env.sh +# default test environment variables +TEST_ENV_VAR_FILE="../common/test_env.sh" echo "Test case started as: ${BASH_SOURCE[$i+1]} "$@ -#Vars for A1 interface version and container count -G1_A1_VERSION="" -G2_A1_VERSION="" -G3_A1_VERSION="" -G1_COUNT=0 -G2_COUNT=0 -G3_COUNT=0 - -# Vars to switch between http and https. Extra curl flag needed for https -export RIC_SIM_HTTPX="http" -export RIC_SIM_LOCALHOST=$RIC_SIM_HTTPX"://localhost:" -export RIC_SIM_PORT=$RIC_SIM_INTERNAL_PORT -export RIC_SIM_CERT_MOUNT_DIR="./cert" - -export MR_HTTPX="http" -export MR_PORT=$MR_INTERNAL_PORT -export MR_LOCAL_PORT=$MR_EXTERNAL_PORT #When agent is running outside the docker net - -export SDNC_HTTPX="http" -export SDNC_PORT=$SDNC_INTERNAL_PORT -export SDNC_LOCAL_PORT=$SDNC_EXTERNAL_PORT #When agent is running outside the docker net - #Localhost constant LOCALHOST="http://localhost:" @@ -94,6 +72,9 @@ AUTO_CLEAN="" # Var to hold the app names to use local image for when running 'remote' or 'remote-remove' USE_LOCAL_IMAGES="" +# List of available apps to override with local image +AVAILABLE_LOCAL_IMAGES_OVERRIDE="PA CP SDNC RICSIM" + # 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 STOP_AT_ERROR=0 @@ -180,36 +161,118 @@ if [ $paramerror -eq 0 ]; then shift; fi fi -if [ $paramerror -eq 0 ]; then - if [ "$1" == "auto-clean" ]; then - AUTO_CLEAN="auto" - shift; +foundparm=0 +while [ $paramerror -eq 0 ] && [ $foundparm -eq 0 ]; do + foundparm=1 + if [ $paramerror -eq 0 ]; then + if [ "$1" == "auto-clean" ]; then + AUTO_CLEAN="auto" + echo "Option set - Auto clean at end of test script" + shift; + foundparm=0 + fi fi -fi -if [ $paramerror -eq 0 ]; then - if [ "$1" == "--stop-at-error" ]; then - STOP_AT_ERROR=1 - shift; + if [ $paramerror -eq 0 ]; then + if [ "$1" == "--stop-at-error" ]; then + STOP_AT_ERROR=1 + echo "Option set - Stop at first error" + shift; + foundparm=0 + fi fi -fi -if [ $paramerror -eq 0 ]; then - if [ "$1" == "--use-local-image" ]; then - USE_LOCAL_IMAGES=${@:2} - while [ $# -gt 0 ]; do + if [ $paramerror -eq 0 ]; then + if [ "$1" == "--ricsim-prefix" ]; then shift; - done + RIC_SIM_PREFIX=$1 + if [ -z "$1" ]; then + paramerror=1 + else + echo "Option set - Overriding RIC_SIM_PREFIX with: "$1 + shift; + foundparm=0 + fi + fi fi -fi + if [ $paramerror -eq 0 ]; then + if [ "$1" == "--env-file" ]; then + shift; + TEST_ENV_VAR_FILE=$1 + if [ -z "$1" ]; then + paramerror=1 + else + echo "Option set - Overriding test_env.sh with: "$1 + shift; + foundparm=0 + fi + fi + fi + if [ $paramerror -eq 0 ]; then + if [ "$1" == "--use-local-image" ]; then + USE_LOCAL_IMAGES="" + shift + while [ $# -gt 0 ] && [[ "$1" != "--"* ]]; do + USE_LOCAL_IMAGES=$USE_LOCAL_IMAGES" "$1 + if [[ "$AVAILABLE_LOCAL_IMAGES_OVERRIDE" != *"$1"* ]]; then + paramerror=1 + fi + shift; + done + foundparm=0 + if [ -z "$USE_LOCAL_IMAGES" ]; then + paramerror=1 + else + echo "Option set - Override remote images for app(s):"$USE_LOCAL_IMAGES + fi + fi + fi +done +echo "" +#Still params left? if [ $paramerror -eq 0 ] && [ $# -gt 0 ]; then paramerror=1 fi if [ $paramerror -eq 1 ]; then - echo -e $RED"Expected arg: local|remote|remote-remove [auto-clean] [--stop-at-error] [--use-local-image []*]"$ERED + echo -e $RED"Expected arg: local|remote|remote-remove [auto-clean] [--stop-at-error] [--ricsim-prefix ] [ --env-file ] [--use-local-image []*]"$ERED + exit 1 +fi + +# sourcing the selected env variables for the test case +if [ -f "$TEST_ENV_VAR_FILE" ]; then + echo -e $BOLD"Sourcing env vars from: "$TEST_ENV_VAR_FILE$EBOLD + . $TEST_ENV_VAR_FILE +else + echo -e $RED"Selected env var fle does not exist: "$TEST_ENV_VAR_FILE$ERED exit 1 fi +#Vars for A1 interface version and container count +G1_A1_VERSION="" +G2_A1_VERSION="" +G3_A1_VERSION="" +G1_COUNT=0 +G2_COUNT=0 +G3_COUNT=0 + +# Vars to switch between http and https. Extra curl flag needed for https +export RIC_SIM_HTTPX="http" +export RIC_SIM_LOCALHOST=$RIC_SIM_HTTPX"://localhost:" +export RIC_SIM_PORT=$RIC_SIM_INTERNAL_PORT +export RIC_SIM_CERT_MOUNT_DIR="./cert" + +export MR_HTTPX="http" +export MR_PORT=$MR_INTERNAL_PORT +export MR_LOCAL_PORT=$MR_EXTERNAL_PORT #When agent is running outside the docker net + +export CR_HTTPX="http" +export CR_PORT=$CR_INTERNAL_PORT +export CR_LOCAL_PORT=$CR_EXTERNAL_PORT #When CR is running outside the docker net + +export SDNC_HTTPX="http" +export SDNC_PORT=$SDNC_INTERNAL_PORT +export SDNC_LOCAL_PORT=$SDNC_EXTERNAL_PORT #When agent is running outside the docker net + echo -e $BOLD"Checking configured image setting for this test case"$EBOLD #Temp var to check for image variable name errors @@ -829,6 +892,14 @@ clean_containers() { echo -e $BOLD" Removing all dangling/untagged docker images"$EBOLD docker rmi --force $(docker images -q -f dangling=true) &> /dev/null echo "" + + CONTRS=$(docker ps | awk '$1 != "CONTAINER" { n++ }; END { print n+0 }') + if [ $? -eq 0 ]; then + if [ $CONTRS -ne 0 ]; then + echo -e $RED"Containers running, may cause distubance to the test case"$ERED + docker ps -a + fi + fi } # Function stop and remove all container in the end of the test script, if the arg 'auto-clean' is given at test script start @@ -1048,6 +1119,13 @@ __start_container() { return 0 } +# Generate a UUID to use as prefix for policy ids +generate_uuid() { + UUID=$(python3 -c 'import sys,uuid; sys.stdout.write(uuid.uuid4().hex)') + #Reduce length to make space for serial id, us 'a' as marker where the serial id is added + UUID=${UUID:0:${#UUID}-4}"a" +} + #################### ### Consul functions #################### @@ -1182,7 +1260,7 @@ prepare_consul_config() { config_json=$config_json"\n \"ric\": [" - rics=$(docker ps | grep ricsim | awk '{print $NF}') + rics=$(docker ps | grep $RIC_SIM_PREFIX | awk '{print $NF}') if [ $? -ne 0 ] || [ -z "$rics" ]; then echo -e $RED" FAIL - the names of the running RIC Simulator cannot be retrieved." $ERED @@ -1257,31 +1335,36 @@ use_simulator_https() { } # Start one group (ricsim_g1, ricsim_g2 or ricsim_g3) with a number of RIC Simulators using a given A interface +# 'ricsim' may be set on command line to other prefix # args: ricsim_g1|ricsim_g2|ricsim_g3 # (Function for test scripts) start_ric_simulators() { echo -e $BOLD"Starting RIC Simulators"$EBOLD + RIC1=$RIC_SIM_PREFIX"_g1" + RIC2=$RIC_SIM_PREFIX"_g2" + RIC3=$RIC_SIM_PREFIX"_g3" + if [ $# != 3 ]; then ((RES_CONF_FAIL++)) - __print_err "need three args, ricsim_g1|ricsim_g2|ricsim_g3 " $@ + __print_err "need three args, $RIC1|$RIC2|$RIC3 " $@ exit 1 fi echo " $2 simulators using basename: $1 on interface: $3" #Set env var for simulator count and A1 interface vesion for the given group - if [ $1 == "ricsim_g1" ]; then + if [ $1 == "$RIC1" ]; then G1_COUNT=$2 G1_A1_VERSION=$3 - elif [ $1 == "ricsim_g2" ]; then + elif [ $1 == "$RIC2" ]; then G2_COUNT=$2 G2_A1_VERSION=$3 - elif [ $1 == "ricsim_g3" ]; then + elif [ $1 == "$RIC3" ]; then G3_COUNT=$2 G3_A1_VERSION=$3 else ((RES_CONF_FAIL++)) - __print_err "need three args, gricsim_g1|ricsim_g2|ricsim_g3 " $@ + __print_err "need three args, $RIC1|$RIC2|$RIC3 " $@ exit 1 fi @@ -1460,6 +1543,22 @@ start_cr() { } +use_cr_http() { + echo -e $BOLD"Using http between test script and CR"$EBOLD + export CR_HTTPX="http" + export CR_PORT=$CR_INTERNAL_PORT + export CR_LOCAL_PORT=$CR_EXTERNAL_PORT + echo "" +} + +use_cr_https() { + echo -e $BOLD"Using https between test script and CR"$EBOLD + export CR_HTTPX="https" + export CR_PORT=$CR_INTERNAL_SECURE_PORT + export CR_LOCAL_PORT=$CR_EXTERNAL_SECURE_PORT + echo "" +} + ########################### ### Policy Agents functions ########################### @@ -1510,16 +1609,25 @@ use_agent_rest_https() { return 0 } -# All calls to the agent will be directed to the agent dmaap interface from now on +# All calls to the agent will be directed to the agent dmaap interface over http from now on # args: - # (Function for test scripts) -use_agent_dmaap() { - echo -e $BOLD"Agent using DMAAP interface"$EBOLD +use_agent_dmaap_http() { + echo -e $BOLD"Agent using DMAAP http interface"$EBOLD export ADAPTER=$DMAAPBASE echo "" return 0 } +# All calls to the agent will be directed to the agent dmaap interface over https from now on +# args: - +# (Function for test scripts) +use_agent_dmaap_https() { + echo -e $BOLD"Agent using DMAAP https interface"$EBOLD + export ADAPTER=$DMAAPBASE_SECURE + echo "" + return 0 +} # Turn on debug level tracing in the agent # args: -