blob: 6c9c27b3ed8e1fd2db68e0269523b9957caeefb2 [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
BjornMagnussonXAd2aeca82022-03-07 11:04:55 +010020TC_ONELINE_DESCR="Testing southbound proxy for A1PMS and ICS"
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +010021
22#App names to include in the test when running docker, space separated list
BjornMagnussonXAd2aeca82022-03-07 11:04:55 +010023DOCKER_INCLUDED_IMAGES="CBS CONSUL CP CR MR A1PMS RICSIM ICS PRODSTUB HTTPPROXY NGW KUBEPROXY"
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +010024
25#App names to include in the test when running kubernetes, space separated list
BjornMagnussonXAd2aeca82022-03-07 11:04:55 +010026KUBE_INCLUDED_IMAGES=" MR CR A1PMS PRODSTUB RICSIM CP ICS HTTPPROXY KUBEPROXY NGW"
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +010027#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
BjornMagnussonXA8fbb2262022-01-24 15:20:15 +010033CONDITIONALLY_IGNORED_IMAGES="CBS CONSUL NGW"
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +010034
35#Supported test environment profiles
BjornMagnussonXAe60d04e2021-12-27 13:38:01 +010036SUPPORTED_PROFILES="ONAP-HONOLULU ONAP-ISTANBUL ONAP-JAKARTA ORAN-CHERRY ORAN-D-RELEASE ORAN-E-RELEASE ORAN-F-RELEASE"
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +010037#Supported run modes
38SUPPORTED_RUNMODES="DOCKER KUBE"
39
40. ../common/testcase_common.sh $@
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +010041
42setup_testenvironment
43
44#### TEST BEGIN ####
45
46#Local vars in test script
47##########################
48
49use_cr_https
BjornMagnussonXAd2aeca82022-03-07 11:04:55 +010050use_a1pms_rest_https
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +010051use_simulator_https
BjornMagnussonXA007b6452021-11-29 08:03:38 +010052use_ics_rest_https
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +010053use_prod_stub_https
54
BjornMagnussonXAd2aeca82022-03-07 11:04:55 +010055if [ "$A1PMS_VERSION" == "V2" ]; then
BjornMagnussonXA79e37002021-11-22 13:36:04 +010056 notificationurl=$CR_SERVICE_APP_PATH_0"/test"
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +010057else
BjornMagnussonXAd2aeca82022-03-07 11:04:55 +010058 echo "A1PMS VERSION 2 (V2) is required"
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +010059 exit 1
60fi
61
62clean_environment
63
BjornMagnussonXA663566c2021-11-08 10:25:07 +010064start_kube_proxy
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +010065
66STD_NUM_RICS=2
67
68start_http_proxy
69
70start_ric_simulators $RIC_SIM_PREFIX"_g3" $STD_NUM_RICS STD_2.0.0
71
BjornMagnussonXAd2aeca82022-03-07 11:04:55 +010072start_mr #Just to prevent errors in the a1pms log...
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +010073
74start_control_panel $SIM_GROUP/$CONTROL_PANEL_COMPOSE_DIR/$CONTROL_PANEL_CONFIG_FILE
75
76if [ ! -z "$NRT_GATEWAY_APP_NAME" ]; then
77 start_gateway $SIM_GROUP/$NRT_GATEWAY_COMPOSE_DIR/$NRT_GATEWAY_CONFIG_FILE
78fi
79
BjornMagnussonXAd2aeca82022-03-07 11:04:55 +010080start_a1pms PROXY $SIM_GROUP/$A1PMS_COMPOSE_DIR/$A1PMS_CONFIG_FILE
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +010081
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +010082prepare_consul_config NOSDNC ".consul_config.json"
83
84if [ $RUNMODE == "KUBE" ]; then
BjornMagnussonXAd2aeca82022-03-07 11:04:55 +010085 a1pms_load_config ".consul_config.json"
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +010086else
BjornMagnussonXAd2aeca82022-03-07 11:04:55 +010087 if [[ "$A1PMS_FEATURE_LEVEL" == *"NOCONSUL"* ]]; then
88 a1pms_api_put_configuration 200 ".consul_config.json"
BjornMagnussonXA8fbb2262022-01-24 15:20:15 +010089 else
90 start_consul_cbs
91 consul_config_app ".consul_config.json"
92 fi
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +010093fi
94
BjornMagnussonXA79e37002021-11-22 13:36:04 +010095start_cr 1
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +010096
97start_prod_stub
98
BjornMagnussonXA007b6452021-11-29 08:03:38 +010099start_ics PROXY $SIM_GROUP/$ICS_COMPOSE_DIR/$ICS_CONFIG_FILE
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +0100100
BjornMagnussonXAd2aeca82022-03-07 11:04:55 +0100101set_a1pms_trace
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +0100102
BjornMagnussonXA007b6452021-11-29 08:03:38 +0100103set_ics_debug
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +0100104
BjornMagnussonXAd2aeca82022-03-07 11:04:55 +0100105a1pms_api_get_status 200
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +0100106
107# Print the A1 version for STD 2.X
108for ((i=1; i<=$STD_NUM_RICS; i++))
109do
110 sim_print $RIC_SIM_PREFIX"_g3_"$i interface
111done
112# Load the polictypes in std
113for ((i=1; i<=$STD_NUM_RICS; i++))
114do
115 sim_put_policy_type 201 $RIC_SIM_PREFIX"_g3_"$i STD_QOS_0_2_0 demo-testdata/STD2/sim_qos.json
116 sim_put_policy_type 201 $RIC_SIM_PREFIX"_g3_"$i STD_QOS2_0.1.0 demo-testdata/STD2/sim_qos2.json
117done
118
119#Check the number of schemas and the individual schemas in STD
BjornMagnussonXAd2aeca82022-03-07 11:04:55 +0100120a1pms_equal json:policy-types 2 120
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +0100121
122for ((i=1; i<=$STD_NUM_RICS; i++))
123do
BjornMagnussonXAd2aeca82022-03-07 11:04:55 +0100124 a1pms_equal json:policy-types?ric_id=$RIC_SIM_PREFIX"_g3_"$i 2 120
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +0100125done
126
127# Check the schemas in STD
128for ((i=1; i<=$STD_NUM_RICS; i++))
129do
BjornMagnussonXAd2aeca82022-03-07 11:04:55 +0100130 a1pms_api_get_policy_type 200 STD_QOS_0_2_0 demo-testdata/STD2/qos-a1pms-modified.json
131 a1pms_api_get_policy_type 200 'STD_QOS2_0.1.0' demo-testdata/STD2/qos2-a1pms-modified.json
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +0100132done
133
134#Check the number of types
BjornMagnussonXAd2aeca82022-03-07 11:04:55 +0100135a1pms_equal json:policy-types 2 300
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +0100136
BjornMagnussonXAd2aeca82022-03-07 11:04:55 +0100137a1pms_api_put_service 201 "Emergency-response-app" 0 "$CR_SERVICE_APP_PATH_0/1"
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +0100138
139# Create policies in STD
140for ((i=1; i<=$STD_NUM_RICS; i++))
141do
142 generate_policy_uuid
BjornMagnussonXAd2aeca82022-03-07 11:04:55 +0100143 a1pms_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 +0100144 generate_policy_uuid
BjornMagnussonXAd2aeca82022-03-07 11:04:55 +0100145 a1pms_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
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +0100146done
147
148
149# Check the number of policies in STD
150for ((i=1; i<=$STD_NUM_RICS; i++))
151do
152 sim_equal $RIC_SIM_PREFIX"_g3_"$i num_instances 2
153done
154
155# Print calling hosts STD 2.X
156for ((i=1; i<=$STD_NUM_RICS; i++))
157do
158 sim_print $RIC_SIM_PREFIX"_g3_"$i remote_hosts
159 sim_contains_str $RIC_SIM_PREFIX"_g3_"$i remote_hosts proxy
160done
161
162FLAT_A1_EI="1"
163
164CB_JOB="$PROD_STUB_SERVICE_PATH$PROD_STUB_JOB_CALLBACK"
165CB_SV="$PROD_STUB_SERVICE_PATH$PROD_STUB_SUPERVISION_CALLBACK"
166RIC_G1_1=$RIC_SIM_PREFIX"_g3_1"
167RIC_G1_2=$RIC_SIM_PREFIX"_g3_2"
168if [ $RUNMODE == "KUBE" ]; then
169 RIC_G1_1=$(get_kube_sim_host $RIC_G1_1)
170 RIC_G1_2=$(get_kube_sim_host $RIC_G1_2)
171fi
172TARGET1="$RIC_SIM_HTTPX://$RIC_G1_1:$RIC_SIM_PORT/datadelivery"
173TARGET2="$RIC_SIM_HTTPX://$RIC_G1_1:$RIC_SIM_PORT/datadelivery"
174
BjornMagnussonXA79e37002021-11-22 13:36:04 +0100175STATUS1="$CR_SERVICE_APP_PATH_0/job1-status"
176STATUS2="$CR_SERVICE_APP_PATH_0/job2-status"
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +0100177
178prodstub_arm_producer 200 prod-a
179prodstub_arm_type 200 prod-a type1
180prodstub_arm_job_create 200 prod-a job1
181prodstub_arm_job_create 200 prod-a job2
182
BjornMagnussonXA007b6452021-11-29 08:03:38 +0100183### ics status
184ics_api_service_status 200
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +0100185
BjornMagnussonXA007b6452021-11-29 08:03:38 +0100186if [[ "$ICS_FEATURE_LEVEL" == *"TYPE-SUBSCRIPTIONS"* ]]; then
BjornMagnussonXA3cc0b582021-08-30 10:46:41 +0200187 #Type registration status callbacks
BjornMagnussonXA79e37002021-11-22 13:36:04 +0100188 TYPESTATUS1="$CR_SERVICE_APP_PATH_0/type-status1"
BjornMagnussonXA3cc0b582021-08-30 10:46:41 +0200189
BjornMagnussonXA007b6452021-11-29 08:03:38 +0100190 ics_api_idc_put_subscription 201 subscription-id-1 owner1 $TYPESTATUS1
BjornMagnussonXA3cc0b582021-08-30 10:46:41 +0200191
BjornMagnussonXA007b6452021-11-29 08:03:38 +0100192 ics_api_idc_get_subscription_ids 200 owner1 subscription-id-1
BjornMagnussonXA3cc0b582021-08-30 10:46:41 +0200193fi
194
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +0100195## Setup prod-a
BjornMagnussonXA007b6452021-11-29 08:03:38 +0100196if [ $ICS_VERSION == "V1-1" ]; then
197 ics_api_edp_put_producer 201 prod-a $CB_JOB/prod-a $CB_SV/prod-a type1 testdata/ics/ei-type-1.json
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +0100198
BjornMagnussonXA007b6452021-11-29 08:03:38 +0100199 ics_api_edp_get_producer 200 prod-a $CB_JOB/prod-a $CB_SV/prod-a type1 testdata/ics/ei-type-1.json
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +0100200else
BjornMagnussonXA007b6452021-11-29 08:03:38 +0100201 ics_api_edp_put_type_2 201 type1 testdata/ics/ei-type-1.json
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +0100202
BjornMagnussonXA007b6452021-11-29 08:03:38 +0100203 ics_api_edp_put_producer_2 201 prod-a $CB_JOB/prod-a $CB_SV/prod-a type1
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +0100204
BjornMagnussonXA007b6452021-11-29 08:03:38 +0100205 ics_api_edp_get_producer_2 200 prod-a $CB_JOB/prod-a $CB_SV/prod-a type1
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +0100206fi
207
BjornMagnussonXA007b6452021-11-29 08:03:38 +0100208ics_api_edp_get_producer_status 200 prod-a ENABLED
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +0100209
210
211## Create a job for prod-a
212## job1 - prod-a
213if [ -z "$FLAT_A1_EI" ]; then
BjornMagnussonXA007b6452021-11-29 08:03:38 +0100214 ics_api_a1_put_job 201 type1 job1 $TARGET1 ricsim_g3_1 testdata/ics/job-template.json
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +0100215else
BjornMagnussonXA007b6452021-11-29 08:03:38 +0100216 ics_api_a1_put_job 201 job1 type1 $TARGET1 ricsim_g3_1 $STATUS1 testdata/ics/job-template.json
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +0100217fi
218
219# Check the job data in the producer
BjornMagnussonXA007b6452021-11-29 08:03:38 +0100220if [ $ICS_VERSION == "V1-1" ]; then
221 prodstub_check_jobdata 200 prod-a job1 type1 $TARGET1 ricsim_g3_1 testdata/ics/job-template.json
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +0100222else
BjornMagnussonXA007b6452021-11-29 08:03:38 +0100223 if [[ "$ICS_FEATURE_LEVEL" != *"INFO-TYPES"* ]]; then
224 prodstub_check_jobdata_2 200 prod-a job1 type1 $TARGET1 ricsim_g3_1 testdata/ics/job-template.json
BjornMagnussonXAce4b14c2021-05-11 15:40:03 +0200225 else
BjornMagnussonXA007b6452021-11-29 08:03:38 +0100226 prodstub_check_jobdata_3 200 prod-a job1 type1 $TARGET1 ricsim_g3_1 testdata/ics/job-template.json
BjornMagnussonXAce4b14c2021-05-11 15:40:03 +0200227 fi
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +0100228fi
229
230
231## Create a second job for prod-a
232## job2 - prod-a
233if [ -z "$FLAT_A1_EI" ]; then
BjornMagnussonXA007b6452021-11-29 08:03:38 +0100234 ics_api_a1_put_job 201 type1 job2 $TARGET2 ricsim_g3_2 testdata/ics/job-template.json
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +0100235else
BjornMagnussonXA007b6452021-11-29 08:03:38 +0100236 ics_api_a1_put_job 201 job2 type1 $TARGET2 ricsim_g3_2 $STATUS2 testdata/ics/job-template.json
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +0100237fi
238
239# Check the job data in the producer
BjornMagnussonXA007b6452021-11-29 08:03:38 +0100240if [ $ICS_VERSION == "V1-1" ]; then
241 prodstub_check_jobdata 200 prod-a job2 type1 $TARGET2 ricsim_g3_2 testdata/ics/job-template.json
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +0100242else
BjornMagnussonXA007b6452021-11-29 08:03:38 +0100243 if [[ "$ICS_FEATURE_LEVEL" != *"INFO-TYPES"* ]]; then
244 prodstub_check_jobdata_2 200 prod-a job2 type1 $TARGET2 ricsim_g3_2 testdata/ics/job-template.json
BjornMagnussonXAce4b14c2021-05-11 15:40:03 +0200245 else
BjornMagnussonXA007b6452021-11-29 08:03:38 +0100246 prodstub_check_jobdata_3 200 prod-a job2 type1 $TARGET2 ricsim_g3_2 testdata/ics/job-template.json
BjornMagnussonXAce4b14c2021-05-11 15:40:03 +0200247 fi
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +0100248fi
249
250# Arm producer prod-a for supervision failure
251prodstub_arm_producer 200 prod-a 400
252
253# Wait for producer prod-a to go disabled
BjornMagnussonXA007b6452021-11-29 08:03:38 +0100254ics_api_edp_get_producer_status 200 prod-a DISABLED 360
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +0100255
BjornMagnussonXA007b6452021-11-29 08:03:38 +0100256if [[ "$ICS_FEATURE_LEVEL" == *"INFO-TYPES"* ]]; then
257 ics_equal json:data-producer/v1/info-producers 0 1000
BjornMagnussonXAce4b14c2021-05-11 15:40:03 +0200258else
BjornMagnussonXA007b6452021-11-29 08:03:38 +0100259 ics_equal json:ei-producer/v1/eiproducers 0 1000
BjornMagnussonXAce4b14c2021-05-11 15:40:03 +0200260fi
261
BjornMagnussonXA007b6452021-11-29 08:03:38 +0100262if [[ "$ICS_FEATURE_LEVEL" == *"TYPE-SUBSCRIPTIONS"* ]]; then
BjornMagnussonXA79e37002021-11-22 13:36:04 +0100263 cr_equal 0 received_callbacks 3 30
BjornMagnussonXA007b6452021-11-29 08:03:38 +0100264 cr_api_check_all_ics_subscription_events 200 0 type-status1 type1 testdata/ics/ei-type-1.json REGISTERED
265 cr_api_check_all_ics_events 200 0 job1-status DISABLED
266 cr_api_check_all_ics_events 200 0 job2-status DISABLED
BjornMagnussonXA3cc0b582021-08-30 10:46:41 +0200267else
BjornMagnussonXA79e37002021-11-22 13:36:04 +0100268 cr_equal 0 received_callbacks 2 30
BjornMagnussonXA007b6452021-11-29 08:03:38 +0100269 cr_api_check_all_ics_events 200 0 job1-status DISABLED
270 cr_api_check_all_ics_events 200 0 job2-status DISABLED
BjornMagnussonXA3cc0b582021-08-30 10:46:41 +0200271fi
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +0100272
BjornMagnussonXA79e37002021-11-22 13:36:04 +0100273cr_contains_str 0 remote_hosts $HTTP_PROXY_APP_NAME
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +0100274
BjornMagnussonXAd2aeca82022-03-07 11:04:55 +0100275check_a1pms_logs
BjornMagnussonXA007b6452021-11-29 08:03:38 +0100276check_ics_logs
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +0100277
278#### TEST COMPLETE ####
279
280store_logs END
281
282print_result
283
284auto_clean_environment