X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=test%2Fcommon%2Fricsimulator_api_functions.sh;h=56f968ee26bf4c46ca91ea93c70bdf6086a814c1;hb=6a39814272307d0207222c9229b0d765ac062bf0;hp=f003559260f247b9929ce47df9b2be3daa2e4ac5;hpb=4681b7e887f4b49608737f0ffe2a04052d2e43a4;p=nonrtric.git diff --git a/test/common/ricsimulator_api_functions.sh b/test/common/ricsimulator_api_functions.sh index f0035592..56f968ee 100644 --- a/test/common/ricsimulator_api_functions.sh +++ b/test/common/ricsimulator_api_functions.sh @@ -22,17 +22,15 @@ # Excute a curl cmd towards a ricsimulator and check the response code. -# args: [] +# args: __execute_curl_to_sim() { echo ${FUNCNAME[1]} "line: "${BASH_LINENO[1]} >> $HTTPLOG echo " CMD: $2" >> $HTTPLOG - if [ $# -eq 3 ]; then - echo " FILE: $(<$3)" >> $HTTPLOG - fi res="$($2)" echo " RESP: $res" >> $HTTPLOG retcode=$? if [ $retcode -ne 0 ]; then + ((RES_CONF_FAIL++)) echo " RETCODE: "$retcode echo -e $RED" FAIL - fatal error when executing curl."$ERED return 1 @@ -43,6 +41,7 @@ __execute_curl_to_sim() { return 0 fi echo -e $RED" FAIL - expected http response: "$1" but got http response: "$status $ERED + ((RES_CONF_FAIL++)) return 1 } @@ -118,11 +117,11 @@ sim_put_policy_type() { 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" $4 + __execute_curl_to_sim $1 "$curlString" return $? } -# DSimulator API: Delete a policy type in a ric +# Simulator API: Delete a policy type in a ric # # (Function for test scripts) sim_delete_policy_type() {