X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=test%2Fauto-test%2FFTC100.sh;h=728252d0fd2692c7e4aad46c2cd958580b4619d0;hb=575869c5ed7533f22b0c7db05fdbbbb8e00e09fc;hp=da5962f0cbe4a66f5b25b6023fa5658d4266c091;hpb=70e878f1b5a558baaaa5ab5885a039ed96c9f8d5;p=nonrtric.git diff --git a/test/auto-test/FTC100.sh b/test/auto-test/FTC100.sh index da5962f0..728252d0 100755 --- a/test/auto-test/FTC100.sh +++ b/test/auto-test/FTC100.sh @@ -20,17 +20,16 @@ TC_ONELINE_DESCR="Full agent API walk through using agent REST/DMAAP and with/without SDNC A1 Controller" +#App names to exclude checking pulling images for, space separated list +EXCLUDED_IMAGES="SDNC_ONAP" + . ../common/testcase_common.sh $@ . ../common/agent_api_functions.sh . ../common/ricsimulator_api_functions.sh #### 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" @@ -45,6 +44,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 @@ -63,15 +74,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 @@ -109,7 +113,13 @@ for __httpx in $TESTED_PROTOCOLS ; do 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 #"Using secure ports towards the agent" @@ -286,15 +296,21 @@ for __httpx in $TESTED_PROTOCOLS ; do deviation "TR10 - agent allows policy creation on unregistered service (orig problem) - test combo $interface and $__httpx" #Kept until decison - #api_put_policy 400 "unregistered-service" ricsim_g1_1 1 2000 testdata/OSC/pi1_template.json + #api_put_policy 400 "unregistered-service" ricsim_g1_1 1 2000 NOTRANSIENT testdata/OSC/pi1_template.json #Allow 201 for now - api_put_policy 201 "unregistered-service" ricsim_g1_1 1 2000 testdata/OSC/pi1_template.json + api_put_policy 201 "unregistered-service" ricsim_g1_1 1 2000 NOTRANSIENT testdata/OSC/pi1_template.json + + api_put_policy 201 "service10" ricsim_g1_1 1 5000 NOTRANSIENT testdata/OSC/pi1_template.json + api_put_policy 200 "service10" ricsim_g1_1 1 5000 NOTRANSIENT testdata/OSC/pi1_template.json + + api_put_policy 200 "service10" ricsim_g1_1 1 5000 true testdata/OSC/pi1_template.json + api_put_policy 200 "service10" ricsim_g1_1 1 5000 false testdata/OSC/pi1_template.json - api_put_policy 201 "service10" ricsim_g1_1 1 5000 testdata/OSC/pi1_template.json - api_put_policy 200 "service10" ricsim_g1_1 1 5000 testdata/OSC/pi1_template.json + api_put_policy 201 "service10" ricsim_g2_1 NOTYPE 5100 NOTRANSIENT testdata/STD/pi1_template.json + api_put_policy 200 "service10" ricsim_g2_1 NOTYPE 5100 NOTRANSIENT testdata/STD/pi1_template.json - api_put_policy 201 "service10" ricsim_g2_1 NOTYPE 5100 testdata/STD/pi1_template.json - api_put_policy 200 "service10" ricsim_g2_1 NOTYPE 5100 testdata/STD/pi1_template.json + api_put_policy 200 "service10" ricsim_g2_1 NOTYPE 5100 true testdata/STD/pi1_template.json + api_put_policy 200 "service10" ricsim_g2_1 NOTYPE 5100 false testdata/STD/pi1_template.json VAL='NOT IN EFFECT' api_get_policy_status 200 5000 OSC "$VAL" "false"