blob: 1d80a8c336864946837b879b5179b9d7faf0445e [file] [log] [blame]
BjornMagnussonXA70e878f2020-05-11 14:11:30 +02001#!/bin/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
21TC_ONELINE_DESCR="Sample tests of the SDNC A1 controller restconf API using http/https (no agent)"
22
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +010023#App names to include in the test when running docker, space separated list
24DOCKER_INCLUDED_IMAGES="RICSIM SDNC"
25#App names to include in the test when running kubernetes, space separated list
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +010026KUBE_INCLUDED_IMAGES=" RICSIM SDNC KUBEPROXY"
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +010027#Prestarted app (not started by script) to include in the test when running kubernetes, space separated list
28KUBE_PRESTARTED_IMAGES=" "
BjornMagnussonXAbbd2e9d2020-05-27 21:24:06 +020029
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +010030#Supported test environment profiles
BjornMagnussonXAfec823b2021-08-03 14:14:05 +020031SUPPORTED_PROFILES="ONAP-GUILIN ONAP-HONOLULU ONAP-ISTANBUL ORAN-CHERRY ORAN-D-RELEASE ORAN-E-RELEASE"
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +010032#Supported run modes
33SUPPORTED_RUNMODES="DOCKER KUBE"
BjornMagnussonXA49f0e5a2020-11-08 22:41:39 +010034
BjornMagnussonXA70e878f2020-05-11 14:11:30 +020035. ../common/testcase_common.sh $@
36. ../common/controller_api_functions.sh
37. ../common/ricsimulator_api_functions.sh
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +010038. ../common/kube_proxy_api_functions.sh
39
40setup_testenvironment
BjornMagnussonXA70e878f2020-05-11 14:11:30 +020041
42#### TEST BEGIN ####
43
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +010044generate_policy_uuid
BjornMagnussonXAad047782020-06-08 15:54:11 +020045
BjornMagnussonXA70e878f2020-05-11 14:11:30 +020046#Test agent and simulator protocol versions (others are http only)
BjornMagnussonXA575869c2020-09-14 21:28:54 +020047NB_TESTED_PROTOCOLS="HTTP HTTPS"
48SB_TESTED_PROTOCOLS="HTTP HTTPS"
BjornMagnussonXA70e878f2020-05-11 14:11:30 +020049
BjornMagnussonXA575869c2020-09-14 21:28:54 +020050for __nb_httpx in $NB_TESTED_PROTOCOLS ; do
51 for __sb_httpx in $SB_TESTED_PROTOCOLS ; do
BjornMagnussonXA70e878f2020-05-11 14:11:30 +020052
BjornMagnussonXA575869c2020-09-14 21:28:54 +020053 echo "#####################################################################"
54 echo "#####################################################################"
55 echo "### Testing SDNC using Northbound: $__nb_httpx and Southbound: $__sb_httpx"
56 echo "#####################################################################"
57 echo "#####################################################################"
BjornMagnussonXA70e878f2020-05-11 14:11:30 +020058
59
BjornMagnussonXA575869c2020-09-14 21:28:54 +020060 # Clean container and start all needed containers #
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +010061 clean_environment
BjornMagnussonXA70e878f2020-05-11 14:11:30 +020062
BjornMagnussonXAbe9a07f2021-02-25 10:51:46 +010063 if [ $RUNMODE == "KUBE" ]; then
64 start_kube_proxy
65 fi
66
BjornMagnussonXA575869c2020-09-14 21:28:54 +020067 start_ric_simulators ricsim_g1 1 OSC_2.1.0
68 start_ric_simulators ricsim_g2 1 STD_1.1.3
BjornMagnussonXA4207b832020-11-03 09:52:49 +010069 if [ "$PMS_VERSION" == "V2" ]; then
70 start_ric_simulators ricsim_g3 1 STD_2.0.0
71 fi
BjornMagnussonXA70e878f2020-05-11 14:11:30 +020072
BjornMagnussonXA575869c2020-09-14 21:28:54 +020073 start_sdnc
BjornMagnussonXA70e878f2020-05-11 14:11:30 +020074
BjornMagnussonXA575869c2020-09-14 21:28:54 +020075 if [ $__nb_httpx == "HTTPS" ]; then
76 # "Using secure ports towards SDNC"
77 use_sdnc_https
78 else
79 #"Using non-secure ports towards SDNC"
80 use_sdnc_http
81 fi
BjornMagnussonXA70e878f2020-05-11 14:11:30 +020082
BjornMagnussonXA575869c2020-09-14 21:28:54 +020083 if [ $__sb_httpx == "HTTPS" ]; then
84 # "Using secure ports towards SDNC"
85 use_simulator_https
86 else
87 #"Using non-secure ports towards SDNC"
88 use_simulator_http
89 fi
BjornMagnussonXA70e878f2020-05-11 14:11:30 +020090
BjornMagnussonXA575869c2020-09-14 21:28:54 +020091 # API tests
BjornMagnussonXA70e878f2020-05-11 14:11:30 +020092
BjornMagnussonXA575869c2020-09-14 21:28:54 +020093 controller_api_get_A1_policy_type 404 OSC ricsim_g1_1 1
94
95 sim_put_policy_type 201 ricsim_g1_1 1 testdata/OSC/sim_1.json
BjornMagnussonXA70e878f2020-05-11 14:11:30 +020096
97
BjornMagnussonXA575869c2020-09-14 21:28:54 +020098 controller_api_get_A1_policy_ids 200 OSC ricsim_g1_1 1
99 controller_api_get_A1_policy_ids 200 STD ricsim_g2_1
BjornMagnussonXA70e878f2020-05-11 14:11:30 +0200100
BjornMagnussonXA575869c2020-09-14 21:28:54 +0200101 controller_api_get_A1_policy_type 200 OSC ricsim_g1_1 1
102 controller_api_get_A1_policy_type 200 OSC ricsim_g1_1 1 testdata/OSC/sim_1.json
103 controller_api_get_A1_policy_type 404 OSC ricsim_g1_1 99
BjornMagnussonXA70e878f2020-05-11 14:11:30 +0200104
BjornMagnussonXA39ad50e2020-10-22 09:55:25 +0200105 RESP=202
106 if [ $FLAVOUR == "ONAP" ]; then
107 RESP=200
108 fi
109 controller_api_put_A1_policy $RESP OSC ricsim_g1_1 1 4000 testdata/OSC/pi1_template.json
BjornMagnussonXA575869c2020-09-14 21:28:54 +0200110 controller_api_put_A1_policy 404 OSC ricsim_g1_1 5 1001 testdata/OSC/pi1_template.json
BjornMagnussonXA39ad50e2020-10-22 09:55:25 +0200111
112 RESP=201
113 if [ $FLAVOUR == "ONAP" ]; then
114 RESP=200
115 fi
116 controller_api_put_A1_policy $RESP STD ricsim_g2_1 5000 testdata/STD/pi1_template.json
BjornMagnussonXA70e878f2020-05-11 14:11:30 +0200117
BjornMagnussonXA575869c2020-09-14 21:28:54 +0200118 controller_api_get_A1_policy_ids 200 OSC ricsim_g1_1 1 4000
119 controller_api_get_A1_policy_ids 200 STD ricsim_g2_1 5000
BjornMagnussonXA70e878f2020-05-11 14:11:30 +0200120
BjornMagnussonXA575869c2020-09-14 21:28:54 +0200121 controller_api_get_A1_policy_status 200 OSC ricsim_g1_1 1 4000
122 controller_api_get_A1_policy_status 200 STD ricsim_g2_1 5000
BjornMagnussonXA70e878f2020-05-11 14:11:30 +0200123
BjornMagnussonXA575869c2020-09-14 21:28:54 +0200124 VAL='NOT IN EFFECT'
125 controller_api_get_A1_policy_status 200 OSC ricsim_g1_1 1 4000 "$VAL" "false"
126 controller_api_get_A1_policy_status 200 STD ricsim_g2_1 5000 "UNDEFINED"
BjornMagnussonXA70e878f2020-05-11 14:11:30 +0200127
BjornMagnussonXA39ad50e2020-10-22 09:55:25 +0200128 RESP=202
129 if [ $FLAVOUR == "ONAP" ]; then
130 RESP=200
131 fi
132 controller_api_delete_A1_policy $RESP OSC ricsim_g1_1 1 4000
133
134 RESP=204
135 if [ $FLAVOUR == "ONAP" ]; then
136 RESP=200
137 fi
138 controller_api_delete_A1_policy $RESP STD ricsim_g2_1 5000
BjornMagnussonXA70e878f2020-05-11 14:11:30 +0200139
BjornMagnussonXAf38e1e82020-10-11 23:05:02 +0200140 check_sdnc_logs
141
BjornMagnussonXA575869c2020-09-14 21:28:54 +0200142 store_logs "NB_"$__nb_httpx"_SB_"$__sb_httpx
143
144 done
BjornMagnussonXA70e878f2020-05-11 14:11:30 +0200145
146done
147
148#### TEST COMPLETE ####
149
150print_result
151
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +0100152auto_clean_environment