7d7c9353991a86fc50f3a7290fdbbd77d314181f
[nonrtric.git] / test / auto-test / ONAP_UC.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
21 TC_ONELINE_DESCR="ONAP Use case REQ-626"
22 #App names to include in the test when running docker, space separated list
23 DOCKER_INCLUDED_IMAGES="CP CR MR DMAAPMR A1PMS RICSIM SDNC NGW KUBEPROXY"
24
25 #App names to include in the test when running kubernetes, space separated list
26 KUBE_INCLUDED_IMAGES="CP CR MR DMAAPMR A1PMS RICSIM SDNC KUBEPROXY NGW"
27 #Prestarted app (not started by script) to include in the test when running kubernetes, space separated list
28 KUBE_PRESTARTED_IMAGES=""
29
30 #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
33 CONDITIONALLY_IGNORED_IMAGES="NGW"
34
35 #Supported test environment profiles
36 SUPPORTED_PROFILES="ONAP-JAKARTA ONAP-KOHN ONAP-LONDON "
37 #Supported run modes
38 SUPPORTED_RUNMODES="DOCKER KUBE"
39
40 . ../common/testcase_common.sh $@
41
42 setup_testenvironment
43
44 #### TEST BEGIN ####
45
46 #Local vars in test script
47 ##########################
48
49 use_cr_https
50 use_a1pms_rest_https
51 use_sdnc_https
52 use_simulator_https
53 use_mr_https
54 __httpx="HTTPS"
55 notificationurl=$CR_SERVICE_APP_PATH_0"/test"
56
57 generate_policy_uuid
58
59 # Tested variants of REST/DMAAP/SDNC config
60 TESTED_VARIANTS="REST   DMAAP   REST+SDNC   DMAAP+SDNC"
61 for interface in $TESTED_VARIANTS ; do
62
63     echo "#####################################################################"
64     echo "#####################################################################"
65     echo "### Testing a1pms: $interface using https"
66     echo "#####################################################################"
67     echo "#####################################################################"
68
69     clean_environment
70
71     start_kube_proxy
72
73     if [[ $interface = *"DMAAP"* ]]; then
74         use_a1pms_dmaap_https
75     else
76         use_a1pms_rest_https
77     fi
78
79     OSC_NUM_RICS=1
80     STD_NUM_RICS=1
81
82     start_ric_simulators  $RIC_SIM_PREFIX"_g1" $OSC_NUM_RICS OSC_2.1.0
83
84     start_ric_simulators  $RIC_SIM_PREFIX"_g2" $STD_NUM_RICS STD_1.1.3
85
86     start_ric_simulators $RIC_SIM_PREFIX"_g3" $STD_NUM_RICS STD_2.0.0
87
88     start_mr    "$MR_READ_TOPIC"  "/events" "users/policy-agent" \
89                 "$MR_WRITE_TOPIC" "/events" "users/mr-stub"
90
91     start_control_panel $SIM_GROUP/$CONTROL_PANEL_COMPOSE_DIR/$CONTROL_PANEL_CONFIG_FILE
92
93     if [ ! -z "$NRT_GATEWAY_APP_NAME" ]; then
94         start_gateway $SIM_GROUP/$NRT_GATEWAY_COMPOSE_DIR/$NRT_GATEWAY_CONFIG_FILE
95     fi
96
97
98
99     if [[ $interface = *"SDNC"* ]]; then
100         start_sdnc
101         prepare_a1pms_config      SDNC    ".a1pms_config.json"
102     else
103         prepare_a1pms_config      NOSDNC  ".a1pms_config.json"
104     fi
105
106     start_a1pms NORPOXY $SIM_GROUP/$A1PMS_COMPOSE_DIR/$A1PMS_CONFIG_FILE
107
108     set_a1pms_trace
109
110     if [ $RUNMODE == "KUBE" ]; then
111         a1pms_load_config                       ".a1pms_config.json"
112     else
113         #Temporary switch to http/https if dmaap use. Otherwise it is not possibble to push config
114         if [ $__httpx == "HTTPS" ]; then
115             use_a1pms_rest_https
116         else
117             use_a1pms_rest_http
118         fi
119         a1pms_api_put_configuration 200 ".a1pms_config.json"
120         if [ $__httpx == "HTTPS" ]; then
121             if [[ $interface = *"DMAAP"* ]]; then
122                 use_a1pms_dmaap_https
123             else
124                 use_a1pms_rest_https
125             fi
126         else
127             if [[ $interface = *"DMAAP"* ]]; then
128                 use_a1pms_dmaap_http
129             else
130                 use_a1pms_rest_http
131             fi
132         fi
133     fi
134
135     # Check that all rics are synced in
136     a1pms_equal json:rics 3 300
137
138     a1pms_api_get_status 200
139
140     # Print the A1 version for OSC
141     for ((i=1; i<=$OSC_NUM_RICS; i++))
142     do
143         sim_print $RIC_SIM_PREFIX"_g1_"$i interface
144     done
145
146
147     # Print the A1 version for STD 1.X
148     for ((i=1; i<=$STD_NUM_RICS; i++))
149     do
150         sim_print $RIC_SIM_PREFIX"_g2_"$i interface
151     done
152
153     # Print the A1 version for STD 2.X
154     for ((i=1; i<=$STD_NUM_RICS; i++))
155     do
156         sim_print $RIC_SIM_PREFIX"_g3_"$i interface
157     done
158
159     #################################################################
160     ## REQ: Synchronize A1 Policy Information in RAN
161     #################################################################
162
163     # Load the polictypes in osc
164     for ((i=1; i<=$OSC_NUM_RICS; i++))
165     do
166         sim_put_policy_type 201 $RIC_SIM_PREFIX"_g1_"$i 100 demo-testdata/OSC/sim_qos.json
167         sim_put_policy_type 201 $RIC_SIM_PREFIX"_g1_"$i 20008 demo-testdata/OSC/sim_tsa.json
168     done
169
170     #Check the number of schemas and the individual schemas in OSC
171     a1pms_equal json:policy-types 3 300
172
173     for ((i=1; i<=$OSC_NUM_RICS; i++))
174     do
175         a1pms_equal json:policy-types?ric_id=$RIC_SIM_PREFIX"_g1_"$i 2 120
176     done
177
178     # Check the schemas in OSC
179     for ((i=1; i<=$OSC_NUM_RICS; i++))
180     do
181         a1pms_api_get_policy_type 200 100 demo-testdata/OSC/qos-a1pms-modified.json
182         a1pms_api_get_policy_type 200 20008 demo-testdata/OSC/tsa-a1pms-modified.json
183     done
184
185
186     # Load the polictypes in std
187     for ((i=1; i<=$STD_NUM_RICS; i++))
188     do
189         sim_put_policy_type 201 $RIC_SIM_PREFIX"_g3_"$i STD_QOS_0_2_0 demo-testdata/STD2/sim_qos.json
190         sim_put_policy_type 201 $RIC_SIM_PREFIX"_g3_"$i STD_QOS2_0.1.0 demo-testdata/STD2/sim_qos2.json
191     done
192
193     #Check the number of schemas and the individual schemas in STD
194     a1pms_equal json:policy-types 5 120
195
196     for ((i=1; i<=$STD_NUM_RICS; i++))
197     do
198         a1pms_equal json:policy-types?ric_id=$RIC_SIM_PREFIX"_g3_"$i 2 120
199     done
200
201     # Check the schemas in STD
202     for ((i=1; i<=$STD_NUM_RICS; i++))
203     do
204         a1pms_api_get_policy_type 200 STD_QOS_0_2_0 demo-testdata/STD2/qos-a1pms-modified.json
205         a1pms_api_get_policy_type 200 'STD_QOS2_0.1.0' demo-testdata/STD2/qos2-a1pms-modified.json
206     done
207
208     #Check the number of types
209     a1pms_equal json:policy-types 5 120
210
211     #################################################################
212     ##  REQ: A1 Policy Type / Instance Operations
213     #################################################################
214
215     # Create policies
216     use_a1pms_rest_http
217
218     a1pms_api_put_service 201 "Emergency-response-app" 0 "$CR_SERVICE_APP_PATH_0/1"
219
220     # Create policies in OSC
221     for ((i=1; i<=$OSC_NUM_RICS; i++))
222     do
223         a1pms_api_put_policy 201 "Emergency-response-app" $RIC_SIM_PREFIX"_g1_"$i 100 $((3000+$i)) NOTRANSIENT $notificationurl demo-testdata/OSC/piqos_template.json 1
224         a1pms_api_put_policy 201 "Emergency-response-app" $RIC_SIM_PREFIX"_g1_"$i 20008 $((4000+$i)) NOTRANSIENT $notificationurl demo-testdata/OSC/pitsa_template.json 1
225     done
226
227
228     # Check the number of policies in OSC
229     for ((i=1; i<=$OSC_NUM_RICS; i++))
230     do
231         sim_equal $RIC_SIM_PREFIX"_g1_"$i num_instances 2
232     done
233
234
235     # Create policies in STD
236     for ((i=1; i<=$STD_NUM_RICS; i++))
237     do
238         a1pms_api_put_policy 201 "Emergency-response-app" $RIC_SIM_PREFIX"_g2_"$i NOTYPE $((2100+$i)) NOTRANSIENT $notificationurl demo-testdata/STD/pi1_template.json 1
239         a1pms_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
240         a1pms_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
241     done
242
243
244     # Check the number of policies in STD
245     for ((i=1; i<=$STD_NUM_RICS; i++))
246     do
247         sim_equal $RIC_SIM_PREFIX"_g2_"$i num_instances 1
248         sim_equal $RIC_SIM_PREFIX"_g3_"$i num_instances 2
249     done
250
251     #################################################################
252     ##  REQ: A1 Policy Instance Status Operations
253     #################################################################
254
255     # Check status STD
256     for ((i=1; i<=$STD_NUM_RICS; i++))
257     do
258         a1pms_api_get_policy_status 200 $((2100+$i)) STD "UNDEFINED"
259         a1pms_api_get_policy_status 200 $((2300+$i)) STD2 EMPTY EMPTY
260         a1pms_api_get_policy_status 200 $((2400+$i)) STD2 EMPTY EMPTY
261     done
262
263     # Check status OSC
264     VAL='NOT IN EFFECT'
265     for ((i=1; i<=$OSC_NUM_RICS; i++))
266     do
267         a1pms_api_get_policy_status 200 $((3000+$i)) OSC "$VAL" "false"
268         a1pms_api_get_policy_status 200 $((4000+$i)) OSC "$VAL" "false"
269     done
270
271     # Note: Status callback is not tested since this callback (http POST) is made from the
272     # ricsim directly to the receiver of the status, i.e. the status does NOT
273     # pass through A1PMS
274
275     check_a1pms_logs
276
277     if [[ $interface = *"SDNC"* ]]; then
278         check_sdnc_logs
279     fi
280
281     #### TEST COMPLETE ####
282
283     store_logs          "https__${interface}"
284
285 done
286
287 print_result
288
289 auto_clean_environment