blob: bb527be33a75695f42eba746bf8fd1bd121932c3 [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
BjornMagnussonXAf38e1e82020-10-11 23:05:02 +020023#App names to include in the test, space separated list
24INCLUDED_IMAGES="RICSIM SDNC"
BjornMagnussonXAbbd2e9d2020-05-27 21:24:06 +020025
BjornMagnussonXA70e878f2020-05-11 14:11:30 +020026. ../common/testcase_common.sh $@
27. ../common/controller_api_functions.sh
28. ../common/ricsimulator_api_functions.sh
29
30#### TEST BEGIN ####
31
BjornMagnussonXA39ad50e2020-10-22 09:55:25 +020032FLAVOUR="ORAN"
33if [[ $SDNC_A1_CONTROLLER_IMAGE == *"onap"* ]]; then
34 FLAVOUR="ONAP"
35fi
36
BjornMagnussonXAad047782020-06-08 15:54:11 +020037generate_uuid
38
BjornMagnussonXA70e878f2020-05-11 14:11:30 +020039#Test agent and simulator protocol versions (others are http only)
BjornMagnussonXA575869c2020-09-14 21:28:54 +020040NB_TESTED_PROTOCOLS="HTTP HTTPS"
41SB_TESTED_PROTOCOLS="HTTP HTTPS"
BjornMagnussonXA70e878f2020-05-11 14:11:30 +020042
BjornMagnussonXA575869c2020-09-14 21:28:54 +020043for __nb_httpx in $NB_TESTED_PROTOCOLS ; do
44 for __sb_httpx in $SB_TESTED_PROTOCOLS ; do
BjornMagnussonXA70e878f2020-05-11 14:11:30 +020045
BjornMagnussonXA575869c2020-09-14 21:28:54 +020046 echo "#####################################################################"
47 echo "#####################################################################"
48 echo "### Testing SDNC using Northbound: $__nb_httpx and Southbound: $__sb_httpx"
49 echo "#####################################################################"
50 echo "#####################################################################"
BjornMagnussonXA70e878f2020-05-11 14:11:30 +020051
52
BjornMagnussonXA575869c2020-09-14 21:28:54 +020053 # Clean container and start all needed containers #
54 clean_containers
BjornMagnussonXA70e878f2020-05-11 14:11:30 +020055
BjornMagnussonXA575869c2020-09-14 21:28:54 +020056 start_ric_simulators ricsim_g1 1 OSC_2.1.0
57 start_ric_simulators ricsim_g2 1 STD_1.1.3
BjornMagnussonXA70e878f2020-05-11 14:11:30 +020058
BjornMagnussonXA575869c2020-09-14 21:28:54 +020059 start_sdnc
BjornMagnussonXA70e878f2020-05-11 14:11:30 +020060
BjornMagnussonXA575869c2020-09-14 21:28:54 +020061 if [ $__nb_httpx == "HTTPS" ]; then
62 # "Using secure ports towards SDNC"
63 use_sdnc_https
64 else
65 #"Using non-secure ports towards SDNC"
66 use_sdnc_http
67 fi
BjornMagnussonXA70e878f2020-05-11 14:11:30 +020068
BjornMagnussonXA575869c2020-09-14 21:28:54 +020069 if [ $__sb_httpx == "HTTPS" ]; then
70 # "Using secure ports towards SDNC"
71 use_simulator_https
72 else
73 #"Using non-secure ports towards SDNC"
74 use_simulator_http
75 fi
BjornMagnussonXA70e878f2020-05-11 14:11:30 +020076
BjornMagnussonXA575869c2020-09-14 21:28:54 +020077 # API tests
BjornMagnussonXA70e878f2020-05-11 14:11:30 +020078
BjornMagnussonXA575869c2020-09-14 21:28:54 +020079 controller_api_get_A1_policy_type 404 OSC ricsim_g1_1 1
80
81 sim_put_policy_type 201 ricsim_g1_1 1 testdata/OSC/sim_1.json
BjornMagnussonXA70e878f2020-05-11 14:11:30 +020082
83
BjornMagnussonXA575869c2020-09-14 21:28:54 +020084 controller_api_get_A1_policy_ids 200 OSC ricsim_g1_1 1
85 controller_api_get_A1_policy_ids 200 STD ricsim_g2_1
BjornMagnussonXA70e878f2020-05-11 14:11:30 +020086
BjornMagnussonXA575869c2020-09-14 21:28:54 +020087 controller_api_get_A1_policy_type 200 OSC ricsim_g1_1 1
88 controller_api_get_A1_policy_type 200 OSC ricsim_g1_1 1 testdata/OSC/sim_1.json
89 controller_api_get_A1_policy_type 404 OSC ricsim_g1_1 99
BjornMagnussonXA70e878f2020-05-11 14:11:30 +020090
BjornMagnussonXA39ad50e2020-10-22 09:55:25 +020091 RESP=202
92 if [ $FLAVOUR == "ONAP" ]; then
93 RESP=200
94 fi
95 controller_api_put_A1_policy $RESP OSC ricsim_g1_1 1 4000 testdata/OSC/pi1_template.json
BjornMagnussonXA575869c2020-09-14 21:28:54 +020096 controller_api_put_A1_policy 404 OSC ricsim_g1_1 5 1001 testdata/OSC/pi1_template.json
BjornMagnussonXA39ad50e2020-10-22 09:55:25 +020097
98 RESP=201
99 if [ $FLAVOUR == "ONAP" ]; then
100 RESP=200
101 fi
102 controller_api_put_A1_policy $RESP STD ricsim_g2_1 5000 testdata/STD/pi1_template.json
BjornMagnussonXA70e878f2020-05-11 14:11:30 +0200103
BjornMagnussonXA575869c2020-09-14 21:28:54 +0200104 controller_api_get_A1_policy_ids 200 OSC ricsim_g1_1 1 4000
105 controller_api_get_A1_policy_ids 200 STD ricsim_g2_1 5000
BjornMagnussonXA70e878f2020-05-11 14:11:30 +0200106
BjornMagnussonXA575869c2020-09-14 21:28:54 +0200107 controller_api_get_A1_policy_status 200 OSC ricsim_g1_1 1 4000
108 controller_api_get_A1_policy_status 200 STD ricsim_g2_1 5000
BjornMagnussonXA70e878f2020-05-11 14:11:30 +0200109
BjornMagnussonXA575869c2020-09-14 21:28:54 +0200110 VAL='NOT IN EFFECT'
111 controller_api_get_A1_policy_status 200 OSC ricsim_g1_1 1 4000 "$VAL" "false"
112 controller_api_get_A1_policy_status 200 STD ricsim_g2_1 5000 "UNDEFINED"
BjornMagnussonXA70e878f2020-05-11 14:11:30 +0200113
BjornMagnussonXA39ad50e2020-10-22 09:55:25 +0200114 RESP=202
115 if [ $FLAVOUR == "ONAP" ]; then
116 RESP=200
117 fi
118 controller_api_delete_A1_policy $RESP OSC ricsim_g1_1 1 4000
119
120 RESP=204
121 if [ $FLAVOUR == "ONAP" ]; then
122 RESP=200
123 fi
124 controller_api_delete_A1_policy $RESP STD ricsim_g2_1 5000
BjornMagnussonXA70e878f2020-05-11 14:11:30 +0200125
BjornMagnussonXAf38e1e82020-10-11 23:05:02 +0200126 check_sdnc_logs
127
BjornMagnussonXA575869c2020-09-14 21:28:54 +0200128 store_logs "NB_"$__nb_httpx"_SB_"$__sb_httpx
129
130 done
BjornMagnussonXA70e878f2020-05-11 14:11:30 +0200131
132done
133
134#### TEST COMPLETE ####
135
136print_result
137
138auto_clean_containers