X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=test%2Fauto-test%2FFTC310.sh;h=dd79b33f0143fe72cc843ee3e0668071b6214fc4;hb=e0b665e3ff544bb78411bdc7f6b3ba2818fdeed4;hp=7eb3c19b3d2a7d8ae81bc1952128821fac94e772;hpb=4681b7e887f4b49608737f0ffe2a04052d2e43a4;p=nonrtric.git diff --git a/test/auto-test/FTC310.sh b/test/auto-test/FTC310.sh index 7eb3c19b..dd79b33f 100755 --- a/test/auto-test/FTC310.sh +++ b/test/auto-test/FTC310.sh @@ -18,69 +18,134 @@ # -TC_ONELINE_DESCR="Resync of RIC via changes in the consul config" +TC_ONELINE_DESCR="Resync of RIC via changes in the consul config or pushed config" -#App names to exclude checking pulling images for, space separated list -EXCLUDED_IMAGES="SDNC_ONAP" +#App names to include in the test when running docker, space separated list +DOCKER_INCLUDED_IMAGES="CBS CONSUL CP CR MR PA RICSIM" + +#Supported test environment profiles +SUPPORTED_PROFILES="ONAP-GUILIN ONAP-HONOLULU ORAN-CHERRY ORAN-DAWN" +#Supported run modes +SUPPORTED_RUNMODES="DOCKER" . ../common/testcase_common.sh $@ . ../common/agent_api_functions.sh . ../common/ricsimulator_api_functions.sh +. ../common/cr_api_functions.sh +. ../common/mr_api_functions.sh +. ../common/control_panel_api_functions.sh . ../common/controller_api_functions.sh #### TEST BEGIN #### -generate_uuid +if [ "$PMS_VERSION" == "V2" ]; then + TESTED_VARIANTS="CONSUL NOCONSUL" +else + TESTED_VARIANTS="CONSUL" +fi + +for consul_conf in $TESTED_VARIANTS ; do + generate_uuid + + # Clean container and start all needed containers # + clean_environment + + start_policy_agent + + 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_SERVICE_PATH/ric-registration" + + # Start one RIC of each type + start_ric_simulators ricsim_g1 1 OSC_2.1.0 + start_ric_simulators ricsim_g2 1 STD_1.1.3 + if [ "$PMS_VERSION" == "V2" ]; then + start_ric_simulators ricsim_g3 1 STD_2.0.0 + fi -# Clean container and start all needed containers # -clean_containers + start_mr -# Start one RIC of each type -start_ric_simulators ricsim_g1 1 OSC_2.1.0 -start_ric_simulators ricsim_g2 1 STD_1.1.3 + start_cr -start_mr + start_control_panel -start_cr + if [ $consul_conf == "CONSUL" ]; then + start_consul_cbs + fi -start_consul_cbs + prepare_consul_config NOSDNC ".consul_config.json" -prepare_consul_config NOSDNC ".consul_config.json" + if [ "$PMS_VERSION" == "V2" ] && [ $consul_conf == "NOCONSUL" ]; then + api_put_configuration 200 ".consul_config.json" + api_get_configuration 200 ".consul_config.json" + else + consul_config_app ".consul_config.json" + fi -consul_config_app ".consul_config.json" + if [ "$PMS_VERSION" == "V2" ]; then + api_equal json:rics 3 300 -start_control_panel + cr_equal received_callbacks 3 120 -start_policy_agent + cr_api_check_all_sync_events 200 ric-registration ricsim_g1_1 ricsim_g2_1 ricsim_g3_1 + else + api_equal json:rics 2 300 + fi -api_equal json:rics 2 120 + # Add an STD RIC and check + start_ric_simulators ricsim_g2 2 STD_1.1.3 + prepare_consul_config NOSDNC ".consul_config.json" + if [ "$PMS_VERSION" == "V2" ] && [ $consul_conf == "NOCONSUL" ]; then + api_put_configuration 200 ".consul_config.json" + api_get_configuration 200 ".consul_config.json" + else + consul_config_app ".consul_config.json" + fi -# Add an OSC RIC and check -start_ric_simulators ricsim_g2 2 STD_1.1.3 + if [ "$PMS_VERSION" == "V2" ]; then + api_equal json:rics 4 120 -prepare_consul_config NOSDNC ".consul_config.json" + cr_equal received_callbacks 4 120 -consul_config_app ".consul_config.json" + cr_api_check_all_sync_events 200 ric-registration ricsim_g2_2 + else + api_equal json:rics 3 120 + fi -api_equal json:rics 3 120 + check_policy_agent_logs + check_control_panel_logs -check_policy_agent_logs -check_control_panel_logs + # Remove one RIC RIC and check + start_ric_simulators ricsim_g2 1 STD_1.1.3 -# Remove one OSC RIC and check -start_ric_simulators ricsim_g2 1 STD_1.1.3 + prepare_consul_config NOSDNC ".consul_config.json" + if [ "$PMS_VERSION" == "V2" ] && [ $consul_conf == "NOCONSUL" ]; then + api_put_configuration 200 ".consul_config.json" + api_get_configuration 200 ".consul_config.json" + else + consul_config_app ".consul_config.json" + fi -prepare_consul_config NOSDNC ".consul_config.json" + if [ "$PMS_VERSION" == "V2" ]; then + api_equal json:rics 3 120 -consul_config_app ".consul_config.json" + cr_equal received_callbacks 4 120 + else + api_equal json:rics 2 120 + fi -api_equal json:rics 2 120 + if [ "$PMS_VERSION" == "V2" ] && [ $consul_conf == "NOCONSUL" ]; then + api_get_configuration 200 ".consul_config.json" + fi -check_policy_agent_logs -check_control_panel_logs + check_policy_agent_logs + check_control_panel_logs -store_logs END + store_logs END_$consul_conf +done #### TEST COMPLETE #### @@ -88,4 +153,4 @@ store_logs END print_result -auto_clean_containers +auto_clean_environment