blob: 1cd2a33ab3c3441c5eb26d2b94ae338c31594d33 [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
BjornMagnussonXAbbd2e9d2020-05-27 21:24:06 +020023#App names to exclude checking pulling images for, space separated list
24EXCLUDED_IMAGES="PA CP SDNC_ONAP"
25
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
BjornMagnussonXAad047782020-06-08 15:54:11 +020032generate_uuid
33
BjornMagnussonXA70e878f2020-05-11 14:11:30 +020034#Test agent and simulator protocol versions (others are http only)
35TESTED_PROTOCOLS="HTTP HTTPS"
36
37for __httpx in $TESTED_PROTOCOLS ; do
38
39 echo "#####################################################################"
40 echo "#####################################################################"
41 echo "### Testing SDNC using: $__httpx"
42 echo "#####################################################################"
43 echo "#####################################################################"
44
45
46 # Clean container and start all needed containers #
47 clean_containers
48
49 start_ric_simulators ricsim_g1 1 OSC_2.1.0
50 start_ric_simulators ricsim_g2 1 STD_1.1.3
51
52 start_sdnc
53
54 if [ $__httpx == "HTTPS" ]; then
55 # "Using secure ports towards SDNC"
56 use_sdnc_https
57 else
58 #"Using non-secure ports towards SDNC"
59 use_sdnc_http
60 fi
61
62 # API tests
63
64 controller_api_get_A1_policy_type 404 OSC ricsim_g1_1 1
65
66 sim_put_policy_type 201 ricsim_g1_1 1 testdata/OSC/sim_1.json
67
68
69 controller_api_get_A1_policy_ids 200 OSC ricsim_g1_1 1
70 controller_api_get_A1_policy_ids 200 STD ricsim_g2_1
71
72 controller_api_get_A1_policy_type 200 OSC ricsim_g1_1 1
73 controller_api_get_A1_policy_type 200 OSC ricsim_g1_1 1 testdata/OSC/sim_1.json
74 controller_api_get_A1_policy_type 404 OSC ricsim_g1_1 99
75
76 controller_api_put_A1_policy 202 OSC ricsim_g1_1 1 4000 testdata/OSC/pi1_template.json
77 controller_api_put_A1_policy 404 OSC ricsim_g1_1 5 1001 testdata/OSC/pi1_template.json
78 controller_api_put_A1_policy 201 STD ricsim_g2_1 5000 testdata/STD/pi1_template.json
79
80 controller_api_get_A1_policy_ids 200 OSC ricsim_g1_1 1 4000
81 controller_api_get_A1_policy_ids 200 STD ricsim_g2_1 5000
82
83 controller_api_get_A1_policy_status 200 OSC ricsim_g1_1 1 4000
84 controller_api_get_A1_policy_status 200 STD ricsim_g2_1 5000
85
86 VAL='NOT IN EFFECT'
87 controller_api_get_A1_policy_status 200 OSC ricsim_g1_1 1 4000 "$VAL" "false"
88 controller_api_get_A1_policy_status 200 STD ricsim_g2_1 5000 "UNDEFINED"
89
90 controller_api_delete_A1_policy 202 OSC ricsim_g1_1 1 4000
91 controller_api_delete_A1_policy 204 STD ricsim_g2_1 5000
92
93 store_logs $__httpx
94
95done
96
97#### TEST COMPLETE ####
98
99print_result
100
101auto_clean_containers