8143de30d2829bb5e442e432f0b4f4d670588d46
[nonrtric.git] / test / auto-test / FTC2002.sh
1 #!/usr/bin/env 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 TC_ONELINE_DESCR="Testing southbound proxy for SDNC - docker only"
21
22 #App names to include in the test when running docker, space separated list
23 DOCKER_INCLUDED_IMAGES="RICSIM SDNC HTTPPROXY KUBEPROXY"
24 #App names to include in the test when running kubernetes, space separated list
25 KUBE_INCLUDED_IMAGES=""
26 #Prestarted app (not started by script) to include in the test when running kubernetes, space separated list
27 KUBE_PRESTARTED_IMAGES=" "
28
29 #Ignore image in DOCKER_INCLUDED_IMAGES, KUBE_INCLUDED_IMAGES if
30 #the image is not configured in the supplied env_file
31 #Used for images not applicable to all supported profile
32 CONDITIONALLY_IGNORED_IMAGES=""
33
34 #Supported test environment profiles
35 SUPPORTED_PROFILES="ONAP-ISTANBUL ONAP-JAKARTA ONAP-KOHN ONAP-LONDON "
36 #Supported run modes
37 SUPPORTED_RUNMODES="DOCKER"
38
39 . ../common/testcase_common.sh $@
40
41 setup_testenvironment
42
43 #### TEST BEGIN ####
44
45 generate_policy_uuid
46
47 #Test a1pms and simulator protocol versions (others are http only)
48 NB_TESTED_PROTOCOLS="HTTP HTTPS"
49 SB_TESTED_PROTOCOLS="HTTP HTTPS"
50
51 for __nb_httpx in $NB_TESTED_PROTOCOLS ; do
52     for __sb_httpx in $SB_TESTED_PROTOCOLS ; do
53
54         echo "#####################################################################"
55         echo "#####################################################################"
56         echo "### Testing SDNC using Northbound: $__nb_httpx and Southbound: $__sb_httpx"
57         echo "#####################################################################"
58         echo "#####################################################################"
59
60         if [ $__sb_httpx == "HTTPS" ]; then
61             deviation "Southbound https proxy is currently not supported"
62             break
63         fi
64
65
66         # Clean container and start all needed containers #
67         clean_environment
68
69         start_kube_proxy
70
71         start_http_proxy
72
73         start_ric_simulators ricsim_g1 1  OSC_2.1.0
74         start_ric_simulators ricsim_g2 1  STD_1.1.3
75         if [ "$A1PMS_VERSION" == "V2" ]; then
76             start_ric_simulators ricsim_g3 1  STD_2.0.0
77         fi
78
79         start_sdnc
80
81         if [ $__nb_httpx == "HTTPS" ]; then
82             # "Using secure ports towards SDNC"
83             use_sdnc_https
84         else
85             #"Using non-secure ports towards SDNC"
86             use_sdnc_http
87         fi
88
89         if [ $__sb_httpx == "HTTPS" ]; then
90             # "Using secure ports towards SDNC"
91             use_simulator_https
92             use_http_proxy_https
93         else
94             #"Using non-secure ports towards SDNC"
95             use_simulator_http
96             use_http_proxy_http
97         fi
98
99         echo -e $BOLD"Configure proxy in SDNC"$EBOLD
100         echo ""
101
102         if [ $__sb_httpx == "HTTPS" ]; then
103             echo "
104             sed  -i 's/a1Mediator.proxy.url=/a1Mediator.proxy.url=https:\/\/httpproxy:8433/g' /opt/onap/ccsdk/data/properties/a1-adapter-api-dg.properties
105             " | docker exec -i a1controller bash
106         else
107             echo "
108             sed  -i 's/a1Mediator.proxy.url=/a1Mediator.proxy.url=http:\/\/httpproxy:8080/g' /opt/onap/ccsdk/data/properties/a1-adapter-api-dg.properties
109             " | docker exec -i a1controller bash
110         fi
111
112         # Restart SDNC to use the updated config
113         stop_sdnc
114         start_stopped_sdnc
115
116         # API tests
117
118         controller_api_get_A1_policy_type 404 OSC ricsim_g1_1 1
119
120         sim_put_policy_type 201 ricsim_g1_1 1 testdata/OSC/sim_1.json
121
122
123         controller_api_get_A1_policy_ids 200 OSC ricsim_g1_1 1
124         controller_api_get_A1_policy_ids 200 STD ricsim_g2_1
125
126         controller_api_get_A1_policy_type 200 OSC ricsim_g1_1 1
127         controller_api_get_A1_policy_type 200 OSC ricsim_g1_1 1 testdata/OSC/sim_1.json
128         controller_api_get_A1_policy_type 404 OSC ricsim_g1_1 99
129
130         controller_api_put_A1_policy 202 OSC ricsim_g1_1 1 4000 testdata/OSC/pi1_template.json
131         controller_api_put_A1_policy 404 OSC ricsim_g1_1 5 1001 testdata/OSC/pi1_template.json
132
133         controller_api_put_A1_policy 201 STD ricsim_g2_1   5000 testdata/STD/pi1_template.json
134
135         controller_api_get_A1_policy_ids 200 OSC ricsim_g1_1 1 4000
136         controller_api_get_A1_policy_ids 200 STD ricsim_g2_1 5000
137
138         controller_api_get_A1_policy_status 200 OSC ricsim_g1_1 1 4000
139         controller_api_get_A1_policy_status 200 STD ricsim_g2_1 5000
140
141         VAL='NOT IN EFFECT'
142         controller_api_get_A1_policy_status 200 OSC ricsim_g1_1 1 4000 "$VAL" "false"
143         controller_api_get_A1_policy_status 200 STD ricsim_g2_1 5000 "UNDEFINED"
144
145
146         deviation "SDNC does not return original response code from sim"
147         controller_api_delete_A1_policy 202 OSC ricsim_g1_1 1 4000
148
149         deviation "SDNC does not return original response code from sim"
150         controller_api_delete_A1_policy 204 STD ricsim_g2_1 5000
151
152         sim_contains_str ricsim_g1_1 remote_hosts httpproxy.nonrtric-docker-net
153         sim_contains_str ricsim_g2_1 remote_hosts httpproxy.nonrtric-docker-net
154
155         check_sdnc_logs
156
157         store_logs          "NB_"$__nb_httpx"_SB_"$__sb_httpx
158
159     done
160
161 done
162
163 #### TEST COMPLETE ####
164
165 print_result
166
167 auto_clean_environment