X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=test%2Fauto-test%2FFTC310.sh;h=c0205f77dd4d0fb6d6a41dea558159f4485de41d;hb=refs%2Fchanges%2F88%2F12388%2F5;hp=616751bf60e68966415322ecbbf6b14e8191f9fa;hpb=e6b019fac7bd4cc2610564909de61b983455661a;p=nonrtric.git diff --git a/test/auto-test/FTC310.sh b/test/auto-test/FTC310.sh index 616751bf..c0205f77 100755 --- a/test/auto-test/FTC310.sh +++ b/test/auto-test/FTC310.sh @@ -1,7 +1,8 @@ #!/bin/bash # ============LICENSE_START=============================================== -# Copyright (C) 2020 Nordix Foundation. All rights reserved. +# Copyright (C) 2020-2023 Nordix Foundation. All rights reserved. +# Copyright (C) 2023 OpenInfra Foundation Europe. All rights reserved. # ======================================================================== # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -18,137 +19,106 @@ # -TC_ONELINE_DESCR="Resync of RIC via changes in the consul config or pushed config" +TC_ONELINE_DESCR="Resync of RIC via changes in the pushed config" #App names to include in the test when running docker, space separated list -DOCKER_INCLUDED_IMAGES="CBS CONSUL CP CR MR PA RICSIM NGW" +DOCKER_INCLUDED_IMAGES="CP CR MR A1PMS RICSIM KUBEPROXY" + +#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="" #Supported test environment profiles -SUPPORTED_PROFILES="ONAP-GUILIN ONAP-HONOLULU ONAP-ISTANBUL ORAN-CHERRY ORAN-DAWN" +SUPPORTED_PROFILES="ONAP-KOHN ONAP-LONDON ONAP-MONTREAL ORAN-G-RELEASE ORAN-H-RELEASE ORAN-I-RELEASE" #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 -. ../common/consul_cbs_functions.sh +. ../common/testcase_common.sh $@ setup_testenvironment #### TEST BEGIN #### -if [ "$PMS_VERSION" == "V2" ]; then - TESTED_VARIANTS="CONSUL NOCONSUL" -else - TESTED_VARIANTS="CONSUL" -fi +sim_generate_policy_uuid -for consul_conf in $TESTED_VARIANTS ; do - generate_policy_uuid +# Clean container and start all needed containers # +clean_environment - # Clean container and start all needed containers # - clean_environment +start_kube_proxy - start_policy_agent NOPROXY $SIM_GROUP/$POLICY_AGENT_COMPOSE_DIR/$POLICY_AGENT_CONFIG_FILE +start_a1pms NOPROXY $SIM_GROUP/$A1PMS_COMPOSE_DIR/$A1PMS_CONFIG_FILE - set_agent_trace +set_a1pms_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" +# Create service to be able to receive events when rics becomes available +# Must use rest towards the a1pms since dmaap is not configured yet +a1pms_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 - 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 +# 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_ric_simulators ricsim_g3 1 STD_2.0.0 +if [[ "$A1PMS_FEATURE_LEVEL" == *"NO-DMAAP"* ]]; then + : +else start_mr +fi - 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 - fi - 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 - if [ "$PMS_VERSION" == "V2" ]; then - api_equal json:rics 3 300 +prepare_a1pms_config NOSDNC ".a1pms_config.json" - cr_equal received_callbacks 3 120 +a1pms_api_put_configuration 200 ".a1pms_config.json" +a1pms_api_get_configuration 200 ".a1pms_config.json" - 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 +a1pms_equal json:rics 3 300 - # Add an STD RIC and check - start_ric_simulators ricsim_g2 2 STD_1.1.3 +cr_equal 0 received_callbacks 3 120 - 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 +cr_api_check_all_sync_events 200 0 ric-registration ricsim_g1_1 ricsim_g2_1 ricsim_g3_1 - if [ "$PMS_VERSION" == "V2" ]; then - api_equal json:rics 4 120 +# Add an STD RIC and check - cr_equal received_callbacks 4 120 +start_ric_simulators ricsim_g2 2 STD_1.1.3 - cr_api_check_all_sync_events 200 ric-registration ricsim_g2_2 - else - api_equal json:rics 3 120 - fi +prepare_a1pms_config NOSDNC ".a1pms_config.json" +a1pms_api_put_configuration 200 ".a1pms_config.json" +a1pms_api_get_configuration 200 ".a1pms_config.json" - check_policy_agent_logs +a1pms_equal json:rics 4 120 +cr_equal 0 received_callbacks 4 120 - # Remove one RIC RIC and check - start_ric_simulators ricsim_g2 1 STD_1.1.3 +cr_api_check_all_sync_events 200 0 ric-registration ricsim_g2_2 - 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 +check_a1pms_logs - if [ "$PMS_VERSION" == "V2" ]; then - api_equal json:rics 3 120 +# Remove one RIC and check +start_ric_simulators ricsim_g2 1 STD_1.1.3 - cr_equal received_callbacks 4 120 - else - api_equal json:rics 2 120 - fi +prepare_a1pms_config NOSDNC ".a1pms_config.json" +a1pms_api_put_configuration 200 ".a1pms_config.json" +a1pms_api_get_configuration 200 ".a1pms_config.json" + +a1pms_equal json:rics 3 120 + +cr_equal 0 received_callbacks 4 120 + +if [ "$A1PMS_VERSION" == "V2" ]; then + a1pms_api_get_configuration 200 ".a1pms_config.json" +fi - if [ "$PMS_VERSION" == "V2" ] && [ $consul_conf == "NOCONSUL" ]; then - api_get_configuration 200 ".consul_config.json" - fi +check_a1pms_logs - check_policy_agent_logs - check_sdnc_logs +store_logs END_$consul_conf - store_logs END_$consul_conf -done #### TEST COMPLETE ####