3 # ============LICENSE_START===============================================
4 # Copyright (C) 2020 Nordix Foundation. All rights reserved.
5 # ========================================================================
6 # Licensed under the Apache License, Version 2.0 (the "License");
7 # you may not use this file except in compliance with the License.
8 # You may obtain a copy of the License at
10 # http://www.apache.org/licenses/LICENSE-2.0
12 # Unless required by applicable law or agreed to in writing, software
13 # distributed under the License is distributed on an "AS IS" BASIS,
14 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 # See the License for the specific language governing permissions and
16 # limitations under the License.
17 # ============LICENSE_END=================================================
20 TC_ONELINE_DESCR="Testing southbound proxy for PMS and ECS"
22 #App names to include in the test when running docker, space separated list
23 DOCKER_INCLUDED_IMAGES="CBS CONSUL CP CR MR PA RICSIM ECS PRODSTUB HTTPPROXY NGW"
25 #App names to include in the test when running kubernetes, space separated list
26 KUBE_INCLUDED_IMAGES=" MR CR PA PRODSTUB RICSIM CP ECS HTTPPROXY KUBEPROXY NGW"
27 #Prestarted app (not started by script) to include in the test when running kubernetes, space separated list
28 KUBE_PRESTARTED_IMAGES=""
30 #Ignore image in DOCKER_INCLUDED_IMAGES, KUBE_INCLUDED_IMAGES if
31 #the image is not configured in the supplied env_file
32 #Used for images not applicable to all supported profile
33 CONDITIONALLY_IGNORED_IMAGES="NGW"
35 #Supported test environment profiles
36 SUPPORTED_PROFILES="ONAP-HONOLULU ONAP-ISTANBUL ORAN-CHERRY ORAN-DAWN"
38 SUPPORTED_RUNMODES="DOCKER KUBE"
40 . ../common/testcase_common.sh $@
41 . ../common/agent_api_functions.sh
42 . ../common/ricsimulator_api_functions.sh
43 . ../common/ecs_api_functions.sh
44 . ../common/prodstub_api_functions.sh
45 . ../common/cr_api_functions.sh
46 . ../common/mr_api_functions.sh
47 . ../common/control_panel_api_functions.sh
48 . ../common/consul_cbs_functions.sh
49 . ../common/http_proxy_api_functions.sh
50 . ../common/kube_proxy_api_functions.sh
51 . ../common/gateway_api_functions.sh
57 #Local vars in test script
58 ##########################
66 if [ "$PMS_VERSION" == "V2" ]; then
67 notificationurl=$CR_SERVICE_PATH"/test"
69 echo "PMS VERSION 2 (V2) is required"
75 if [ $RUNMODE == "KUBE" ]; then
83 start_ric_simulators $RIC_SIM_PREFIX"_g3" $STD_NUM_RICS STD_2.0.0
85 start_mr #Just to prevent errors in the agent log...
87 start_control_panel $SIM_GROUP/$CONTROL_PANEL_COMPOSE_DIR/$CONTROL_PANEL_CONFIG_FILE
89 if [ ! -z "$NRT_GATEWAY_APP_NAME" ]; then
90 start_gateway $SIM_GROUP/$NRT_GATEWAY_COMPOSE_DIR/$NRT_GATEWAY_CONFIG_FILE
93 start_policy_agent PROXY $SIM_GROUP/$POLICY_AGENT_COMPOSE_DIR/$POLICY_AGENT_CONFIG_FILE
95 if [ $RUNMODE == "DOCKER" ]; then
99 prepare_consul_config NOSDNC ".consul_config.json"
101 if [ $RUNMODE == "KUBE" ]; then
102 agent_load_config ".consul_config.json"
104 consul_config_app ".consul_config.json"
111 start_ecs PROXY $SIM_GROUP/$ECS_COMPOSE_DIR/$ECS_CONFIG_FILE
119 # Print the A1 version for STD 2.X
120 for ((i=1; i<=$STD_NUM_RICS; i++))
122 sim_print $RIC_SIM_PREFIX"_g3_"$i interface
124 # Load the polictypes in std
125 for ((i=1; i<=$STD_NUM_RICS; i++))
127 sim_put_policy_type 201 $RIC_SIM_PREFIX"_g3_"$i STD_QOS_0_2_0 demo-testdata/STD2/sim_qos.json
128 sim_put_policy_type 201 $RIC_SIM_PREFIX"_g3_"$i STD_QOS2_0.1.0 demo-testdata/STD2/sim_qos2.json
131 #Check the number of schemas and the individual schemas in STD
132 api_equal json:policy-types 2 120
134 for ((i=1; i<=$STD_NUM_RICS; i++))
136 api_equal json:policy-types?ric_id=$RIC_SIM_PREFIX"_g3_"$i 2 120
139 # Check the schemas in STD
140 for ((i=1; i<=$STD_NUM_RICS; i++))
142 api_get_policy_type 200 STD_QOS_0_2_0 demo-testdata/STD2/qos-agent-modified.json
143 api_get_policy_type 200 'STD_QOS2_0.1.0' demo-testdata/STD2/qos2-agent-modified.json
146 #Check the number of types
147 api_equal json:policy-types 2 300
149 api_put_service 201 "Emergency-response-app" 0 "$CR_SERVICE_PATH/1"
151 # Create policies in STD
152 for ((i=1; i<=$STD_NUM_RICS; i++))
155 api_put_policy 201 "Emergency-response-app" $RIC_SIM_PREFIX"_g3_"$i STD_QOS_0_2_0 $((2300+$i)) NOTRANSIENT $notificationurl demo-testdata/STD2/pi1_template.json 1
157 api_put_policy 201 "Emergency-response-app" $RIC_SIM_PREFIX"_g3_"$i 'STD_QOS2_0.1.0' $((2400+$i)) NOTRANSIENT $notificationurl demo-testdata/STD2/pi1_template.json 1
161 # Check the number of policies in STD
162 for ((i=1; i<=$STD_NUM_RICS; i++))
164 sim_equal $RIC_SIM_PREFIX"_g3_"$i num_instances 2
167 # Print calling hosts STD 2.X
168 for ((i=1; i<=$STD_NUM_RICS; i++))
170 sim_print $RIC_SIM_PREFIX"_g3_"$i remote_hosts
171 sim_contains_str $RIC_SIM_PREFIX"_g3_"$i remote_hosts proxy
176 CB_JOB="$PROD_STUB_SERVICE_PATH$PROD_STUB_JOB_CALLBACK"
177 CB_SV="$PROD_STUB_SERVICE_PATH$PROD_STUB_SUPERVISION_CALLBACK"
178 RIC_G1_1=$RIC_SIM_PREFIX"_g3_1"
179 RIC_G1_2=$RIC_SIM_PREFIX"_g3_2"
180 if [ $RUNMODE == "KUBE" ]; then
181 RIC_G1_1=$(get_kube_sim_host $RIC_G1_1)
182 RIC_G1_2=$(get_kube_sim_host $RIC_G1_2)
184 TARGET1="$RIC_SIM_HTTPX://$RIC_G1_1:$RIC_SIM_PORT/datadelivery"
185 TARGET2="$RIC_SIM_HTTPX://$RIC_G1_1:$RIC_SIM_PORT/datadelivery"
187 STATUS1="$CR_SERVICE_PATH/job1-status"
188 STATUS2="$CR_SERVICE_PATH/job2-status"
190 prodstub_arm_producer 200 prod-a
191 prodstub_arm_type 200 prod-a type1
192 prodstub_arm_job_create 200 prod-a job1
193 prodstub_arm_job_create 200 prod-a job2
196 ecs_api_service_status 200
199 if [ $ECS_VERSION == "V1-1" ]; then
200 ecs_api_edp_put_producer 201 prod-a $CB_JOB/prod-a $CB_SV/prod-a type1 testdata/ecs/ei-type-1.json
202 ecs_api_edp_get_producer 200 prod-a $CB_JOB/prod-a $CB_SV/prod-a type1 testdata/ecs/ei-type-1.json
204 ecs_api_edp_put_type_2 201 type1 testdata/ecs/ei-type-1.json
206 ecs_api_edp_put_producer_2 201 prod-a $CB_JOB/prod-a $CB_SV/prod-a type1
208 ecs_api_edp_get_producer_2 200 prod-a $CB_JOB/prod-a $CB_SV/prod-a type1
211 ecs_api_edp_get_producer_status 200 prod-a ENABLED
214 ## Create a job for prod-a
216 if [ -z "$FLAT_A1_EI" ]; then
217 ecs_api_a1_put_job 201 type1 job1 $TARGET1 ricsim_g3_1 testdata/ecs/job-template.json
219 ecs_api_a1_put_job 201 job1 type1 $TARGET1 ricsim_g3_1 $STATUS1 testdata/ecs/job-template.json
222 # Check the job data in the producer
223 if [ $ECS_VERSION == "V1-1" ]; then
224 prodstub_check_jobdata 200 prod-a job1 type1 $TARGET1 ricsim_g3_1 testdata/ecs/job-template.json
226 prodstub_check_jobdata_2 200 prod-a job1 type1 $TARGET1 ricsim_g3_1 testdata/ecs/job-template.json
230 ## Create a second job for prod-a
232 if [ -z "$FLAT_A1_EI" ]; then
233 ecs_api_a1_put_job 201 type1 job2 $TARGET2 ricsim_g3_2 testdata/ecs/job-template.json
235 ecs_api_a1_put_job 201 job2 type1 $TARGET2 ricsim_g3_2 $STATUS2 testdata/ecs/job-template.json
238 # Check the job data in the producer
239 if [ $ECS_VERSION == "V1-1" ]; then
240 prodstub_check_jobdata 200 prod-a job2 type1 $TARGET2 ricsim_g3_2 testdata/ecs/job-template.json
242 prodstub_check_jobdata_2 200 prod-a job2 type1 $TARGET2 ricsim_g3_2 testdata/ecs/job-template.json
245 # Arm producer prod-a for supervision failure
246 prodstub_arm_producer 200 prod-a 400
248 # Wait for producer prod-a to go disabled
249 ecs_api_edp_get_producer_status 200 prod-a DISABLED 360
251 ecs_equal json:ei-producer/v1/eiproducers 0 1000
253 echo -e $YELLOW"Verify that ECS has send status notification to the callback recevier"$EYELLOW
254 echo -e $YELLOW"and check the source of the call in the log to be from the httpproxy"$EYELLOW
255 echo -e $YELLOW"Check for 'Calling host'"$EYELLOW
256 echo -e $YELLOW"cmd: docker logs <callback-receiver-container-name>"$EYELLOW
258 check_policy_agent_logs
261 #### TEST COMPLETE ####
267 auto_clean_environment