blob: 8473a7537fdbd1ee8609ba3005d57fdc68746b88 [file] [log] [blame]
BjornMagnussonXAbf3700b2020-10-05 08:39:40 +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
20TC_ONELINE_DESCR="Preparation demo setup - populating a number of ric simulators with types and instances"
21
BjornMagnussonXAf38e1e82020-10-11 23:05:02 +020022#App names to include in the test, space separated list
23INCLUDED_IMAGES="CBS CONSUL CP CR MR PA RICSIM SDNC"
BjornMagnussonXAbf3700b2020-10-05 08:39:40 +020024
BjornMagnussonXA49f0e5a2020-11-08 22:41:39 +010025#SUPPORTED TEST ENV FILE
26SUPPORTED_PROFILES="ONAP-MASTER ONAP-GUILIN"
27
BjornMagnussonXAbf3700b2020-10-05 08:39:40 +020028. ../common/testcase_common.sh $@
29. ../common/agent_api_functions.sh
30. ../common/ricsimulator_api_functions.sh
31
32#### TEST BEGIN ####
33
34#Local vars in test script
35##########################
BjornMagnussonXA4207b832020-11-03 09:52:49 +010036
37if [ "$PMS_VERSION" == "V2" ]; then
BjornMagnussonXA49f0e5a2020-11-08 22:41:39 +010038 notificationurl=$CR_PATH"/test"
BjornMagnussonXA4207b832020-11-03 09:52:49 +010039else
40 notificationurl=""
41fi
42
BjornMagnussonXA49f0e5a2020-11-08 22:41:39 +010043use_agent_rest_https
44use_sdnc_https
45use_simulator_https
BjornMagnussonXAbf3700b2020-10-05 08:39:40 +020046
47clean_containers
48
49OSC_NUM_RICS=6
50STD_NUM_RICS=5
51
52start_ric_simulators $RIC_SIM_PREFIX"_g1" $OSC_NUM_RICS OSC_2.1.0
53
54start_ric_simulators $RIC_SIM_PREFIX"_g2" $STD_NUM_RICS STD_1.1.3
55
BjornMagnussonXA49f0e5a2020-11-08 22:41:39 +010056if [ "$PMS_VERSION" == "V2" ]; then
57 start_ric_simulators $RIC_SIM_PREFIX"_g3" $STD_NUM_RICS STD_2.0.0
58fi
59
BjornMagnussonXAbf3700b2020-10-05 08:39:40 +020060start_mr #Just to prevent errors in the agent log...
61
62start_control_panel
63
BjornMagnussonXA49f0e5a2020-11-08 22:41:39 +010064start_control_panel
BjornMagnussonXAbf3700b2020-10-05 08:39:40 +020065
66start_sdnc
67
68start_consul_cbs
69
70prepare_consul_config SDNC ".consul_config.json"
71consul_config_app ".consul_config.json"
72
73start_policy_agent
74
BjornMagnussonXA49f0e5a2020-11-08 22:41:39 +010075set_agent_trace
76
BjornMagnussonXAbf3700b2020-10-05 08:39:40 +020077api_get_status 200
78
79# Print the A1 version for OSC
80for ((i=1; i<=$OSC_NUM_RICS; i++))
81do
82 sim_print $RIC_SIM_PREFIX"_g1_"$i interface
83done
84
85
BjornMagnussonXA49f0e5a2020-11-08 22:41:39 +010086# Print the A1 version for STD 1.X
BjornMagnussonXAbf3700b2020-10-05 08:39:40 +020087for ((i=1; i<=$STD_NUM_RICS; i++))
88do
89 sim_print $RIC_SIM_PREFIX"_g2_"$i interface
90done
91
BjornMagnussonXA49f0e5a2020-11-08 22:41:39 +010092if [ "$PMS_VERSION" == "V2" ]; then
93 # Print the A1 version for STD 2.X
94 for ((i=1; i<=$STD_NUM_RICS; i++))
95 do
96 sim_print $RIC_SIM_PREFIX"_g3_"$i interface
97 done
98fi
99
BjornMagnussonXAbf3700b2020-10-05 08:39:40 +0200100
101# Load the polictypes in osc
102for ((i=1; i<=$OSC_NUM_RICS; i++))
103do
104 sim_put_policy_type 201 $RIC_SIM_PREFIX"_g1_"$i 100 demo-testdata/OSC/sim_qos.json
105 sim_put_policy_type 201 $RIC_SIM_PREFIX"_g1_"$i 20008 demo-testdata/OSC/sim_tsa.json
106done
107
108
109#Check the number of schemas and the individual schemas in OSC
BjornMagnussonXA4207b832020-11-03 09:52:49 +0100110if [ "$PMS_VERSION" == "V2" ]; then
BjornMagnussonXA49f0e5a2020-11-08 22:41:39 +0100111
BjornMagnussonXA4207b832020-11-03 09:52:49 +0100112 api_equal json:policy-types 3 120
BjornMagnussonXAbf3700b2020-10-05 08:39:40 +0200113
BjornMagnussonXA4207b832020-11-03 09:52:49 +0100114 for ((i=1; i<=$OSC_NUM_RICS; i++))
115 do
116 api_equal json:policy-types?ric_id=$RIC_SIM_PREFIX"_g1_"$i 2 120
117 done
BjornMagnussonXAbf3700b2020-10-05 08:39:40 +0200118
BjornMagnussonXA4207b832020-11-03 09:52:49 +0100119 # Check the schemas in OSC
120 for ((i=1; i<=$OSC_NUM_RICS; i++))
121 do
122 api_get_policy_type 200 100 demo-testdata/OSC/qos-agent-modified.json
123 api_get_policy_type 200 20008 demo-testdata/OSC/tsa-agent-modified.json
124 done
125else
126 api_equal json:policy_types 3 120
127
128 for ((i=1; i<=$OSC_NUM_RICS; i++))
129 do
130 api_equal json:policy_types?ric=$RIC_SIM_PREFIX"_g1_"$i 2 120
131 done
132
133 # Check the schemas in OSC
134 for ((i=1; i<=$OSC_NUM_RICS; i++))
135 do
136 api_get_policy_schema 200 100 demo-testdata/OSC/qos-agent-modified.json
137 api_get_policy_schema 200 20008 demo-testdata/OSC/tsa-agent-modified.json
138 done
139fi
BjornMagnussonXAbf3700b2020-10-05 08:39:40 +0200140
141
BjornMagnussonXA49f0e5a2020-11-08 22:41:39 +0100142
143
144if [ "$PMS_VERSION" == "V2" ]; then
145
146 # Load the polictypes in std
147 for ((i=1; i<=$STD_NUM_RICS; i++))
148 do
149 sim_put_policy_type 201 $RIC_SIM_PREFIX"_g3_"$i STD_QOS_0_2_0 demo-testdata/STD2/sim_qos.json
150 sim_put_policy_type 201 $RIC_SIM_PREFIX"_g3_"$i STD_QOS2_0.1.0 demo-testdata/STD2/sim_qos2.json
151 done
152
153 #Check the number of schemas and the individual schemas in STD
154 api_equal json:policy-types 5 120
155
156 for ((i=1; i<=$STD_NUM_RICS; i++))
157 do
158 api_equal json:policy-types?ric_id=$RIC_SIM_PREFIX"_g3_"$i 2 120
159 done
160
161 # Check the schemas in STD
162 for ((i=1; i<=$STD_NUM_RICS; i++))
163 do
164 api_get_policy_type 200 STD_QOS_0_2_0 demo-testdata/STD2/qos-agent-modified.json
165 api_get_policy_type 200 'STD_QOS2_0.1.0' demo-testdata/STD2/qos2-agent-modified.json
166 done
167fi
168
169#Check the number of schemas and the individual schemas in OSC
170if [ "$PMS_VERSION" == "V2" ]; then
171 api_equal json:policy-types 5 120
172else
173 api_equal json:policy_types 3 120
174fi
175
176
BjornMagnussonXAbf3700b2020-10-05 08:39:40 +0200177# Create policies
178use_agent_rest_http
179
180api_put_service 201 "Emergency-response-app" 0 "$CR_PATH/1"
181
182# Create policies in OSC
183for ((i=1; i<=$OSC_NUM_RICS; i++))
184do
185 generate_uuid
BjornMagnussonXA4207b832020-11-03 09:52:49 +0100186 api_put_policy 201 "Emergency-response-app" $RIC_SIM_PREFIX"_g1_"$i 100 $((3000+$i)) NOTRANSIENT $notificationurl demo-testdata/OSC/piqos_template.json 1
BjornMagnussonXAbf3700b2020-10-05 08:39:40 +0200187 generate_uuid
BjornMagnussonXA4207b832020-11-03 09:52:49 +0100188 api_put_policy 201 "Emergency-response-app" $RIC_SIM_PREFIX"_g1_"$i 20008 $((4000+$i)) NOTRANSIENT $notificationurl demo-testdata/OSC/pitsa_template.json 1
BjornMagnussonXAbf3700b2020-10-05 08:39:40 +0200189done
190
191
192# Check the number of policies in OSC
193for ((i=1; i<=$OSC_NUM_RICS; i++))
194do
195 sim_equal $RIC_SIM_PREFIX"_g1_"$i num_instances 2
196done
197
198
199# Create policies in STD
200for ((i=1; i<=$STD_NUM_RICS; i++))
201do
202 generate_uuid
BjornMagnussonXA4207b832020-11-03 09:52:49 +0100203 api_put_policy 201 "Emergency-response-app" $RIC_SIM_PREFIX"_g2_"$i NOTYPE $((2100+$i)) NOTRANSIENT $notificationurl demo-testdata/STD/pi1_template.json 1
BjornMagnussonXA49f0e5a2020-11-08 22:41:39 +0100204 if [ "$PMS_VERSION" == "V2" ]; then
205 generate_uuid
206 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
207 generate_uuid
208 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
209 fi
BjornMagnussonXAbf3700b2020-10-05 08:39:40 +0200210done
211
212
213# Check the number of policies in STD
214for ((i=1; i<=$STD_NUM_RICS; i++))
215do
216 sim_equal $RIC_SIM_PREFIX"_g2_"$i num_instances 1
BjornMagnussonXA49f0e5a2020-11-08 22:41:39 +0100217 if [ "$PMS_VERSION" == "V2" ]; then
218 sim_equal $RIC_SIM_PREFIX"_g3_"$i num_instances 2
219 fi
BjornMagnussonXAbf3700b2020-10-05 08:39:40 +0200220done
221
222check_policy_agent_logs
BjornMagnussonXA49f0e5a2020-11-08 22:41:39 +0100223check_sdnc_logs
BjornMagnussonXAbf3700b2020-10-05 08:39:40 +0200224
225#### TEST COMPLETE ####
226
227store_logs END
228
229print_result