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=877a2097a7a94c2e550664f1a056bc08dfb3a939;hpb=cd4d0e141b1e4ab07e8c89da2e002378826b7111;p=nonrtric.git diff --git a/test/auto-test/FTC1.sh b/test/auto-test/FTC1.sh index 877a2097..413b22e4 100755 --- a/test/auto-test/FTC1.sh +++ b/test/auto-test/FTC1.sh @@ -29,11 +29,8 @@ 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 # Tested variants of REST/DMAAP/SDNC config TESTED_VARIANTS="REST DMAAP REST+SDNC DMAAP+SDNC" @@ -48,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 @@ -66,15 +75,8 @@ for __httpx in $TESTED_PROTOCOLS ; do start_mr if [ $__httpx == "HTTPS" ]; then - - deviation "TR17 - agent cannot use https towards MR - test combo $interface and $__httpx" - #This is the intention #echo "Using secure ports between agent and MR" - #use_mr_https - - #Work around until it is fixed - #"Using non-secure ports between agent and MR" - use_mr_http + use_mr_https else #"Using non-secure ports between agent and MR" use_mr_http @@ -82,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 @@ -107,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"