X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=test%2Fcommon%2Fcontroller_api_functions.sh;h=c4ba71c3d3fe99adb3eaedb9a158008b36ac59ac;hb=7c00ce1f2938b42581d8f8d9c6c1fc93cefc21df;hp=ed298f1653902a675b7a7f9699d465cc6643fa78;hpb=34882342628629b55c19e7f6a5369de045ab9102;p=nonrtric.git diff --git a/test/common/controller_api_functions.sh b/test/common/controller_api_functions.sh index ed298f16..c4ba71c3 100644 --- a/test/common/controller_api_functions.sh +++ b/test/common/controller_api_functions.sh @@ -41,9 +41,9 @@ __do_curl_to_controller() { body=$(echo "$3" | sed 's/"/\\"/g') json='{"input":{"near-rt-ric-url":"'$2'","body":"'"$body"'"}}' fi - echo "$json" > .sndc.payload.json + echo "$json" > .sdnc.payload.json echo " FILE: $json" >> $HTTPLOG - curlString="curl -sw %{http_code} -X POST http://$SDNC_USER:$SDNC_PWD@localhost:$SDNC_EXTERNAL_PORT$SDNC_API_URL$1 -H accept:application/json -H Content-Type:application/json --data-binary @.sndc.payload.json" + curlString="curl -skw %{http_code} -X POST $SDNC_HTTPX://$SDNC_USER:$SDNC_PWD@localhost:$SDNC_LOCAL_PORT$SDNC_API_URL$1 -H accept:application/json -H Content-Type:application/json --data-binary @.sdnc.payload.json" echo " CMD: "$curlString >> $HTTPLOG res=$($curlString) retcode=$? @@ -61,8 +61,9 @@ __do_curl_to_controller() { return 1 fi body=${res:0:${#res}-3} + echo " JSON: "$body >> $HTTPLOG echo "$body" > .sdnc-reply.json - res=$(python ../common/extract_sdnc_reply.py .sdnc-reply.json) + res=$(python3 ../common/extract_sdnc_reply.py .sdnc-reply.json) echo " EXTRACED BODY+CODE: "$res >> $HTTPLOG echo "$res" return 0 @@ -122,7 +123,7 @@ controller_api_get_A1_policy_ids() { echo " TARGET JSON: $targetJson" >> $HTTPLOG - res=$(python ../common/compare_json.py "$targetJson" "$body") + res=$(python3 ../common/compare_json.py "$targetJson" "$body") if [ $res -ne 0 ]; then echo -e $RED" FAIL, returned body not correct"$ERED @@ -178,7 +179,7 @@ controller_api_get_A1_policy_type() { targetJson=$(< $5) echo " TARGET JSON: $targetJson" >> $HTTPLOG - res=$(python ../common/compare_json.py "$targetJson" "$body") + res=$(python3 ../common/compare_json.py "$targetJson" "$body") if [ $res -ne 0 ]; then echo -e $RED" FAIL, returned body not correct"$ERED @@ -337,7 +338,7 @@ controller_api_get_A1_policy_status() { body=${res:0:${#res}-3} echo " TARGET JSON: $targetJson" >> $HTTPLOG - res=$(python ../common/compare_json.py "$targetJson" "$body") + res=$(python3 ../common/compare_json.py "$targetJson" "$body") if [ $res -ne 0 ]; then echo -e $RED" FAIL, returned body not correct"$ERED