X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=test%2Fauto-test%2FFTC110.sh;h=c74ce242f141b6eaf71201d73ccb7823fc09de43;hb=d6624171da70a1c71e3d5b8263855fabf613a06e;hp=81aa95caae6ea0b0d05ad7df8e3503870ea7e5c9;hpb=10e254d9b7bc522bb2c25d590e6d203bf25a592d;p=nonrtric.git diff --git a/test/auto-test/FTC110.sh b/test/auto-test/FTC110.sh index 81aa95ca..c74ce242 100755 --- a/test/auto-test/FTC110.sh +++ b/test/auto-test/FTC110.sh @@ -21,15 +21,20 @@ TC_ONELINE_DESCR="Testing of service registration timeouts and keepalive" #App names to include in the test when running docker, space separated list -DOCKER_INCLUDED_IMAGES="CBS CONSUL CP CR MR PA RICSIM" +DOCKER_INCLUDED_IMAGES="CBS CONSUL CP CR MR PA RICSIM NGW" #App names to include in the test when running kubernetes, space separated list -KUBE_INCLUDED_IMAGES="CP CR MR PA RICSIM" +KUBE_INCLUDED_IMAGES="CP CR MR PA RICSIM KUBEPROXY NGW" #Prestarted app (not started by script) to include in the test when running kubernetes, space separated list KUBE_PRESTARTED_IMAGES="" +#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="NGW" + #Supported test environment profiles -SUPPORTED_PROFILES="ONAP-GUILIN ONAP-HONOLULU ORAN-CHERRY ORAN-DAWN" +SUPPORTED_PROFILES="ONAP-GUILIN ONAP-HONOLULU ONAP-ISTANBUL ORAN-CHERRY ORAN-D-RELEASE" #Supported run modes SUPPORTED_RUNMODES="DOCKER KUBE" @@ -40,19 +45,26 @@ SUPPORTED_RUNMODES="DOCKER KUBE" . ../common/cr_api_functions.sh . ../common/mr_api_functions.sh . ../common/ricsimulator_api_functions.sh +. ../common/kube_proxy_api_functions.sh +. ../common/gateway_api_functions.sh + +setup_testenvironment + +#### TEST BEGIN #### -generate_uuid +generate_policy_uuid use_cr_http use_simulator_http use_mr_http use_agent_rest_http - -#### TEST BEGIN #### - clean_environment +if [ $RUNMODE == "KUBE" ]; then + start_kube_proxy +fi + 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 @@ -67,9 +79,13 @@ if [ $RUNMODE == "DOCKER" ]; then start_consul_cbs fi -start_control_panel $SIM_GROUP/$CONTROL_PANEL_COMPOSE_DIR/application.properties +start_control_panel $SIM_GROUP/$CONTROL_PANEL_COMPOSE_DIR/$CONTROL_PANEL_CONFIG_FILE + +if [ ! -z "$NRT_GATEWAY_APP_NAME" ]; then + start_gateway $SIM_GROUP/$NRT_GATEWAY_COMPOSE_DIR/$NRT_GATEWAY_CONFIG_FILE +fi -start_policy_agent NORPOXY $SIM_GROUP/$POLICY_AGENT_COMPOSE_DIR/application.yaml +start_policy_agent NORPOXY $SIM_GROUP/$POLICY_AGENT_COMPOSE_DIR/$POLICY_AGENT_CONFIG_FILE prepare_consul_config NOSDNC ".consul_config.json" @@ -265,7 +281,6 @@ api_get_service_ids 200 mr_equal requests_submitted 0 check_policy_agent_logs -check_control_panel_logs #### TEST COMPLETE ####