X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=test%2Fauto-test%2FFTC810.sh;h=7fa5ea6e48b1ad8f915c9cf5eb5900a4fb8e5be4;hb=caf750c05d1fdac7165b2368f5cc6882517c6390;hp=2dae7e75e2a35a16273f6666dffe6c6797357804;hpb=d9df6244e4ba89b71cba364f156ca529c3703faa;p=nonrtric.git diff --git a/test/auto-test/FTC810.sh b/test/auto-test/FTC810.sh index 2dae7e75..7fa5ea6e 100755 --- a/test/auto-test/FTC810.sh +++ b/test/auto-test/FTC810.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"