X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=test%2Fauto-test%2FFTC800.sh;h=b1e9f53fc71017df7c104a3bfaddd8c85c7dfca0;hb=caf750c05d1fdac7165b2368f5cc6882517c6390;hp=6bab06ba15c3b6923bac1b766a8627a6fa19256a;hpb=6116e98837066075013c5ee22b39a2df4ff604ea;p=nonrtric.git diff --git a/test/auto-test/FTC800.sh b/test/auto-test/FTC800.sh index 6bab06ba..b1e9f53f 100755 --- a/test/auto-test/FTC800.sh +++ b/test/auto-test/FTC800.sh @@ -28,10 +28,10 @@ EXCLUDED_IMAGES="SDNC_ONAP" #### TEST BEGIN #### +generate_uuid + #Local vars in test script ########################## -# Path to callback receiver -CR_PATH="http://$CR_APP_NAME:$CR_EXTERNAL_PORT/callbacks" # Number of policies in each sequence NUM_POLICIES=10000 @@ -49,6 +49,19 @@ 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 + # Policy instance start id START_ID=1 @@ -68,15 +81,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 @@ -152,7 +158,13 @@ for __httpx in $TESTED_PROTOCOLS ; do sim_equal ricsim_g2_1 num_instances $NUM_POLICIES - 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 START_ID=$(($START_ID+$NUM_POLICIES))