Updates of function test for f-release
[nonrtric.git] / test / auto-test / FTC150.sh
1 #!/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
21 TC_ONELINE_DESCR="Sample tests of the SDNC A1 controller restconf API using http/https (no agent)"
22
23 #App names to include in the test when running docker, space separated list
24 DOCKER_INCLUDED_IMAGES="RICSIM SDNC KUBEPROXY"
25 #App names to include in the test when running kubernetes, space separated list
26 KUBE_INCLUDED_IMAGES=" RICSIM SDNC KUBEPROXY"
27 #Prestarted app (not started by script) to include in the test when running kubernetes, space separated list
28 KUBE_PRESTARTED_IMAGES=" "
29
30 #Supported test environment profiles
31 SUPPORTED_PROFILES="ONAP-GUILIN ONAP-HONOLULU ONAP-ISTANBUL ONAP-JAKARTA ORAN-CHERRY ORAN-D-RELEASE ORAN-E-RELEASE ORAN-F-RELEASE"
32 #Supported run modes
33 SUPPORTED_RUNMODES="DOCKER KUBE"
34
35 . ../common/testcase_common.sh $@
36
37 setup_testenvironment
38
39 #### TEST BEGIN ####
40
41 generate_policy_uuid
42
43 #Test agent and simulator protocol versions (others are http only)
44 NB_TESTED_PROTOCOLS="HTTP HTTPS"
45 SB_TESTED_PROTOCOLS="HTTP HTTPS"
46
47 for __nb_httpx in $NB_TESTED_PROTOCOLS ; do
48     for __sb_httpx in $SB_TESTED_PROTOCOLS ; do
49
50         echo "#####################################################################"
51         echo "#####################################################################"
52         echo "### Testing SDNC using Northbound: $__nb_httpx and Southbound: $__sb_httpx"
53         echo "#####################################################################"
54         echo "#####################################################################"
55
56
57         # Clean container and start all needed containers #
58         clean_environment
59
60         start_kube_proxy
61
62         start_ric_simulators ricsim_g1 1  OSC_2.1.0
63         start_ric_simulators ricsim_g2 1  STD_1.1.3
64         if [ "$PMS_VERSION" == "V2" ]; then
65             start_ric_simulators ricsim_g3 1  STD_2.0.0
66         fi
67
68         start_sdnc
69
70         if [ $__nb_httpx == "HTTPS" ]; then
71             # "Using secure ports towards SDNC"
72             use_sdnc_https
73         else
74             #"Using non-secure ports towards SDNC"
75             use_sdnc_http
76         fi
77
78         if [ $__sb_httpx == "HTTPS" ]; then
79             # "Using secure ports towards SDNC"
80             use_simulator_https
81         else
82             #"Using non-secure ports towards SDNC"
83             use_simulator_http
84         fi
85
86         # API tests
87
88         controller_api_get_A1_policy_type 404 OSC ricsim_g1_1 1
89
90         sim_put_policy_type 201 ricsim_g1_1 1 testdata/OSC/sim_1.json
91
92
93         controller_api_get_A1_policy_ids 200 OSC ricsim_g1_1 1
94         controller_api_get_A1_policy_ids 200 STD ricsim_g2_1
95
96         controller_api_get_A1_policy_type 200 OSC ricsim_g1_1 1
97         controller_api_get_A1_policy_type 200 OSC ricsim_g1_1 1 testdata/OSC/sim_1.json
98         controller_api_get_A1_policy_type 404 OSC ricsim_g1_1 99
99
100         RESP=202
101         if [ $FLAVOUR == "ONAP" ] && [[ "$SDNC_FEATURE_LEVEL" != *"TRANS_RESP_CODE"* ]]; then
102             deviation "SDNC does not return original response code from sim"
103             RESP=200
104         fi
105         controller_api_put_A1_policy $RESP OSC ricsim_g1_1 1 4000 testdata/OSC/pi1_template.json
106         controller_api_put_A1_policy 404 OSC ricsim_g1_1 5 1001 testdata/OSC/pi1_template.json
107
108         RESP=201
109         if [ $FLAVOUR == "ONAP" ] && [[ "$SDNC_FEATURE_LEVEL" != *"TRANS_RESP_CODE"* ]]; then
110             deviation "SDNC does not return original response code from sim"
111             RESP=200
112         fi
113         controller_api_put_A1_policy $RESP STD ricsim_g2_1   5000 testdata/STD/pi1_template.json
114
115         controller_api_get_A1_policy_ids 200 OSC ricsim_g1_1 1 4000
116         controller_api_get_A1_policy_ids 200 STD ricsim_g2_1 5000
117
118         controller_api_get_A1_policy_status 200 OSC ricsim_g1_1 1 4000
119         controller_api_get_A1_policy_status 200 STD ricsim_g2_1 5000
120
121         VAL='NOT IN EFFECT'
122         controller_api_get_A1_policy_status 200 OSC ricsim_g1_1 1 4000 "$VAL" "false"
123         controller_api_get_A1_policy_status 200 STD ricsim_g2_1 5000 "UNDEFINED"
124
125         RESP=202
126         if [ $FLAVOUR == "ONAP" ] && [[ "$SDNC_FEATURE_LEVEL" != *"TRANS_RESP_CODE"* ]]; then
127             deviation "SDNC does not return original response code from sim"
128             RESP=200
129         fi
130         controller_api_delete_A1_policy $RESP OSC ricsim_g1_1 1 4000
131
132         RESP=204
133         if [ $FLAVOUR == "ONAP" ] && [[ "$SDNC_FEATURE_LEVEL" != *"TRANS_RESP_CODE"* ]]; then
134             deviation "SDNC does not return original response code from sim"
135             RESP=200
136         fi
137         controller_api_delete_A1_policy $RESP STD ricsim_g2_1 5000
138
139         check_sdnc_logs
140
141         store_logs          "NB_"$__nb_httpx"_SB_"$__sb_httpx
142
143     done
144
145 done
146
147 #### TEST COMPLETE ####
148
149 print_result
150
151 auto_clean_environment