X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=test%2Fauto-test%2FFTC310.sh;h=767dc4ffc9b93a98b6b8258d7a5810d5aba15e07;hb=542d2dbfd8df1fcb011fea3d69d539c5c5fe3667;hp=eec4542059c622f0927935f9f37d94c2b82f4de5;hpb=b83e54c2bdab21d7f6ff5c9a4c340e801c93e1c2;p=nonrtric.git diff --git a/test/auto-test/FTC310.sh b/test/auto-test/FTC310.sh index eec45420..767dc4ff 100755 --- a/test/auto-test/FTC310.sh +++ b/test/auto-test/FTC310.sh @@ -20,38 +20,49 @@ TC_ONELINE_DESCR="Resync of RIC via changes in the consul config or pushed config" -#App names to include in the test, space separated list -INCLUDED_IMAGES="CBS CONSUL CP CR MR PA RICSIM" +#App names to include in the test when running docker, space separated list +DOCKER_INCLUDED_IMAGES="CBS CONSUL CP CR MR PA RICSIM KUBEPROXY" -#SUPPORTED TEST ENV FILE -SUPPORTED_PROFILES="ONAP-MASTER ONAP-GUILIN ORAN-CHERRY" +#Ignore image in DOCKER_INCLUDED_IMAGES, KUBE_INCLUDED_IMAGES if +#the image is not configured in the supplied env_file +#Used for images not applicable to all supported profile +CONDITIONALLY_IGNORED_IMAGES="CBS CONSUL" -. ../common/testcase_common.sh $@ -. ../common/agent_api_functions.sh -. ../common/ricsimulator_api_functions.sh -. ../common/cr_api_functions.sh +#Supported test environment profiles +SUPPORTED_PROFILES="ONAP-GUILIN ONAP-HONOLULU ONAP-ISTANBUL ONAP-JAKARTA ORAN-CHERRY ORAN-D-RELEASE ORAN-E-RELEASE ORAN-F-RELEASE" +#Supported run modes +SUPPORTED_RUNMODES="DOCKER" + +. ../common/testcase_common.sh $@ + +setup_testenvironment #### TEST BEGIN #### if [ "$PMS_VERSION" == "V2" ]; then TESTED_VARIANTS="CONSUL NOCONSUL" + if [[ "$PMS_FEATURE_LEVEL" == *"NOCONSUL"* ]]; then + TESTED_VARIANTS="NOCONSUL" + fi else TESTED_VARIANTS="CONSUL" fi for consul_conf in $TESTED_VARIANTS ; do - generate_uuid + generate_policy_uuid # Clean container and start all needed containers # - clean_containers + clean_environment + + start_kube_proxy - start_policy_agent + start_policy_agent NOPROXY $SIM_GROUP/$POLICY_AGENT_COMPOSE_DIR/$POLICY_AGENT_CONFIG_FILE set_agent_trace # Create service to be able to receive events when rics becomes available # Must use rest towards the agent since dmaap is not configured yet - api_put_service 201 "ric-registration" 0 "$CR_PATH/ric-registration" + api_put_service 201 "ric-registration" 0 "$CR_SERVICE_APP_PATH_0/ric-registration" # Start one RIC of each type start_ric_simulators ricsim_g1 1 OSC_2.1.0 @@ -62,9 +73,9 @@ for consul_conf in $TESTED_VARIANTS ; do start_mr - start_cr + start_cr 1 - start_control_panel + start_control_panel $SIM_GROUP/$CONTROL_PANEL_COMPOSE_DIR/$CONTROL_PANEL_CONFIG_FILE if [ $consul_conf == "CONSUL" ]; then start_consul_cbs @@ -80,13 +91,13 @@ for consul_conf in $TESTED_VARIANTS ; do fi if [ "$PMS_VERSION" == "V2" ]; then - api_equal json:rics 3 120 + api_equal json:rics 3 300 - cr_equal received_callbacks 3 120 + cr_equal 0 received_callbacks 3 120 - cr_api_check_all_sync_events 200 ric-registration ricsim_g1_1 ricsim_g2_1 ricsim_g3_1 + cr_api_check_all_sync_events 200 0 ric-registration ricsim_g1_1 ricsim_g2_1 ricsim_g3_1 else - api_equal json:rics 2 120 + api_equal json:rics 2 300 fi # Add an STD RIC and check @@ -103,15 +114,15 @@ for consul_conf in $TESTED_VARIANTS ; do if [ "$PMS_VERSION" == "V2" ]; then api_equal json:rics 4 120 - cr_equal received_callbacks 4 120 + cr_equal 0 received_callbacks 4 120 - cr_api_check_all_sync_events 200 ric-registration ricsim_g2_2 + cr_api_check_all_sync_events 200 0 ric-registration ricsim_g2_2 else api_equal json:rics 3 120 fi check_policy_agent_logs - check_control_panel_logs + # Remove one RIC RIC and check start_ric_simulators ricsim_g2 1 STD_1.1.3 @@ -127,7 +138,7 @@ for consul_conf in $TESTED_VARIANTS ; do if [ "$PMS_VERSION" == "V2" ]; then api_equal json:rics 3 120 - cr_equal received_callbacks 4 120 + cr_equal 0 received_callbacks 4 120 else api_equal json:rics 2 120 fi @@ -137,7 +148,6 @@ for consul_conf in $TESTED_VARIANTS ; do fi check_policy_agent_logs - check_control_panel_logs store_logs END_$consul_conf done @@ -148,4 +158,4 @@ done print_result -auto_clean_containers +auto_clean_environment