blob: 3696d5677cfb0f537709671dbe41a184d53dbec0 [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"
35use_cr_http
36use_agent_rest_http
37use_sdnc_http
38use_simulator_http
39
40clean_containers
41
42OSC_NUM_RICS=6
43STD_NUM_RICS=5
44
45start_ric_simulators $RIC_SIM_PREFIX"_g1" $OSC_NUM_RICS OSC_2.1.0
46
47start_ric_simulators $RIC_SIM_PREFIX"_g2" $STD_NUM_RICS STD_1.1.3
48
49start_mr #Just to prevent errors in the agent log...
50
51start_control_panel
52
53CR_PATH="https://$CR_APP_NAME:$CR_EXTERNAL_SECURE_PORT/callbacks"
54use_cr_http
55
56start_sdnc
57
58start_consul_cbs
59
60prepare_consul_config SDNC ".consul_config.json"
61consul_config_app ".consul_config.json"
62
63start_policy_agent
64
65api_get_status 200
66
67# Print the A1 version for OSC
68for ((i=1; i<=$OSC_NUM_RICS; i++))
69do
70 sim_print $RIC_SIM_PREFIX"_g1_"$i interface
71done
72
73
74# Print the A1 version for STD
75for ((i=1; i<=$STD_NUM_RICS; i++))
76do
77 sim_print $RIC_SIM_PREFIX"_g2_"$i interface
78done
79
80
81# Load the polictypes in osc
82for ((i=1; i<=$OSC_NUM_RICS; i++))
83do
84 sim_put_policy_type 201 $RIC_SIM_PREFIX"_g1_"$i 100 demo-testdata/OSC/sim_qos.json
85 sim_put_policy_type 201 $RIC_SIM_PREFIX"_g1_"$i 20008 demo-testdata/OSC/sim_tsa.json
86done
87
88
89#Check the number of schemas and the individual schemas in OSC
90api_equal json:policy_types 3 120
91
92for ((i=1; i<=$OSC_NUM_RICS; i++))
93do
94 api_equal json:policy_types?ric=$RIC_SIM_PREFIX"_g1_"$i 2 120
95done
96
97# Check the schemas in OSC
98for ((i=1; i<=$OSC_NUM_RICS; i++))
99do
100 api_get_policy_schema 200 100 demo-testdata/OSC/qos-agent-modified.json
101 api_get_policy_schema 200 20008 demo-testdata/OSC/tsa-agent-modified.json
102done
103
104
105# Create policies
106use_agent_rest_http
107
108api_put_service 201 "Emergency-response-app" 0 "$CR_PATH/1"
109
110# Create policies in OSC
111for ((i=1; i<=$OSC_NUM_RICS; i++))
112do
113 generate_uuid
114 api_put_policy 201 "Emergency-response-app" $RIC_SIM_PREFIX"_g1_"$i 100 $((3000+$i)) NOTRANSIENT demo-testdata/OSC/piqos_template.json 1
115 generate_uuid
116 api_put_policy 201 "Emergency-response-app" $RIC_SIM_PREFIX"_g1_"$i 20008 $((4000+$i)) NOTRANSIENT demo-testdata/OSC/pitsa_template.json 1
117done
118
119
120# Check the number of policies in OSC
121for ((i=1; i<=$OSC_NUM_RICS; i++))
122do
123 sim_equal $RIC_SIM_PREFIX"_g1_"$i num_instances 2
124done
125
126
127# Create policies in STD
128for ((i=1; i<=$STD_NUM_RICS; i++))
129do
130 generate_uuid
131 api_put_policy 201 "Emergency-response-app" $RIC_SIM_PREFIX"_g2_"$i NOTYPE $((2100+$i)) NOTRANSIENT demo-testdata/STD/pi1_template.json 1
132done
133
134
135# Check the number of policies in STD
136for ((i=1; i<=$STD_NUM_RICS; i++))
137do
138 sim_equal $RIC_SIM_PREFIX"_g2_"$i num_instances 1
139done
140
141check_policy_agent_logs
142
143#### TEST COMPLETE ####
144
145store_logs END
146
147print_result