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
10 # http://www.apache.org/licenses/LICENSE-2.0
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=================================================
21 TC_ONELINE_DESCR="Sample tests of the SDNC A1 controller restconf API using http/https (no agent)"
23 #App names to include in the test, space separated list
24 INCLUDED_IMAGES="RICSIM SDNC"
26 #SUPPORTED TEST ENV FILE
27 SUPPORTED_PROFILES="ONAP-MASTER ONAP-GUILIN ORAN-CHERRY"
29 . ../common/testcase_common.sh $@
30 . ../common/controller_api_functions.sh
31 . ../common/ricsimulator_api_functions.sh
36 if [[ $SDNC_A1_CONTROLLER_IMAGE == *"onap"* ]]; then
42 #Test agent and simulator protocol versions (others are http only)
43 NB_TESTED_PROTOCOLS="HTTP HTTPS"
44 SB_TESTED_PROTOCOLS="HTTP HTTPS"
46 for __nb_httpx in $NB_TESTED_PROTOCOLS ; do
47 for __sb_httpx in $SB_TESTED_PROTOCOLS ; do
49 echo "#####################################################################"
50 echo "#####################################################################"
51 echo "### Testing SDNC using Northbound: $__nb_httpx and Southbound: $__sb_httpx"
52 echo "#####################################################################"
53 echo "#####################################################################"
56 # Clean container and start all needed containers #
59 start_ric_simulators ricsim_g1 1 OSC_2.1.0
60 start_ric_simulators ricsim_g2 1 STD_1.1.3
61 if [ "$PMS_VERSION" == "V2" ]; then
62 start_ric_simulators ricsim_g3 1 STD_2.0.0
67 if [ $__nb_httpx == "HTTPS" ]; then
68 # "Using secure ports towards SDNC"
71 #"Using non-secure ports towards SDNC"
75 if [ $__sb_httpx == "HTTPS" ]; then
76 # "Using secure ports towards SDNC"
79 #"Using non-secure ports towards SDNC"
85 controller_api_get_A1_policy_type 404 OSC ricsim_g1_1 1
87 sim_put_policy_type 201 ricsim_g1_1 1 testdata/OSC/sim_1.json
90 controller_api_get_A1_policy_ids 200 OSC ricsim_g1_1 1
91 controller_api_get_A1_policy_ids 200 STD ricsim_g2_1
93 controller_api_get_A1_policy_type 200 OSC ricsim_g1_1 1
94 controller_api_get_A1_policy_type 200 OSC ricsim_g1_1 1 testdata/OSC/sim_1.json
95 controller_api_get_A1_policy_type 404 OSC ricsim_g1_1 99
98 if [ $FLAVOUR == "ONAP" ]; then
101 controller_api_put_A1_policy $RESP OSC ricsim_g1_1 1 4000 testdata/OSC/pi1_template.json
102 controller_api_put_A1_policy 404 OSC ricsim_g1_1 5 1001 testdata/OSC/pi1_template.json
105 if [ $FLAVOUR == "ONAP" ]; then
108 controller_api_put_A1_policy $RESP STD ricsim_g2_1 5000 testdata/STD/pi1_template.json
110 controller_api_get_A1_policy_ids 200 OSC ricsim_g1_1 1 4000
111 controller_api_get_A1_policy_ids 200 STD ricsim_g2_1 5000
113 controller_api_get_A1_policy_status 200 OSC ricsim_g1_1 1 4000
114 controller_api_get_A1_policy_status 200 STD ricsim_g2_1 5000
117 controller_api_get_A1_policy_status 200 OSC ricsim_g1_1 1 4000 "$VAL" "false"
118 controller_api_get_A1_policy_status 200 STD ricsim_g2_1 5000 "UNDEFINED"
121 if [ $FLAVOUR == "ONAP" ]; then
124 controller_api_delete_A1_policy $RESP OSC ricsim_g1_1 1 4000
127 if [ $FLAVOUR == "ONAP" ]; then
130 controller_api_delete_A1_policy $RESP STD ricsim_g2_1 5000
134 store_logs "NB_"$__nb_httpx"_SB_"$__sb_httpx
140 #### TEST COMPLETE ####
144 auto_clean_containers