X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=test%2Fauto-test%2FFTC300.sh;h=fb7bc342c238575a7387f33ce38767f7c8bd5dfb;hb=b5cb68ea0e77d0a1421b4f17cc58b981628c29f7;hp=e3181bd2947353e36547d4870ed9cda0e0e3a4c9;hpb=70e878f1b5a558baaaa5ab5885a039ed96c9f8d5;p=nonrtric.git diff --git a/test/auto-test/FTC300.sh b/test/auto-test/FTC300.sh index e3181bd2..fb7bc342 100755 --- a/test/auto-test/FTC300.sh +++ b/test/auto-test/FTC300.sh @@ -19,16 +19,16 @@ TC_ONELINE_DESCR="Resync 10000 policies using OSC interface over REST" +#App names to include in the test, space separated list +INCLUDED_IMAGES="CBS CONSUL CP CR MR PA RICSIM SDNC" + . ../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 DMAAP_BATCH DMAAP_BATCH+SDNC" @@ -43,18 +43,37 @@ for __httpx in $TESTED_PROTOCOLS ; do echo "#####################################################################" echo "#####################################################################" - - # Clean container and start all needed containers # - clean_containers - if [ $__httpx == "HTTPS" ]; then - echo "Using secure ports towards simulators" + CR_PATH="https://$CR_APP_NAME:$CR_EXTERNAL_SECURE_PORT/callbacks" + use_cr_https use_simulator_https + use_mr_https + if [[ $interface = *"SDNC"* ]]; then + use_sdnc_https + fi + if [[ $interface = *"DMAAP"* ]]; then + use_agent_dmaap_https + else + use_agent_rest_https + fi else - echo "Using non-secure ports towards simulators" + CR_PATH="http://$CR_APP_NAME:$CR_EXTERNAL_PORT/callbacks" + use_cr_http use_simulator_http + use_mr_http + if [[ $interface = *"SDNC"* ]]; then + use_sdnc_http + fi + if [[ $interface = *"DMAAP"* ]]; then + use_agent_dmaap_http + else + use_agent_rest_http + fi fi + # Clean container and start all needed containers # + clean_containers + start_ric_simulators ricsim_g1 4 OSC_2.1.0 start_ric_simulators ricsim_g2 4 STD_1.1.3 @@ -67,7 +86,7 @@ for __httpx in $TESTED_PROTOCOLS ; do if [[ $interface = *"SDNC"* ]]; then start_sdnc - prepare_consul_config SDNC ".consul_config.json" + prepare_consul_config SDNC ".consul_config.json" else prepare_consul_config NOSDNC ".consul_config.json" fi @@ -80,18 +99,6 @@ for __httpx in $TESTED_PROTOCOLS ; do set_agent_debug - if [[ $interface == *"DMAAP"* ]]; then - use_agent_dmaap - else - if [ $__httpx == "HTTPS" ]; then - echo "Using secure ports towards the agent" - use_agent_rest_https - else - echo "Using non-secure ports towards the agent" - use_agent_rest_http - fi - fi - api_get_status 200 sim_print ricsim_g1_1 interface @@ -102,15 +109,15 @@ for __httpx in $TESTED_PROTOCOLS ; do api_equal json:policy_types 2 120 #Wait for the agent to refresh types from the simulator - api_put_service 201 "rapp1" 3600 "$CR_PATH/callbacks/1" + api_put_service 201 "serv1" 3600 "$CR_PATH/1" START_ID=2000 NUM_POLICIES=10000 if [[ $interface == *"BATCH"* ]]; then - api_put_policy_batch 201 "rapp1" ricsim_g1_1 1 $START_ID testdata/OSC/pi1_template.json $NUM_POLICIES + api_put_policy_batch 201 "serv1" ricsim_g1_1 1 $START_ID NOTRANSIENT testdata/OSC/pi1_template.json $NUM_POLICIES else - api_put_policy 201 "rapp1" ricsim_g1_1 1 $START_ID testdata/OSC/pi1_template.json $NUM_POLICIES + api_put_policy 201 "serv1" ricsim_g1_1 1 $START_ID NOTRANSIENT testdata/OSC/pi1_template.json $NUM_POLICIES fi sim_equal ricsim_g1_1 num_instances 10000 @@ -124,9 +131,9 @@ for __httpx in $TESTED_PROTOCOLS ; do START_ID=$(($START_ID+$NUM_POLICIES)) if [[ $interface == *"BATCH"* ]]; then - api_put_policy_batch 201 "rapp1" ricsim_g2_1 NOTYPE $START_ID testdata/STD/pi1_template.json $NUM_POLICIES + api_put_policy_batch 201 "serv1" ricsim_g2_1 NOTYPE $START_ID NOTRANSIENT testdata/STD/pi1_template.json $NUM_POLICIES else - api_put_policy 201 "rapp1" ricsim_g2_1 NOTYPE $START_ID testdata/STD/pi1_template.json $NUM_POLICIES + api_put_policy 201 "serv1" ricsim_g2_1 NOTYPE $START_ID NOTRANSIENT testdata/STD/pi1_template.json $NUM_POLICIES fi sim_equal ricsim_g2_1 num_instances 10000 @@ -158,16 +165,17 @@ for __httpx in $TESTED_PROTOCOLS ; do api_equal json:policies 19995 + check_policy_agent_logs + + store_logs "${__httpx}__${interface}" + done done -check_policy_agent_logs - #### TEST COMPLETE #### -store_logs END print_result