X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=test%2Fauto-test%2FFTC1.sh;h=413b22e4d9c258086f956f112887c2a9d120f4ba;hb=6f86ab364ac739951556bf2d5bf70429b518de47;hp=2eaf0f392608953629ca3df82f72eb19996b734c;hpb=2358ae67744169841843bbc0571063235390718e;p=nonrtric.git diff --git a/test/auto-test/FTC1.sh b/test/auto-test/FTC1.sh index 2eaf0f39..413b22e4 100755 --- a/test/auto-test/FTC1.sh +++ b/test/auto-test/FTC1.sh @@ -29,11 +29,6 @@ EXCLUDED_IMAGES="SDNC_ONAP" #### TEST BEGIN #### -#Local vars in test script -########################## - -# Path to callback receiver -CR_PATH="http://$CR_APP_NAME:$CR_EXTERNAL_PORT/callbacks" generate_uuid @@ -50,6 +45,18 @@ for __httpx in $TESTED_PROTOCOLS ; do echo "#####################################################################" echo "#####################################################################" + #Local vars in test script + ########################## + + if [ $__httpx == "HTTPS" ]; then + # Path to callback receiver + CR_PATH="https://$CR_APP_NAME:$CR_EXTERNAL_SECURE_PORT/callbacks" + use_cr_https + else + # Path to callback receiver + CR_PATH="http://$CR_APP_NAME:$CR_EXTERNAL_PORT/callbacks" + use_cr_http + fi # Clean container and start all needed containers # clean_containers @@ -77,7 +84,7 @@ for __httpx in $TESTED_PROTOCOLS ; do start_cr - if [ $interface == "SDNC" ]; then + if [ $interface == "REST+SDNC" ] || [ $interface == "DMAAP+SDNC" ]; then start_sdnc @@ -102,16 +109,18 @@ for __httpx in $TESTED_PROTOCOLS ; do start_control_panel - if [ $interface == "REST+SDNC" ] || [ $interface == "DMAAP+SDNC" ]; then - start_sdnc - fi - start_policy_agent set_agent_debug if [ $interface == "DMAAP" ] || [ $interface == "DMAAP+SDNC" ]; then - use_agent_dmaap + if [ $__httpx == "HTTPS" ]; then + echo "Using secure ports towards dmaap" + use_agent_dmaap_https + else + echo "Using non-secure ports towards dmaap" + use_agent_dmaap_http + fi else if [ $__httpx == "HTTPS" ]; then echo "Using secure ports towards the agent"