blob: c309ddc68b7f5051dc131b0331ebce115ff2f83a [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
25. ../common/testcase_common.sh $@
26. ../common/agent_api_functions.sh
27. ../common/ricsimulator_api_functions.sh
28
29#### TEST BEGIN ####
30
31#Local vars in test script
32##########################
33# Path to callback receiver
34CR_PATH="http://$CR_APP_NAME:$CR_EXTERNAL_PORT/callbacks"
BjornMagnussonXA4207b832020-11-03 09:52:49 +010035
36if [ "$PMS_VERSION" == "V2" ]; then
37 notificationurl="http://localhost:80"
38else
39 notificationurl=""
40fi
41
BjornMagnussonXAbf3700b2020-10-05 08:39:40 +020042use_cr_http
43use_agent_rest_http
44use_sdnc_http
45use_simulator_http
46
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
56start_mr #Just to prevent errors in the agent log...
57
58start_control_panel
59
60CR_PATH="https://$CR_APP_NAME:$CR_EXTERNAL_SECURE_PORT/callbacks"
61use_cr_http
62
63start_sdnc
64
65start_consul_cbs
66
67prepare_consul_config SDNC ".consul_config.json"
68consul_config_app ".consul_config.json"
69
70start_policy_agent
71
72api_get_status 200
73
74# Print the A1 version for OSC
75for ((i=1; i<=$OSC_NUM_RICS; i++))
76do
77 sim_print $RIC_SIM_PREFIX"_g1_"$i interface
78done
79
80
81# Print the A1 version for STD
82for ((i=1; i<=$STD_NUM_RICS; i++))
83do
84 sim_print $RIC_SIM_PREFIX"_g2_"$i interface
85done
86
87
88# Load the polictypes in osc
89for ((i=1; i<=$OSC_NUM_RICS; i++))
90do
91 sim_put_policy_type 201 $RIC_SIM_PREFIX"_g1_"$i 100 demo-testdata/OSC/sim_qos.json
92 sim_put_policy_type 201 $RIC_SIM_PREFIX"_g1_"$i 20008 demo-testdata/OSC/sim_tsa.json
93done
94
95
96#Check the number of schemas and the individual schemas in OSC
BjornMagnussonXA4207b832020-11-03 09:52:49 +010097if [ "$PMS_VERSION" == "V2" ]; then
98 api_equal json:policy-types 3 120
BjornMagnussonXAbf3700b2020-10-05 08:39:40 +020099
BjornMagnussonXA4207b832020-11-03 09:52:49 +0100100 for ((i=1; i<=$OSC_NUM_RICS; i++))
101 do
102 api_equal json:policy-types?ric_id=$RIC_SIM_PREFIX"_g1_"$i 2 120
103 done
BjornMagnussonXAbf3700b2020-10-05 08:39:40 +0200104
BjornMagnussonXA4207b832020-11-03 09:52:49 +0100105 # Check the schemas in OSC
106 for ((i=1; i<=$OSC_NUM_RICS; i++))
107 do
108 api_get_policy_type 200 100 demo-testdata/OSC/qos-agent-modified.json
109 api_get_policy_type 200 20008 demo-testdata/OSC/tsa-agent-modified.json
110 done
111else
112 api_equal json:policy_types 3 120
113
114 for ((i=1; i<=$OSC_NUM_RICS; i++))
115 do
116 api_equal json:policy_types?ric=$RIC_SIM_PREFIX"_g1_"$i 2 120
117 done
118
119 # Check the schemas in OSC
120 for ((i=1; i<=$OSC_NUM_RICS; i++))
121 do
122 api_get_policy_schema 200 100 demo-testdata/OSC/qos-agent-modified.json
123 api_get_policy_schema 200 20008 demo-testdata/OSC/tsa-agent-modified.json
124 done
125fi
BjornMagnussonXAbf3700b2020-10-05 08:39:40 +0200126
127
128# Create policies
129use_agent_rest_http
130
131api_put_service 201 "Emergency-response-app" 0 "$CR_PATH/1"
132
133# Create policies in OSC
134for ((i=1; i<=$OSC_NUM_RICS; i++))
135do
136 generate_uuid
BjornMagnussonXA4207b832020-11-03 09:52:49 +0100137 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 +0200138 generate_uuid
BjornMagnussonXA4207b832020-11-03 09:52:49 +0100139 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 +0200140done
141
142
143# Check the number of policies in OSC
144for ((i=1; i<=$OSC_NUM_RICS; i++))
145do
146 sim_equal $RIC_SIM_PREFIX"_g1_"$i num_instances 2
147done
148
149
150# Create policies in STD
151for ((i=1; i<=$STD_NUM_RICS; i++))
152do
153 generate_uuid
BjornMagnussonXA4207b832020-11-03 09:52:49 +0100154 api_put_policy 201 "Emergency-response-app" $RIC_SIM_PREFIX"_g2_"$i NOTYPE $((2100+$i)) NOTRANSIENT $notificationurl demo-testdata/STD/pi1_template.json 1
BjornMagnussonXAbf3700b2020-10-05 08:39:40 +0200155done
156
157
158# Check the number of policies in STD
159for ((i=1; i<=$STD_NUM_RICS; i++))
160do
161 sim_equal $RIC_SIM_PREFIX"_g2_"$i num_instances 1
162done
163
164check_policy_agent_logs
165
166#### TEST COMPLETE ####
167
168store_logs END
169
170print_result