Merge "Adapted test scripts to changes in PMS 2.0"
[nonrtric.git] / test / auto-test / PM_DEMO.sh
1 #!/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
20 TC_ONELINE_DESCR="Preparation demo setup  - populating a number of ric simulators with types and instances"
21
22 #App names to include in the test, space separated list
23 INCLUDED_IMAGES="CBS CONSUL CP CR MR PA RICSIM SDNC"
24
25 #SUPPORTED TEST ENV FILE
26 SUPPORTED_PROFILES="ONAP-MASTER ONAP-GUILIN"
27
28 . ../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 ##########################
36
37 if [ "$PMS_VERSION" == "V2" ]; then
38     notificationurl=$CR_PATH"/test"
39 else
40     notificationurl=""
41 fi
42
43 use_agent_rest_https
44 use_sdnc_https
45 use_simulator_https
46
47 clean_containers
48
49 OSC_NUM_RICS=6
50 STD_NUM_RICS=5
51
52 start_ric_simulators  $RIC_SIM_PREFIX"_g1" $OSC_NUM_RICS OSC_2.1.0
53
54 start_ric_simulators  $RIC_SIM_PREFIX"_g2" $STD_NUM_RICS STD_1.1.3
55
56 if [ "$PMS_VERSION" == "V2" ]; then
57     start_ric_simulators $RIC_SIM_PREFIX"_g3" $STD_NUM_RICS STD_2.0.0
58 fi
59
60 start_mr #Just to prevent errors in the agent log...
61
62 start_control_panel
63
64 start_control_panel
65
66 start_sdnc
67
68 start_consul_cbs
69
70 prepare_consul_config      SDNC  ".consul_config.json"
71 consul_config_app                  ".consul_config.json"
72
73 start_policy_agent
74
75 set_agent_trace
76
77 api_get_status 200
78
79 # Print the A1 version for OSC
80 for ((i=1; i<=$OSC_NUM_RICS; i++))
81 do
82     sim_print $RIC_SIM_PREFIX"_g1_"$i interface
83 done
84
85
86 # Print the A1 version for STD 1.X
87 for ((i=1; i<=$STD_NUM_RICS; i++))
88 do
89     sim_print $RIC_SIM_PREFIX"_g2_"$i interface
90 done
91
92 if [ "$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
98 fi
99
100
101 # Load the polictypes in osc
102 for ((i=1; i<=$OSC_NUM_RICS; i++))
103 do
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
106 done
107
108
109 #Check the number of schemas and the individual schemas in OSC
110 if [ "$PMS_VERSION" == "V2" ]; then
111
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_id=$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_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
125 else
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
139 fi
140
141
142
143
144 if [ "$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
167 fi
168
169 #Check the number of schemas and the individual schemas in OSC
170 if [ "$PMS_VERSION" == "V2" ]; then
171     api_equal json:policy-types 5 120
172 else
173     api_equal json:policy_types 3 120
174 fi
175
176
177 # Create policies
178 use_agent_rest_http
179
180 api_put_service 201 "Emergency-response-app" 0 "$CR_PATH/1"
181
182 # Create policies in OSC
183 for ((i=1; i<=$OSC_NUM_RICS; i++))
184 do
185     generate_uuid
186     api_put_policy 201 "Emergency-response-app" $RIC_SIM_PREFIX"_g1_"$i 100 $((3000+$i)) NOTRANSIENT $notificationurl demo-testdata/OSC/piqos_template.json 1
187     generate_uuid
188     api_put_policy 201 "Emergency-response-app" $RIC_SIM_PREFIX"_g1_"$i 20008 $((4000+$i)) NOTRANSIENT $notificationurl demo-testdata/OSC/pitsa_template.json 1
189 done
190
191
192 # Check the number of policies in OSC
193 for ((i=1; i<=$OSC_NUM_RICS; i++))
194 do
195     sim_equal $RIC_SIM_PREFIX"_g1_"$i num_instances 2
196 done
197
198
199 # Create policies in STD
200 for ((i=1; i<=$STD_NUM_RICS; i++))
201 do
202     generate_uuid
203     api_put_policy 201 "Emergency-response-app" $RIC_SIM_PREFIX"_g2_"$i NOTYPE $((2100+$i)) NOTRANSIENT $notificationurl demo-testdata/STD/pi1_template.json 1
204     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
210 done
211
212
213 # Check the number of policies in STD
214 for ((i=1; i<=$STD_NUM_RICS; i++))
215 do
216     sim_equal $RIC_SIM_PREFIX"_g2_"$i num_instances 1
217     if [ "$PMS_VERSION" == "V2" ]; then
218         sim_equal $RIC_SIM_PREFIX"_g3_"$i num_instances 2
219     fi
220 done
221
222 check_policy_agent_logs
223 check_sdnc_logs
224
225 #### TEST COMPLETE ####
226
227 store_logs          END
228
229 print_result