blob: ab48c6ea43264692ada711ddb5f590ff93048dbf [file] [log] [blame]
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +01001#!/usr/bin/env bash
2
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
9#
10# http://www.apache.org/licenses/LICENSE-2.0
11#
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=================================================
18#
19
20TC_ONELINE_DESCR="Testing southbound proxy for PMS and ECS"
21
22#App names to include in the test when running docker, space separated list
23DOCKER_INCLUDED_IMAGES="CBS CONSUL CP CR MR PA RICSIM ECS PRODSTUB HTTPPROXY NGW"
24
25#App names to include in the test when running kubernetes, space separated list
26KUBE_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
28KUBE_PRESTARTED_IMAGES=""
29
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
33CONDITIONALLY_IGNORED_IMAGES="NGW"
34
35#Supported test environment profiles
BjornMagnussonXA674793d2021-05-06 19:49:17 +020036SUPPORTED_PROFILES="ONAP-HONOLULU ONAP-ISTANBUL ORAN-CHERRY ORAN-D-RELEASE"
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +010037#Supported run modes
38SUPPORTED_RUNMODES="DOCKER KUBE"
39
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
52
53setup_testenvironment
54
55#### TEST BEGIN ####
56
57#Local vars in test script
58##########################
59
60use_cr_https
61use_agent_rest_https
62use_simulator_https
63use_ecs_rest_https
64use_prod_stub_https
65
66if [ "$PMS_VERSION" == "V2" ]; then
67 notificationurl=$CR_SERVICE_PATH"/test"
68else
69 echo "PMS VERSION 2 (V2) is required"
70 exit 1
71fi
72
73clean_environment
74
75if [ $RUNMODE == "KUBE" ]; then
76 start_kube_proxy
77fi
78
79STD_NUM_RICS=2
80
81start_http_proxy
82
83start_ric_simulators $RIC_SIM_PREFIX"_g3" $STD_NUM_RICS STD_2.0.0
84
85start_mr #Just to prevent errors in the agent log...
86
87start_control_panel $SIM_GROUP/$CONTROL_PANEL_COMPOSE_DIR/$CONTROL_PANEL_CONFIG_FILE
88
89if [ ! -z "$NRT_GATEWAY_APP_NAME" ]; then
90 start_gateway $SIM_GROUP/$NRT_GATEWAY_COMPOSE_DIR/$NRT_GATEWAY_CONFIG_FILE
91fi
92
93start_policy_agent PROXY $SIM_GROUP/$POLICY_AGENT_COMPOSE_DIR/$POLICY_AGENT_CONFIG_FILE
94
95if [ $RUNMODE == "DOCKER" ]; then
96 start_consul_cbs
97fi
98
99prepare_consul_config NOSDNC ".consul_config.json"
100
101if [ $RUNMODE == "KUBE" ]; then
102 agent_load_config ".consul_config.json"
103else
104 consul_config_app ".consul_config.json"
105fi
106
107start_cr
108
109start_prod_stub
110
111start_ecs PROXY $SIM_GROUP/$ECS_COMPOSE_DIR/$ECS_CONFIG_FILE
112
113set_agent_trace
114
115set_ecs_debug
116
117api_get_status 200
118
119# Print the A1 version for STD 2.X
120for ((i=1; i<=$STD_NUM_RICS; i++))
121do
122 sim_print $RIC_SIM_PREFIX"_g3_"$i interface
123done
124# Load the polictypes in std
125for ((i=1; i<=$STD_NUM_RICS; i++))
126do
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
129done
130
131#Check the number of schemas and the individual schemas in STD
132api_equal json:policy-types 2 120
133
134for ((i=1; i<=$STD_NUM_RICS; i++))
135do
136 api_equal json:policy-types?ric_id=$RIC_SIM_PREFIX"_g3_"$i 2 120
137done
138
139# Check the schemas in STD
140for ((i=1; i<=$STD_NUM_RICS; i++))
141do
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
144done
145
146#Check the number of types
147api_equal json:policy-types 2 300
148
149api_put_service 201 "Emergency-response-app" 0 "$CR_SERVICE_PATH/1"
150
151# Create policies in STD
152for ((i=1; i<=$STD_NUM_RICS; i++))
153do
154 generate_policy_uuid
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
156 generate_policy_uuid
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
158done
159
160
161# Check the number of policies in STD
162for ((i=1; i<=$STD_NUM_RICS; i++))
163do
164 sim_equal $RIC_SIM_PREFIX"_g3_"$i num_instances 2
165done
166
167# Print calling hosts STD 2.X
168for ((i=1; i<=$STD_NUM_RICS; i++))
169do
170 sim_print $RIC_SIM_PREFIX"_g3_"$i remote_hosts
171 sim_contains_str $RIC_SIM_PREFIX"_g3_"$i remote_hosts proxy
172done
173
174FLAT_A1_EI="1"
175
176CB_JOB="$PROD_STUB_SERVICE_PATH$PROD_STUB_JOB_CALLBACK"
177CB_SV="$PROD_STUB_SERVICE_PATH$PROD_STUB_SUPERVISION_CALLBACK"
178RIC_G1_1=$RIC_SIM_PREFIX"_g3_1"
179RIC_G1_2=$RIC_SIM_PREFIX"_g3_2"
180if [ $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)
183fi
184TARGET1="$RIC_SIM_HTTPX://$RIC_G1_1:$RIC_SIM_PORT/datadelivery"
185TARGET2="$RIC_SIM_HTTPX://$RIC_G1_1:$RIC_SIM_PORT/datadelivery"
186
187STATUS1="$CR_SERVICE_PATH/job1-status"
188STATUS2="$CR_SERVICE_PATH/job2-status"
189
190prodstub_arm_producer 200 prod-a
191prodstub_arm_type 200 prod-a type1
192prodstub_arm_job_create 200 prod-a job1
193prodstub_arm_job_create 200 prod-a job2
194
195### ecs status
196ecs_api_service_status 200
197
198## Setup prod-a
199if [ $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
201
202 ecs_api_edp_get_producer 200 prod-a $CB_JOB/prod-a $CB_SV/prod-a type1 testdata/ecs/ei-type-1.json
203else
204 ecs_api_edp_put_type_2 201 type1 testdata/ecs/ei-type-1.json
205
206 ecs_api_edp_put_producer_2 201 prod-a $CB_JOB/prod-a $CB_SV/prod-a type1
207
208 ecs_api_edp_get_producer_2 200 prod-a $CB_JOB/prod-a $CB_SV/prod-a type1
209fi
210
211ecs_api_edp_get_producer_status 200 prod-a ENABLED
212
213
214## Create a job for prod-a
215## job1 - prod-a
216if [ -z "$FLAT_A1_EI" ]; then
217 ecs_api_a1_put_job 201 type1 job1 $TARGET1 ricsim_g3_1 testdata/ecs/job-template.json
218else
219 ecs_api_a1_put_job 201 job1 type1 $TARGET1 ricsim_g3_1 $STATUS1 testdata/ecs/job-template.json
220fi
221
222# Check the job data in the producer
223if [ $ECS_VERSION == "V1-1" ]; then
224 prodstub_check_jobdata 200 prod-a job1 type1 $TARGET1 ricsim_g3_1 testdata/ecs/job-template.json
225else
226 prodstub_check_jobdata_2 200 prod-a job1 type1 $TARGET1 ricsim_g3_1 testdata/ecs/job-template.json
227fi
228
229
230## Create a second job for prod-a
231## job2 - prod-a
232if [ -z "$FLAT_A1_EI" ]; then
233 ecs_api_a1_put_job 201 type1 job2 $TARGET2 ricsim_g3_2 testdata/ecs/job-template.json
234else
235 ecs_api_a1_put_job 201 job2 type1 $TARGET2 ricsim_g3_2 $STATUS2 testdata/ecs/job-template.json
236fi
237
238# Check the job data in the producer
239if [ $ECS_VERSION == "V1-1" ]; then
240 prodstub_check_jobdata 200 prod-a job2 type1 $TARGET2 ricsim_g3_2 testdata/ecs/job-template.json
241else
242 prodstub_check_jobdata_2 200 prod-a job2 type1 $TARGET2 ricsim_g3_2 testdata/ecs/job-template.json
243fi
244
245# Arm producer prod-a for supervision failure
246prodstub_arm_producer 200 prod-a 400
247
248# Wait for producer prod-a to go disabled
249ecs_api_edp_get_producer_status 200 prod-a DISABLED 360
250
251ecs_equal json:ei-producer/v1/eiproducers 0 1000
252
253echo -e $YELLOW"Verify that ECS has send status notification to the callback recevier"$EYELLOW
254echo -e $YELLOW"and check the source of the call in the log to be from the httpproxy"$EYELLOW
255echo -e $YELLOW"Check for 'Calling host'"$EYELLOW
256echo -e $YELLOW"cmd: docker logs <callback-receiver-container-name>"$EYELLOW
257
258check_policy_agent_logs
259check_ecs_logs
260
261#### TEST COMPLETE ####
262
263store_logs END
264
265print_result
266
267auto_clean_environment