blob: fd30dcbbf9f1134a39afaf8bea5094425dd3bf99 [file] [log] [blame]
BjornMagnussonXA7330ced2020-09-16 10:16:45 +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
BjornMagnussonXAd8d05292020-10-02 10:54:51 +020023#App names to include in the test, space separated list
24INCLUDED_IMAGES="RICSIM SDNC"
BjornMagnussonXA7330ced2020-09-16 10:16:45 +020025
BjornMagnussonXAa8a30622020-11-12 11:03:10 +010026#SUPPORTED TEST ENV FILE
27SUPPORTED_PROFILES="ONAP-MASTER ONAP-GUILIN"
28
BjornMagnussonXA7330ced2020-09-16 10:16:45 +020029. ../common/testcase_common.sh $@
30. ../common/controller_api_functions.sh
31. ../common/ricsimulator_api_functions.sh
32
33#### TEST BEGIN ####
34
35generate_uuid
36
37#Test agent and simulator protocol versions (others are http only)
BjornMagnussonXAd8d05292020-10-02 10:54:51 +020038NB_TESTED_PROTOCOLS="HTTP HTTPS"
BjornMagnussonXA7330ced2020-09-16 10:16:45 +020039SB_TESTED_PROTOCOLS="HTTP HTTPS"
40
41for __nb_httpx in $NB_TESTED_PROTOCOLS ; do
42 for __sb_httpx in $SB_TESTED_PROTOCOLS ; do
43
44 echo "#####################################################################"
45 echo "#####################################################################"
46 echo "### Testing SDNC using Northbound: $__nb_httpx and Southbound: $__sb_httpx"
47 echo "#####################################################################"
48 echo "#####################################################################"
49
50
51 # Clean container and start all needed containers #
52 clean_containers
53
54 start_ric_simulators ricsim_g1 1 OSC_2.1.0
55 start_ric_simulators ricsim_g2 1 STD_1.1.3
56
57 start_sdnc
58
59 if [ $__nb_httpx == "HTTPS" ]; then
60 # "Using secure ports towards SDNC"
61 use_sdnc_https
62 else
63 #"Using non-secure ports towards SDNC"
64 use_sdnc_http
65 fi
66
67 if [ $__sb_httpx == "HTTPS" ]; then
68 # "Using secure ports towards SDNC"
69 use_simulator_https
70 else
71 #"Using non-secure ports towards SDNC"
72 use_simulator_http
73 fi
74
75 # API tests
76
77 controller_api_get_A1_policy_type 404 OSC ricsim_g1_1 1
78
79 sim_put_policy_type 201 ricsim_g1_1 1 testdata/OSC/sim_1.json
80
81
82 controller_api_get_A1_policy_ids 200 OSC ricsim_g1_1 1
83 controller_api_get_A1_policy_ids 200 STD ricsim_g2_1
84
85 controller_api_get_A1_policy_type 200 OSC ricsim_g1_1 1
86 controller_api_get_A1_policy_type 200 OSC ricsim_g1_1 1 testdata/OSC/sim_1.json
87 controller_api_get_A1_policy_type 404 OSC ricsim_g1_1 99
88
89 controller_api_put_A1_policy 200 OSC ricsim_g1_1 1 4000 testdata/OSC/pi1_template.json
90 controller_api_put_A1_policy 404 OSC ricsim_g1_1 5 1001 testdata/OSC/pi1_template.json
91 controller_api_put_A1_policy 200 STD ricsim_g2_1 5000 testdata/STD/pi1_template.json
92
93 controller_api_get_A1_policy_ids 200 OSC ricsim_g1_1 1 4000
94 controller_api_get_A1_policy_ids 200 STD ricsim_g2_1 5000
95
96 controller_api_get_A1_policy_status 200 OSC ricsim_g1_1 1 4000
97 controller_api_get_A1_policy_status 200 STD ricsim_g2_1 5000
98
99 VAL='NOT IN EFFECT'
100 controller_api_get_A1_policy_status 200 OSC ricsim_g1_1 1 4000 "$VAL" "false"
101 controller_api_get_A1_policy_status 200 STD ricsim_g2_1 5000 "UNDEFINED"
102
103 controller_api_delete_A1_policy 200 OSC ricsim_g1_1 1 4000
104 controller_api_delete_A1_policy 200 STD ricsim_g2_1 5000
105
106 store_logs "NB_"$__nb_httpx"_SB_"$__sb_httpx
107
108 done
109
110done
111
112#### TEST COMPLETE ####
113
114print_result
115
116auto_clean_containers