blob: 3cd3bd2f9cd53e9461b9ddb71eed9db467747389 [file] [log] [blame]
BjornMagnussonXA70e878f2020-05-11 14:11:30 +02001#!/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
BjornMagnussonXAad047782020-06-08 15:54:11 +020020TC_ONELINE_DESCR="Preparation for test of the Control Panel and the Health Check app - populating a number of ric simulators with types and instances"
BjornMagnussonXA70e878f2020-05-11 14:11:30 +020021
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 NGW"
BjornMagnussonXAbbd2e9d2020-05-27 21:24:06 +020024
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="CP CR MR PA RICSIM 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-GUILIN ONAP-HONOLULU ONAP-ISTANBUL ORAN-CHERRY ORAN-D-RELEASE"
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +010037#Supported run modes
38SUPPORTED_RUNMODES="DOCKER KUBE"
BjornMagnussonXA49f0e5a2020-11-08 22:41:39 +010039
BjornMagnussonXA70e878f2020-05-11 14:11:30 +020040. ../common/testcase_common.sh $@
41. ../common/agent_api_functions.sh
42. ../common/ricsimulator_api_functions.sh
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +010043. ../common/mr_api_functions.sh
44. ../common/control_panel_api_functions.sh
45. ../common/controller_api_functions.sh
BjornMagnussonXAc963b732021-01-20 14:24:13 +010046. ../common/consul_cbs_functions.sh
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +010047. ../common/kube_proxy_api_functions.sh
48. ../common/gateway_api_functions.sh
49
50setup_testenvironment
BjornMagnussonXA70e878f2020-05-11 14:11:30 +020051
52#### TEST BEGIN ####
53
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +010054clean_environment
BjornMagnussonXA70e878f2020-05-11 14:11:30 +020055
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +010056if [ $RUNMODE == "KUBE" ]; then
57 start_kube_proxy
58fi
59
BjornMagnussonXA048aaa12020-06-04 07:48:37 +020060OSC_NUM_RICS=6
61STD_NUM_RICS=5
BjornMagnussonXA70e878f2020-05-11 14:11:30 +020062
BjornMagnussonXAad047782020-06-08 15:54:11 +020063start_ric_simulators $RIC_SIM_PREFIX"_g1" $OSC_NUM_RICS OSC_2.1.0
BjornMagnussonXA70e878f2020-05-11 14:11:30 +020064
BjornMagnussonXAad047782020-06-08 15:54:11 +020065start_ric_simulators $RIC_SIM_PREFIX"_g2" $STD_NUM_RICS STD_1.1.3
BjornMagnussonXA70e878f2020-05-11 14:11:30 +020066
BjornMagnussonXA4207b832020-11-03 09:52:49 +010067if [ "$PMS_VERSION" == "V2" ]; then
68 start_ric_simulators $RIC_SIM_PREFIX"_g3" $STD_NUM_RICS STD_2.0.0
69fi
70
BjornMagnussonXA048aaa12020-06-04 07:48:37 +020071start_mr #Just to prevent errors in the agent log...
72
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +010073start_control_panel $SIM_GROUP/$CONTROL_PANEL_COMPOSE_DIR/$CONTROL_PANEL_CONFIG_FILE
BjornMagnussonXA70e878f2020-05-11 14:11:30 +020074
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +010075if [ ! -z "$NRT_GATEWAY_APP_NAME" ]; then
76 start_gateway $SIM_GROUP/$NRT_GATEWAY_COMPOSE_DIR/$NRT_GATEWAY_CONFIG_FILE
77fi
78
79start_policy_agent NORPOXY $SIM_GROUP/$POLICY_AGENT_COMPOSE_DIR/$POLICY_AGENT_CONFIG_FILE
BjornMagnussonXA70e878f2020-05-11 14:11:30 +020080
BjornMagnussonXA70e878f2020-05-11 14:11:30 +020081use_agent_rest_http
82
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +010083if [ $RUNMODE == "DOCKER" ]; then
84 start_consul_cbs
85fi
86
87prepare_consul_config NOSDNC ".consul_config.json"
88
89if [ $RUNMODE == "KUBE" ]; then
90 agent_load_config ".consul_config.json"
91else
92 consul_config_app ".consul_config.json"
93fi
94
BjornMagnussonXA70e878f2020-05-11 14:11:30 +020095api_get_status 200
96
BjornMagnussonXA048aaa12020-06-04 07:48:37 +020097# Print the A1 version for OSC
98for ((i=1; i<=$OSC_NUM_RICS; i++))
99do
BjornMagnussonXAad047782020-06-08 15:54:11 +0200100 sim_print $RIC_SIM_PREFIX"_g1_"$i interface
BjornMagnussonXA048aaa12020-06-04 07:48:37 +0200101done
BjornMagnussonXA70e878f2020-05-11 14:11:30 +0200102
BjornMagnussonXA70e878f2020-05-11 14:11:30 +0200103
BjornMagnussonXA048aaa12020-06-04 07:48:37 +0200104# Print the A1 version for STD
105for ((i=1; i<=$STD_NUM_RICS; i++))
106do
BjornMagnussonXAad047782020-06-08 15:54:11 +0200107 sim_print $RIC_SIM_PREFIX"_g2_"$i interface
BjornMagnussonXA048aaa12020-06-04 07:48:37 +0200108done
BjornMagnussonXA70e878f2020-05-11 14:11:30 +0200109
BjornMagnussonXA2791e082020-11-12 00:52:08 +0100110if [ "$PMS_VERSION" == "V2" ]; then
111 # Print the A1 version for STD 2.X
112 for ((i=1; i<=$STD_NUM_RICS; i++))
113 do
114 sim_print $RIC_SIM_PREFIX"_g3_"$i interface
115 done
116fi
BjornMagnussonXA70e878f2020-05-11 14:11:30 +0200117
BjornMagnussonXA048aaa12020-06-04 07:48:37 +0200118# Load the polictypes in osc
119for ((i=1; i<=$OSC_NUM_RICS; i++))
120do
BjornMagnussonXAad047782020-06-08 15:54:11 +0200121 sim_put_policy_type 201 $RIC_SIM_PREFIX"_g1_"$i 2 testdata/OSC/sim_hw.json
122 sim_put_policy_type 201 $RIC_SIM_PREFIX"_g1_"$i 100 testdata/OSC/sim_qos.json
123 sim_put_policy_type 201 $RIC_SIM_PREFIX"_g1_"$i 20008 testdata/OSC/sim_tsa.json
BjornMagnussonXA048aaa12020-06-04 07:48:37 +0200124done
125
126
127#Check the number of schemas and the individual schemas in OSC
BjornMagnussonXA4207b832020-11-03 09:52:49 +0100128if [ "$PMS_VERSION" == "V2" ]; then
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +0100129 api_equal json:policy-types 4 300
BjornMagnussonXA048aaa12020-06-04 07:48:37 +0200130
BjornMagnussonXA4207b832020-11-03 09:52:49 +0100131 for ((i=1; i<=$OSC_NUM_RICS; i++))
132 do
133 api_equal json:policy-types?ric_id=$RIC_SIM_PREFIX"_g1_"$i 3 120
134 done
BjornMagnussonXA048aaa12020-06-04 07:48:37 +0200135
BjornMagnussonXA4207b832020-11-03 09:52:49 +0100136 # Check the schemas in OSC
137 for ((i=1; i<=$OSC_NUM_RICS; i++))
138 do
139 api_get_policy_type 200 2 testdata/OSC/hw-agent-modified.json
140 api_get_policy_type 200 100 testdata/OSC/qos-agent-modified.json
141 api_get_policy_type 200 20008 testdata/OSC/tsa-agent-modified.json
142 done
143else
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +0100144 api_equal json:policy_types 4 300
BjornMagnussonXA048aaa12020-06-04 07:48:37 +0200145
BjornMagnussonXA4207b832020-11-03 09:52:49 +0100146 for ((i=1; i<=$OSC_NUM_RICS; i++))
147 do
148 api_equal json:policy_types?ric=$RIC_SIM_PREFIX"_g1_"$i 3 120
149 done
150
151 # Check the schemas in OSC
152 for ((i=1; i<=$OSC_NUM_RICS; i++))
153 do
154 api_get_policy_schema 200 2 testdata/OSC/hw-agent-modified.json
155 api_get_policy_schema 200 100 testdata/OSC/qos-agent-modified.json
156 api_get_policy_schema 200 20008 testdata/OSC/tsa-agent-modified.json
157 done
158fi
BjornMagnussonXA70e878f2020-05-11 14:11:30 +0200159
BjornMagnussonXA2791e082020-11-12 00:52:08 +0100160if [ "$PMS_VERSION" == "V2" ]; then
161
162 # Load the polictypes in std
163 for ((i=1; i<=$STD_NUM_RICS; i++))
164 do
165 sim_put_policy_type 201 $RIC_SIM_PREFIX"_g3_"$i STD_QOS_0_2_0 demo-testdata/STD2/sim_qos.json
166 sim_put_policy_type 201 $RIC_SIM_PREFIX"_g3_"$i STD_QOS2_0.1.0 demo-testdata/STD2/sim_qos2.json
167 done
168
169 #Check the number of schemas and the individual schemas in STD
170 api_equal json:policy-types 6 120
171
172 for ((i=1; i<=$STD_NUM_RICS; i++))
173 do
174 api_equal json:policy-types?ric_id=$RIC_SIM_PREFIX"_g3_"$i 2 120
175 done
176
177 # Check the schemas in STD
178 for ((i=1; i<=$STD_NUM_RICS; i++))
179 do
180 api_get_policy_type 200 STD_QOS_0_2_0 demo-testdata/STD2/qos-agent-modified.json
181 api_get_policy_type 200 'STD_QOS2_0.1.0' demo-testdata/STD2/qos2-agent-modified.json
182 done
183fi
184
BjornMagnussonXA70e878f2020-05-11 14:11:30 +0200185# Create policies
186use_agent_rest_http
187
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +0100188api_put_service 201 "Emergency-response-app" 0 "$CR_SERVICE_PATH/1"
BjornMagnussonXA70e878f2020-05-11 14:11:30 +0200189
BjornMagnussonXA4207b832020-11-03 09:52:49 +0100190if [ "$PMS_VERSION" == "V2" ]; then
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +0100191 notificationurl=$CR_SERVICE_PATH"/test"
BjornMagnussonXA4207b832020-11-03 09:52:49 +0100192else
193 notificationurl=""
194fi
195
BjornMagnussonXA048aaa12020-06-04 07:48:37 +0200196# Create policies in OSC
197for ((i=1; i<=$OSC_NUM_RICS; i++))
198do
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +0100199 generate_policy_uuid
BjornMagnussonXA4207b832020-11-03 09:52:49 +0100200 api_put_policy 201 "Emergency-response-app" $RIC_SIM_PREFIX"_g1_"$i 2 $((2000+$i)) NOTRANSIENT $notificationurl testdata/OSC/pihw_template.json 1
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +0100201 generate_policy_uuid
BjornMagnussonXA4207b832020-11-03 09:52:49 +0100202 api_put_policy 201 "Emergency-response-app" $RIC_SIM_PREFIX"_g1_"$i 100 $((3000+$i)) NOTRANSIENT $notificationurl testdata/OSC/piqos_template.json 1
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +0100203 generate_policy_uuid
BjornMagnussonXA4207b832020-11-03 09:52:49 +0100204 api_put_policy 201 "Emergency-response-app" $RIC_SIM_PREFIX"_g1_"$i 20008 $((4000+$i)) NOTRANSIENT $notificationurl testdata/OSC/pitsa_template.json 1
BjornMagnussonXA048aaa12020-06-04 07:48:37 +0200205done
BjornMagnussonXA70e878f2020-05-11 14:11:30 +0200206
BjornMagnussonXA70e878f2020-05-11 14:11:30 +0200207
BjornMagnussonXA048aaa12020-06-04 07:48:37 +0200208# Check the number of policies in OSC
209for ((i=1; i<=$OSC_NUM_RICS; i++))
210do
BjornMagnussonXAad047782020-06-08 15:54:11 +0200211 sim_equal $RIC_SIM_PREFIX"_g1_"$i num_instances 3
BjornMagnussonXA048aaa12020-06-04 07:48:37 +0200212done
BjornMagnussonXA70e878f2020-05-11 14:11:30 +0200213
BjornMagnussonXA70e878f2020-05-11 14:11:30 +0200214
BjornMagnussonXA048aaa12020-06-04 07:48:37 +0200215# Create policies in STD
216for ((i=1; i<=$STD_NUM_RICS; i++))
217do
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +0100218 generate_policy_uuid
BjornMagnussonXA4207b832020-11-03 09:52:49 +0100219 api_put_policy 201 "Emergency-response-app" $RIC_SIM_PREFIX"_g2_"$i NOTYPE $((2100+$i)) NOTRANSIENT $notificationurl testdata/STD/pi1_template.json 1
BjornMagnussonXA2791e082020-11-12 00:52:08 +0100220 if [ "$PMS_VERSION" == "V2" ]; then
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +0100221 generate_policy_uuid
BjornMagnussonXA2791e082020-11-12 00:52:08 +0100222 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 +0100223 generate_policy_uuid
BjornMagnussonXA2791e082020-11-12 00:52:08 +0100224 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
225 fi
BjornMagnussonXA048aaa12020-06-04 07:48:37 +0200226done
227
228
229# Check the number of policies in STD
230for ((i=1; i<=$STD_NUM_RICS; i++))
231do
BjornMagnussonXAad047782020-06-08 15:54:11 +0200232 sim_equal $RIC_SIM_PREFIX"_g2_"$i num_instances 1
BjornMagnussonXA2791e082020-11-12 00:52:08 +0100233 if [ "$PMS_VERSION" == "V2" ]; then
234 sim_equal $RIC_SIM_PREFIX"_g3_"$i num_instances 2
235 fi
BjornMagnussonXA048aaa12020-06-04 07:48:37 +0200236done
BjornMagnussonXA70e878f2020-05-11 14:11:30 +0200237
238check_policy_agent_logs
239
240#### TEST COMPLETE ####
241
242store_logs END
243
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +0100244print_result
245
246auto_clean_environment