blob: 905d4f871f80be449be38c8245ac0f4d2747e197 [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
elinuxhenrik586778c2021-01-20 14:55:41 +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
26KUBE_INCLUDED_IMAGES=" RICSIM SDNC "
27#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
elinuxhenrik586778c2021-01-20 14:55:41 +010030#Supported test environment profiles
31SUPPORTED_PROFILES="ONAP-GUILIN ONAP-HONOLULU ORAN-CHERRY ORAN-DAWN"
32#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
38
39#### TEST BEGIN ####
40
BjornMagnussonXAad047782020-06-08 15:54:11 +020041generate_uuid
42
BjornMagnussonXA70e878f2020-05-11 14:11:30 +020043#Test agent and simulator protocol versions (others are http only)
BjornMagnussonXA575869c2020-09-14 21:28:54 +020044NB_TESTED_PROTOCOLS="HTTP HTTPS"
45SB_TESTED_PROTOCOLS="HTTP HTTPS"
BjornMagnussonXA70e878f2020-05-11 14:11:30 +020046
BjornMagnussonXA575869c2020-09-14 21:28:54 +020047for __nb_httpx in $NB_TESTED_PROTOCOLS ; do
48 for __sb_httpx in $SB_TESTED_PROTOCOLS ; do
BjornMagnussonXA70e878f2020-05-11 14:11:30 +020049
BjornMagnussonXA575869c2020-09-14 21:28:54 +020050 echo "#####################################################################"
51 echo "#####################################################################"
52 echo "### Testing SDNC using Northbound: $__nb_httpx and Southbound: $__sb_httpx"
53 echo "#####################################################################"
54 echo "#####################################################################"
BjornMagnussonXA70e878f2020-05-11 14:11:30 +020055
56
BjornMagnussonXA575869c2020-09-14 21:28:54 +020057 # Clean container and start all needed containers #
elinuxhenrik586778c2021-01-20 14:55:41 +010058 clean_environment
BjornMagnussonXA70e878f2020-05-11 14:11:30 +020059
BjornMagnussonXA575869c2020-09-14 21:28:54 +020060 start_ric_simulators ricsim_g1 1 OSC_2.1.0
61 start_ric_simulators ricsim_g2 1 STD_1.1.3
BjornMagnussonXA4207b832020-11-03 09:52:49 +010062 if [ "$PMS_VERSION" == "V2" ]; then
63 start_ric_simulators ricsim_g3 1 STD_2.0.0
64 fi
BjornMagnussonXA70e878f2020-05-11 14:11:30 +020065
BjornMagnussonXA575869c2020-09-14 21:28:54 +020066 start_sdnc
BjornMagnussonXA70e878f2020-05-11 14:11:30 +020067
BjornMagnussonXA575869c2020-09-14 21:28:54 +020068 if [ $__nb_httpx == "HTTPS" ]; then
69 # "Using secure ports towards SDNC"
70 use_sdnc_https
71 else
72 #"Using non-secure ports towards SDNC"
73 use_sdnc_http
74 fi
BjornMagnussonXA70e878f2020-05-11 14:11:30 +020075
BjornMagnussonXA575869c2020-09-14 21:28:54 +020076 if [ $__sb_httpx == "HTTPS" ]; then
77 # "Using secure ports towards SDNC"
78 use_simulator_https
79 else
80 #"Using non-secure ports towards SDNC"
81 use_simulator_http
82 fi
BjornMagnussonXA70e878f2020-05-11 14:11:30 +020083
BjornMagnussonXA575869c2020-09-14 21:28:54 +020084 # API tests
BjornMagnussonXA70e878f2020-05-11 14:11:30 +020085
BjornMagnussonXA575869c2020-09-14 21:28:54 +020086 controller_api_get_A1_policy_type 404 OSC ricsim_g1_1 1
87
88 sim_put_policy_type 201 ricsim_g1_1 1 testdata/OSC/sim_1.json
BjornMagnussonXA70e878f2020-05-11 14:11:30 +020089
90
BjornMagnussonXA575869c2020-09-14 21:28:54 +020091 controller_api_get_A1_policy_ids 200 OSC ricsim_g1_1 1
92 controller_api_get_A1_policy_ids 200 STD ricsim_g2_1
BjornMagnussonXA70e878f2020-05-11 14:11:30 +020093
BjornMagnussonXA575869c2020-09-14 21:28:54 +020094 controller_api_get_A1_policy_type 200 OSC ricsim_g1_1 1
95 controller_api_get_A1_policy_type 200 OSC ricsim_g1_1 1 testdata/OSC/sim_1.json
96 controller_api_get_A1_policy_type 404 OSC ricsim_g1_1 99
BjornMagnussonXA70e878f2020-05-11 14:11:30 +020097
BjornMagnussonXA39ad50e2020-10-22 09:55:25 +020098 RESP=202
99 if [ $FLAVOUR == "ONAP" ]; then
100 RESP=200
101 fi
102 controller_api_put_A1_policy $RESP OSC ricsim_g1_1 1 4000 testdata/OSC/pi1_template.json
BjornMagnussonXA575869c2020-09-14 21:28:54 +0200103 controller_api_put_A1_policy 404 OSC ricsim_g1_1 5 1001 testdata/OSC/pi1_template.json
BjornMagnussonXA39ad50e2020-10-22 09:55:25 +0200104
105 RESP=201
106 if [ $FLAVOUR == "ONAP" ]; then
107 RESP=200
108 fi
109 controller_api_put_A1_policy $RESP STD ricsim_g2_1 5000 testdata/STD/pi1_template.json
BjornMagnussonXA70e878f2020-05-11 14:11:30 +0200110
BjornMagnussonXA575869c2020-09-14 21:28:54 +0200111 controller_api_get_A1_policy_ids 200 OSC ricsim_g1_1 1 4000
112 controller_api_get_A1_policy_ids 200 STD ricsim_g2_1 5000
BjornMagnussonXA70e878f2020-05-11 14:11:30 +0200113
BjornMagnussonXA575869c2020-09-14 21:28:54 +0200114 controller_api_get_A1_policy_status 200 OSC ricsim_g1_1 1 4000
115 controller_api_get_A1_policy_status 200 STD ricsim_g2_1 5000
BjornMagnussonXA70e878f2020-05-11 14:11:30 +0200116
BjornMagnussonXA575869c2020-09-14 21:28:54 +0200117 VAL='NOT IN EFFECT'
118 controller_api_get_A1_policy_status 200 OSC ricsim_g1_1 1 4000 "$VAL" "false"
119 controller_api_get_A1_policy_status 200 STD ricsim_g2_1 5000 "UNDEFINED"
BjornMagnussonXA70e878f2020-05-11 14:11:30 +0200120
BjornMagnussonXA39ad50e2020-10-22 09:55:25 +0200121 RESP=202
122 if [ $FLAVOUR == "ONAP" ]; then
123 RESP=200
124 fi
125 controller_api_delete_A1_policy $RESP OSC ricsim_g1_1 1 4000
126
127 RESP=204
128 if [ $FLAVOUR == "ONAP" ]; then
129 RESP=200
130 fi
131 controller_api_delete_A1_policy $RESP STD ricsim_g2_1 5000
BjornMagnussonXA70e878f2020-05-11 14:11:30 +0200132
BjornMagnussonXAf38e1e82020-10-11 23:05:02 +0200133 check_sdnc_logs
134
BjornMagnussonXA575869c2020-09-14 21:28:54 +0200135 store_logs "NB_"$__nb_httpx"_SB_"$__sb_httpx
136
137 done
BjornMagnussonXA70e878f2020-05-11 14:11:30 +0200138
139done
140
141#### TEST COMPLETE ####
142
143print_result
144
elinuxhenrik586778c2021-01-20 14:55:41 +0100145auto_clean_environment