X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=test%2Fcommon%2Fricsimulator_api_functions.sh;h=2a68aa0ef05e9dec643535ca4a2db475cc46a426;hb=bfe1c4049297589c4ade863b12e3d6a6cb7abc99;hp=56f968ee26bf4c46ca91ea93c70bdf6086a814c1;hpb=803d48989d7824309602393763142320cdbbc0d2;p=nonrtric.git diff --git a/test/common/ricsimulator_api_functions.sh b/test/common/ricsimulator_api_functions.sh index 56f968ee..2a68aa0e 100644 --- a/test/common/ricsimulator_api_functions.sh +++ b/test/common/ricsimulator_api_functions.sh @@ -55,12 +55,10 @@ __execute_curl_to_sim() { sim_equal() { if [ $# -eq 3 ] || [ $# -eq 4 ]; then - app=$1 - port=$(__find_sim_port $app) - __var_test $app "$RIC_SIM_LOCALHOST$port/counter/" $2 "=" $3 $4 + port=$(__find_sim_port $1) + __var_test $1 "$RIC_SIM_LOCALHOST$port/counter/" $2 "=" $3 $4 return 0 else - ((RES_CONF_FAIL++)) __print_err "needs three or four args: [ timeout ]" return 1 fi @@ -72,13 +70,11 @@ sim_equal() { sim_print() { if [ $# != 2 ]; then - ((RES_CONF_FAIL++)) __print_err "need two args, " $@ exit 1 fi - app=$1 - port=$(__find_sim_port $app) - echo -e $BOLD"INFO(${BASH_LINENO[0]}): $app, $2 = $(__do_curl $RIC_SIM_LOCALHOST$port/counter/$2)"$EBOLD + port=$(__find_sim_port $1) + echo -e $BOLD"INFO(${BASH_LINENO[0]}): $1, $2 = $(__do_curl $RIC_SIM_LOCALHOST$port/counter/$2)"$EBOLD } # Tests if a variable value in the RIC simulator contains the target string and and optional timeout @@ -91,12 +87,10 @@ sim_print() { sim_contains_str() { if [ $# -eq 3 ] || [ $# -eq 4 ]; then - app=$1 - port=$(__find_sim_port $app) - __var_test $app "$RIC_SIM_LOCALHOST$port/counter/" $2 "contain_str" $3 $4 + port=$(__find_sim_port $1) + __var_test $1 "$RIC_SIM_LOCALHOST$port/counter/" $2 "contain_str" $3 $4 return 0 else - ((RES_CONF_FAIL++)) __print_err "needs three or four args: [ timeout ]" return 1 fi @@ -106,17 +100,13 @@ sim_contains_str() { # args: # (Function for test scripts) sim_put_policy_type() { - echo -e $BOLD"CONF(${BASH_LINENO[0]}): "${FUNCNAME[0]} $@ $EBOLD + __log_conf_start $@ if [ $# -ne 4 ]; then - ((RES_CONF_FAIL++)) __print_err " " $@ return 1 fi - app=$2 - res=$(__find_sim_port $app) - + res=$(__find_sim_port $2) curlString="curl -X PUT -skw %{http_code} $RIC_SIM_LOCALHOST"$res"/policytype?id="$3" -H Content-Type:application/json --data-binary @"$4 - __execute_curl_to_sim $1 "$curlString" return $? } @@ -125,17 +115,13 @@ sim_put_policy_type() { # # (Function for test scripts) sim_delete_policy_type() { - echo -e $BOLD"CONF(${BASH_LINENO[0]}): "${FUNCNAME[0]} $@ $EBOLD + __log_conf_start $@ if [ $# -ne 3 ]; then - ((RES_CONF_FAIL++)) __print_err " " $@ return 1 fi - app=$2 - res=$(__find_sim_port $app) - + res=$(__find_sim_port $2) curlString="curl -X DELETE -skw %{http_code} $RIC_SIM_LOCALHOST"$res"/policytype?id="$3 - __execute_curl_to_sim $1 "$curlString" return $? } @@ -144,17 +130,13 @@ sim_delete_policy_type() { # # (Function for test scripts) sim_post_delete_instances() { - echo -e $BOLD"CONF(${BASH_LINENO[0]}): "${FUNCNAME[0]} $@ $EBOLD + __log_conf_start $@ if [ $# -ne 2 ]; then - ((RES_CONF_FAIL++)) __print_err " " $@ return 1 fi - app=$2 - res=$(__find_sim_port $app) - + res=$(__find_sim_port $2) curlString="curl -X POST -skw %{http_code} $RIC_SIM_LOCALHOST"$res"/deleteinstances" - __execute_curl_to_sim $1 "$curlString" return $? } @@ -163,17 +145,13 @@ sim_post_delete_instances() { # # (Function for test scripts) sim_post_delete_all() { - echo -e $BOLD"CONF(${BASH_LINENO[0]}): "${FUNCNAME[0]} $@ $EBOLD + __log_conf_start $@ if [ $# -ne 3 ]; then - ((RES_CONF_FAIL++)) __print_err " " $@ return 1 fi - app=$2 - res=$(__find_sim_port $app) - + res=$(__find_sim_port $2) curlString="curl -X POST -skw %{http_code} $RIC_SIM_LOCALHOST"$res"/deleteall" - __execute_curl_to_sim $1 "$curlString" return $? } @@ -182,20 +160,16 @@ sim_post_delete_all() { # [] # (Function for test scripts) sim_post_forcedresponse() { - echo -e $BOLD"CONF(${BASH_LINENO[0]}): "${FUNCNAME[0]} $@ $EBOLD + __log_conf_start $@ if [ $# -ne 3 ]; then - ((RES_CONF_FAIL++)) __print_err " " $@ return 1 fi - app=$2 - res=$(__find_sim_port $app) - + res=$(__find_sim_port $2) curlString="curl -X POST -skw %{http_code} $RIC_SIM_LOCALHOST"$res"/forceresponse" if [ $# -eq 3 ]; then curlString=$curlString"?code="$3 fi - __execute_curl_to_sim $1 "$curlString" return $? } @@ -204,20 +178,16 @@ sim_post_forcedresponse() { # [] # (Function for test scripts) sim_post_forcedelay() { - echo -e $BOLD"CONF(${BASH_LINENO[0]}): "${FUNCNAME[0]} $@ $EBOLD + __log_conf_start $@ if [ $# -ne 3 ]; then - ((RES_CONF_FAIL++)) __print_err " []" $@ return 1 fi - app=$2 - res=$(__find_sim_port $app) - + res=$(__find_sim_port $2) curlString="curl -X POST -skw %{http_code} $RIC_SIM_LOCALHOST$res/forcedelay" if [ $# -eq 3 ]; then curlString=$curlString"?delay="$3 fi - __execute_curl_to_sim $1 "$curlString" return $? } \ No newline at end of file