X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=test%2Fauto-test%2FFTC810.sh;h=460fb8ee0319e77c091f530166cb414aa05834f0;hb=bf3700b1064ec3526af205cab454bd1964ce8650;hp=2dae7e75e2a35a16273f6666dffe6c6797357804;hpb=a26055e5007e75a5aa9551305ea4da211e80df14;p=nonrtric.git diff --git a/test/auto-test/FTC810.sh b/test/auto-test/FTC810.sh index 2dae7e75..460fb8ee 100755 --- a/test/auto-test/FTC810.sh +++ b/test/auto-test/FTC810.sh @@ -20,7 +20,7 @@ TC_ONELINE_DESCR="Repeatedly create and delete policies in each RICs for 24h (or configured number of days). Via agent REST/DMAAP/DMAAP_BATCH and SDNC using http or https" #App names to exclude checking pulling images for, space separated list -EXCLUDED_IMAGES="SDNC_ONAP" +EXCLUDED_IMAGES="ECS" . ../common/testcase_common.sh $@ . ../common/agent_api_functions.sh @@ -28,10 +28,11 @@ 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 RICs per interface type (OSC and STD) NUM_RICS=30 # Number of policy instances per RIC @@ -41,14 +42,20 @@ DAYS=3 clean_containers -# use http or https for all apis -HTTPX=https +# use HTTP or HTTPS for all apis +HTTPX=HTTPS -if [ $HTTPX == "http" ]; then +if [ $HTTPX == "HTTP" ]; then + # Path to callback receiver + CR_PATH="http://$CR_APP_NAME:$CR_EXTERNAL_PORT/callbacks" + use_cr_http use_agent_rest_http use_sdnc_http use_simulator_http else + # Path to callback receiver + CR_PATH="https://$CR_APP_NAME:$CR_EXTERNAL_SECURE_PORT/callbacks" + use_cr_https use_agent_rest_https use_sdnc_https use_simulator_https @@ -140,13 +147,19 @@ while [ $(($SECONDS-$TEST_START)) -lt $TEST_DURATION ]; do echo "############################################" if [ $interface == "REST" ] || [ $interface == "REST_PARALLEL" ]; then - if [ $HTTPX == "http" ]; then + if [ $HTTPX == "HTTP" ]; then use_agent_rest_http else use_agent_rest_https fi else - 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 fi echo "Create $NUM_INSTANCES instances in each OSC RIC"