Function test updates
[nonrtric.git] / test / auto-test / FTC150.sh
1 #!/bin/bash
2
3 #  ============LICENSE_START===============================================
4 #  Copyright (C) 2020-2023 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 a1pms)"
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 #Ignore image in DOCKER_INCLUDED_IMAGES, KUBE_INCLUDED_IMAGES if
31 #the image is not configured in the supplied env_file
32 #Used for images not applicable to all supported profile
33 CONDITIONALLY_IGNORED_IMAGES=""
34
35 #Supported test environment profiles
36 SUPPORTED_PROFILES="ONAP-JAKARTA ONAP-KOHN ONAP-LONDON  ORAN-F-RELEASE ORAN-G-RELEASE ORAN-H-RELEASE"
37 #Supported run modes
38 SUPPORTED_RUNMODES="DOCKER KUBE"
39
40 . ../common/testcase_common.sh $@
41
42 setup_testenvironment
43
44 #### TEST BEGIN ####
45
46 sim_generate_policy_uuid
47
48 #Test a1pms and simulator protocol versions (others are http only)
49 NB_TESTED_PROTOCOLS="HTTP HTTPS"
50 SB_TESTED_PROTOCOLS="HTTP HTTPS"
51
52 for __nb_httpx in $NB_TESTED_PROTOCOLS ; do
53     for __sb_httpx in $SB_TESTED_PROTOCOLS ; do
54
55         echo "#####################################################################"
56         echo "#####################################################################"
57         echo "### Testing SDNC using Northbound: $__nb_httpx and Southbound: $__sb_httpx"
58         echo "#####################################################################"
59         echo "#####################################################################"
60
61
62         # Clean container and start all needed containers #
63         clean_environment
64
65         start_kube_proxy
66
67         start_ric_simulators ricsim_g1 1  OSC_2.1.0
68         start_ric_simulators ricsim_g2 1  STD_1.1.3
69         start_ric_simulators ricsim_g3 1  STD_2.0.0
70
71
72         if [ $__nb_httpx == "HTTPS" ]; then
73             # "Using secure ports towards SDNC"
74             if [[ "$SDNC_FEATURE_LEVEL" == *"NO_NB_HTTPS"* ]]; then
75                 deviation "SDNC does not support NB https"
76                 use_sdnc_http
77             else
78                 use_sdnc_https
79                 fi
80         else
81             #"Using non-secure ports towards SDNC"
82             use_sdnc_http
83         fi
84
85         start_sdnc
86         controller_api_wait_for_status_ok 200 ricsim_g1_1
87
88         if [ $__sb_httpx == "HTTPS" ]; then
89             # "Using secure ports towards SDNC"
90             use_simulator_https
91         else
92             #"Using non-secure ports towards SDNC"
93             use_simulator_http
94         fi
95
96         # API tests
97
98         controller_api_get_A1_policy_type 404 OSC ricsim_g1_1 1
99
100         sim_put_policy_type 201 ricsim_g1_1 1 testdata/OSC/sim_1.json
101
102
103         controller_api_get_A1_policy_ids 200 OSC ricsim_g1_1 1
104         controller_api_get_A1_policy_ids 200 STD ricsim_g2_1
105
106         controller_api_get_A1_policy_type 200 OSC ricsim_g1_1 1
107         controller_api_get_A1_policy_type 200 OSC ricsim_g1_1 1 testdata/OSC/sim_1.json
108         controller_api_get_A1_policy_type 404 OSC ricsim_g1_1 99
109
110         RESP=202
111         if [ $FLAVOUR == "ONAP" ] && [[ "$SDNC_FEATURE_LEVEL" != *"TRANS_RESP_CODE"* ]]; then
112             deviation "SDNC does not return original response code from sim"
113             RESP=200
114         fi
115         controller_api_put_A1_policy $RESP OSC ricsim_g1_1 1 4000 testdata/OSC/pi1_template.json
116         controller_api_put_A1_policy 404 OSC ricsim_g1_1 5 1001 testdata/OSC/pi1_template.json
117
118         RESP=201
119         if [ $FLAVOUR == "ONAP" ] && [[ "$SDNC_FEATURE_LEVEL" != *"TRANS_RESP_CODE"* ]]; then
120             deviation "SDNC does not return original response code from sim"
121             RESP=200
122         fi
123         controller_api_put_A1_policy $RESP STD ricsim_g2_1   5000 testdata/STD/pi1_template.json
124
125         controller_api_get_A1_policy_ids 200 OSC ricsim_g1_1 1 4000
126         controller_api_get_A1_policy_ids 200 STD ricsim_g2_1 5000
127
128         controller_api_get_A1_policy_status 200 OSC ricsim_g1_1 1 4000
129         controller_api_get_A1_policy_status 200 STD ricsim_g2_1 5000
130
131         VAL='NOT IN EFFECT'
132         controller_api_get_A1_policy_status 200 OSC ricsim_g1_1 1 4000 "$VAL" "false"
133         controller_api_get_A1_policy_status 200 STD ricsim_g2_1 5000 "UNDEFINED"
134
135         RESP=202
136         if [ $FLAVOUR == "ONAP" ] && [[ "$SDNC_FEATURE_LEVEL" != *"TRANS_RESP_CODE"* ]]; then
137             deviation "SDNC does not return original response code from sim"
138             RESP=200
139         fi
140         controller_api_delete_A1_policy $RESP OSC ricsim_g1_1 1 4000
141
142         RESP=204
143         if [ $FLAVOUR == "ONAP" ] && [[ "$SDNC_FEATURE_LEVEL" != *"TRANS_RESP_CODE"* ]]; then
144             deviation "SDNC does not return original response code from sim"
145             RESP=200
146         fi
147         controller_api_delete_A1_policy $RESP STD ricsim_g2_1 5000
148
149         check_sdnc_logs
150
151         store_logs          "NB_"$__nb_httpx"_SB_"$__sb_httpx
152
153     done
154
155 done
156
157 #### TEST COMPLETE ####
158
159 print_result
160
161 auto_clean_environment