blob: 6f866fbed5f86e20cd8de7f2ea4b6b0cd6894978 [file] [log] [blame]
BjornMagnussonXA7b36db62020-11-23 10:57:57 +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="Preparation demo setup - policy management and enrichment information"
21
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +010022#App names to include in the test when running docker, space separated list
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +010023DOCKER_INCLUDED_IMAGES="CBS CONSUL CP CR MR PA RICSIM SDNC ECS PRODSTUB RC HTTPPROXY NGW"
BjornMagnussonXA7b36db62020-11-23 10:57:57 +010024
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +010025#App names to include in the test when running kubernetes, space separated list
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +010026KUBE_INCLUDED_IMAGES=" MR CR PA RC PRODSTUB RICSIM CP ECS SDNC HTTPPROXY KUBEPROXY NGW"
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +010027#Prestarted app (not started by script) to include in the test when running kubernetes, space separated list
28KUBE_PRESTARTED_IMAGES=""
29
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +010030#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
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +010035#Supported test environment profiles
BjornMagnussonXA674793d2021-05-06 19:49:17 +020036SUPPORTED_PROFILES="ONAP-HONOLULU ONAP-ISTANBUL ORAN-CHERRY ORAN-D-RELEASE"
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +010037#Supported run modes
38SUPPORTED_RUNMODES="DOCKER KUBE"
BjornMagnussonXA7b36db62020-11-23 10:57:57 +010039
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
BjornMagnussonXAde4d0f82020-11-29 16:04:06 +010046. ../common/rapp_catalogue_api_functions.sh
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +010047. ../common/mr_api_functions.sh
48. ../common/control_panel_api_functions.sh
49. ../common/controller_api_functions.sh
50. ../common/consul_cbs_functions.sh
51. ../common/http_proxy_api_functions.sh
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +010052. ../common/kube_proxy_api_functions.sh
53. ../common/gateway_api_functions.sh
54
55setup_testenvironment
BjornMagnussonXA7b36db62020-11-23 10:57:57 +010056
57#### TEST BEGIN ####
58
59#Local vars in test script
60##########################
61
62use_cr_https
63use_agent_rest_https
64use_sdnc_https
65use_simulator_https
66use_ecs_rest_https
67use_prod_stub_https
BjornMagnussonXAc963b732021-01-20 14:24:13 +010068if [ $ECS_VERSION == "V1-1" ]; then
69 use_rapp_catalogue_http # https not yet supported
70else
71 use_rapp_catalogue_https
72fi
73
BjornMagnussonXA7b36db62020-11-23 10:57:57 +010074
75if [ "$PMS_VERSION" == "V2" ]; then
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +010076 notificationurl=$CR_SERVICE_PATH"/test"
BjornMagnussonXA7b36db62020-11-23 10:57:57 +010077else
78 echo "PMS VERSION 2 (V2) is required"
79 exit 1
80fi
81
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +010082clean_environment
BjornMagnussonXA7b36db62020-11-23 10:57:57 +010083
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +010084if [ $RUNMODE == "KUBE" ]; then
85 start_kube_proxy
86fi
87
BjornMagnussonXA7b36db62020-11-23 10:57:57 +010088STD_NUM_RICS=2
89
BjornMagnussonXAc963b732021-01-20 14:24:13 +010090#start_http_proxy #Remove the comment on this line, comment out 'start_sdnc' and change SDNC to NOSDNC a few lines below to run with proxy
91
BjornMagnussonXA7b36db62020-11-23 10:57:57 +010092start_ric_simulators $RIC_SIM_PREFIX"_g3" $STD_NUM_RICS STD_2.0.0
93
94start_mr #Just to prevent errors in the agent log...
95
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +010096start_control_panel $SIM_GROUP/$CONTROL_PANEL_COMPOSE_DIR/$CONTROL_PANEL_CONFIG_FILE
97
98if [ ! -z "$NRT_GATEWAY_APP_NAME" ]; then
99 start_gateway $SIM_GROUP/$NRT_GATEWAY_COMPOSE_DIR/$NRT_GATEWAY_CONFIG_FILE
100fi
BjornMagnussonXA7b36db62020-11-23 10:57:57 +0100101
BjornMagnussonXAc963b732021-01-20 14:24:13 +0100102start_sdnc # Comment this line to run PMS with proxy
BjornMagnussonXA7b36db62020-11-23 10:57:57 +0100103
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +0100104start_policy_agent PROXY $SIM_GROUP/$POLICY_AGENT_COMPOSE_DIR/$POLICY_AGENT_CONFIG_FILE
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +0100105
106if [ $RUNMODE == "DOCKER" ]; then
107 start_consul_cbs
108fi
BjornMagnussonXA7b36db62020-11-23 10:57:57 +0100109
BjornMagnussonXAc963b732021-01-20 14:24:13 +0100110prepare_consul_config SDNC ".consul_config.json" #Change to NOSDNC if running PMS with proxy
BjornMagnussonXA7b36db62020-11-23 10:57:57 +0100111
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +0100112if [ $RUNMODE == "KUBE" ]; then
113 agent_load_config ".consul_config.json"
114else
115 consul_config_app ".consul_config.json"
116fi
BjornMagnussonXA7b36db62020-11-23 10:57:57 +0100117
118start_cr
119
120start_prod_stub
121
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +0100122start_ecs PROXY $SIM_GROUP/$ECS_COMPOSE_DIR/$ECS_CONFIG_FILE
BjornMagnussonXA7b36db62020-11-23 10:57:57 +0100123
BjornMagnussonXAde4d0f82020-11-29 16:04:06 +0100124start_rapp_catalogue
125
BjornMagnussonXA7b36db62020-11-23 10:57:57 +0100126set_agent_trace
127
128set_ecs_trace
129
BjornMagnussonXAde4d0f82020-11-29 16:04:06 +0100130rapp_cat_api_get_services 200 EMPTY
131
132rapp_cat_api_put_service 201 "Emergency-response-app" v1 "Emergency-response-app" "Emergency-response-app"
133
134rapp_cat_api_get_services 200 "Emergency-response-app" v1 "Emergency-response-app" "Emergency-response-app"
135
BjornMagnussonXA7b36db62020-11-23 10:57:57 +0100136api_get_status 200
137
138# Print the A1 version for STD 2.X
139for ((i=1; i<=$STD_NUM_RICS; i++))
140do
141 sim_print $RIC_SIM_PREFIX"_g3_"$i interface
142done
143# Load the polictypes in std
144for ((i=1; i<=$STD_NUM_RICS; i++))
145do
146 sim_put_policy_type 201 $RIC_SIM_PREFIX"_g3_"$i STD_QOS_0_2_0 demo-testdata/STD2/sim_qos.json
147 sim_put_policy_type 201 $RIC_SIM_PREFIX"_g3_"$i STD_QOS2_0.1.0 demo-testdata/STD2/sim_qos2.json
148done
149
150#Check the number of schemas and the individual schemas in STD
151api_equal json:policy-types 2 120
152
153for ((i=1; i<=$STD_NUM_RICS; i++))
154do
155 api_equal json:policy-types?ric_id=$RIC_SIM_PREFIX"_g3_"$i 2 120
156done
157
158# Check the schemas in STD
159for ((i=1; i<=$STD_NUM_RICS; i++))
160do
161 api_get_policy_type 200 STD_QOS_0_2_0 demo-testdata/STD2/qos-agent-modified.json
162 api_get_policy_type 200 'STD_QOS2_0.1.0' demo-testdata/STD2/qos2-agent-modified.json
163done
164
165#Check the number of types
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +0100166api_equal json:policy-types 2 300
BjornMagnussonXA7b36db62020-11-23 10:57:57 +0100167
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +0100168api_put_service 201 "Emergency-response-app" 0 "$CR_SERVICE_PATH/1"
BjornMagnussonXA7b36db62020-11-23 10:57:57 +0100169
170# Create policies in STD
171for ((i=1; i<=$STD_NUM_RICS; i++))
172do
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +0100173 generate_policy_uuid
BjornMagnussonXA7b36db62020-11-23 10:57:57 +0100174 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
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +0100175 generate_policy_uuid
BjornMagnussonXA7b36db62020-11-23 10:57:57 +0100176 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
177done
178
179
180# Check the number of policies in STD
181for ((i=1; i<=$STD_NUM_RICS; i++))
182do
183 sim_equal $RIC_SIM_PREFIX"_g3_"$i num_instances 2
184done
185
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +0100186# Print calling hosts STD 2.X
187for ((i=1; i<=$STD_NUM_RICS; i++))
188do
189 sim_print $RIC_SIM_PREFIX"_g3_"$i remote_hosts
190done
BjornMagnussonXA7b36db62020-11-23 10:57:57 +0100191
192FLAT_A1_EI="1"
193
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +0100194CB_JOB="$PROD_STUB_SERVICE_PATH$PROD_STUB_JOB_CALLBACK"
195CB_SV="$PROD_STUB_SERVICE_PATH$PROD_STUB_SUPERVISION_CALLBACK"
196RIC_G1_1=$RIC_SIM_PREFIX"_g3_1"
197RIC_G1_2=$RIC_SIM_PREFIX"_g3_2"
198if [ $RUNMODE == "KUBE" ]; then
199 RIC_G1_1=$(get_kube_sim_host $RIC_G1_1)
200 RIC_G1_2=$(get_kube_sim_host $RIC_G1_2)
201fi
202TARGET1="$RIC_SIM_HTTPX://$RIC_G1_1:$RIC_SIM_PORT/datadelivery"
203TARGET2="$RIC_SIM_HTTPX://$RIC_G1_1:$RIC_SIM_PORT/datadelivery"
BjornMagnussonXA7b36db62020-11-23 10:57:57 +0100204
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +0100205STATUS1="$CR_SERVICE_PATH/callbacks/job1-status"
206STATUS2="$CR_SERVICE_PATH/callbacks/job2-status"
BjornMagnussonXA7b36db62020-11-23 10:57:57 +0100207
208prodstub_arm_producer 200 prod-a
209prodstub_arm_type 200 prod-a type1
210prodstub_arm_job_create 200 prod-a job1
211prodstub_arm_job_create 200 prod-a job2
212
BjornMagnussonXA7b36db62020-11-23 10:57:57 +0100213### ecs status
214ecs_api_service_status 200
215
BjornMagnussonXA7b36db62020-11-23 10:57:57 +0100216## Setup prod-a
BjornMagnussonXA27db02f2021-01-19 08:13:00 +0100217if [ $ECS_VERSION == "V1-1" ]; then
218 ecs_api_edp_put_producer 201 prod-a $CB_JOB/prod-a $CB_SV/prod-a type1 testdata/ecs/ei-type-1.json
BjornMagnussonXA7b36db62020-11-23 10:57:57 +0100219
BjornMagnussonXA27db02f2021-01-19 08:13:00 +0100220 ecs_api_edp_get_producer 200 prod-a $CB_JOB/prod-a $CB_SV/prod-a type1 testdata/ecs/ei-type-1.json
221else
222 ecs_api_edp_put_type_2 201 type1 testdata/ecs/ei-type-1.json
223
224 ecs_api_edp_put_producer_2 201 prod-a $CB_JOB/prod-a $CB_SV/prod-a type1
225
226 ecs_api_edp_get_producer_2 200 prod-a $CB_JOB/prod-a $CB_SV/prod-a type1
227fi
BjornMagnussonXA7b36db62020-11-23 10:57:57 +0100228
229ecs_api_edp_get_producer_status 200 prod-a ENABLED
230
231
232## Create a job for prod-a
233## job1 - prod-a
234if [ -z "$FLAT_A1_EI" ]; then
235 ecs_api_a1_put_job 201 type1 job1 $TARGET1 ricsim_g3_1 testdata/ecs/job-template.json
236else
237 ecs_api_a1_put_job 201 job1 type1 $TARGET1 ricsim_g3_1 $STATUS1 testdata/ecs/job-template.json
238fi
239
240# Check the job data in the producer
BjornMagnussonXAc963b732021-01-20 14:24:13 +0100241if [ $ECS_VERSION == "V1-1" ]; then
242 prodstub_check_jobdata 200 prod-a job1 type1 $TARGET1 ricsim_g3_1 testdata/ecs/job-template.json
243else
244 prodstub_check_jobdata_2 200 prod-a job1 type1 $TARGET1 ricsim_g3_1 testdata/ecs/job-template.json
245fi
BjornMagnussonXA7b36db62020-11-23 10:57:57 +0100246
247
248## Create a second job for prod-a
249## job2 - prod-a
250if [ -z "$FLAT_A1_EI" ]; then
251 ecs_api_a1_put_job 201 type1 job2 $TARGET2 ricsim_g3_2 testdata/ecs/job-template.json
252else
253 ecs_api_a1_put_job 201 job2 type1 $TARGET2 ricsim_g3_2 $STATUS2 testdata/ecs/job-template.json
254fi
255
256# Check the job data in the producer
BjornMagnussonXAc963b732021-01-20 14:24:13 +0100257if [ $ECS_VERSION == "V1-1" ]; then
258 prodstub_check_jobdata 200 prod-a job2 type1 $TARGET2 ricsim_g3_2 testdata/ecs/job-template.json
259else
260 prodstub_check_jobdata_2 200 prod-a job2 type1 $TARGET2 ricsim_g3_2 testdata/ecs/job-template.json
261fi
BjornMagnussonXA7b36db62020-11-23 10:57:57 +0100262
BjornMagnussonXA7b36db62020-11-23 10:57:57 +0100263check_policy_agent_logs
264check_ecs_logs
265check_sdnc_logs
266
267#### TEST COMPLETE ####
268
269store_logs END
270
271print_result
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +0100272
273auto_clean_environment