Merge "Storing EiJobs persistently"
[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, space separated list
24 INCLUDED_IMAGES="RICSIM SDNC"
25
26 . ../common/testcase_common.sh  $@
27 . ../common/controller_api_functions.sh
28 . ../common/ricsimulator_api_functions.sh
29
30 #### TEST BEGIN ####
31
32 FLAVOUR="ORAN"
33 if [[ $SDNC_A1_CONTROLLER_IMAGE == *"onap"* ]]; then
34     FLAVOUR="ONAP"
35 fi
36
37 generate_uuid
38
39 #Test agent and simulator protocol versions (others are http only)
40 NB_TESTED_PROTOCOLS="HTTP HTTPS"
41 SB_TESTED_PROTOCOLS="HTTP HTTPS"
42
43 for __nb_httpx in $NB_TESTED_PROTOCOLS ; do
44     for __sb_httpx in $SB_TESTED_PROTOCOLS ; do
45
46         echo "#####################################################################"
47         echo "#####################################################################"
48         echo "### Testing SDNC using Northbound: $__nb_httpx and Southbound: $__sb_httpx"
49         echo "#####################################################################"
50         echo "#####################################################################"
51
52
53         # Clean container and start all needed containers #
54         clean_containers
55
56         start_ric_simulators ricsim_g1 1  OSC_2.1.0
57         start_ric_simulators ricsim_g2 1  STD_1.1.3
58         if [ "$PMS_VERSION" == "V2" ]; then
59             start_ric_simulators ricsim_g3 1  STD_2.0.0
60         fi
61
62         start_sdnc
63
64         if [ $__nb_httpx == "HTTPS" ]; then
65             # "Using secure ports towards SDNC"
66             use_sdnc_https
67         else
68             #"Using non-secure ports towards SDNC"
69             use_sdnc_http
70         fi
71
72         if [ $__sb_httpx == "HTTPS" ]; then
73             # "Using secure ports towards SDNC"
74             use_simulator_https
75         else
76             #"Using non-secure ports towards SDNC"
77             use_simulator_http
78         fi
79
80         # API tests
81
82         controller_api_get_A1_policy_type 404 OSC ricsim_g1_1 1
83
84         sim_put_policy_type 201 ricsim_g1_1 1 testdata/OSC/sim_1.json
85
86
87         controller_api_get_A1_policy_ids 200 OSC ricsim_g1_1 1
88         controller_api_get_A1_policy_ids 200 STD ricsim_g2_1
89
90         controller_api_get_A1_policy_type 200 OSC ricsim_g1_1 1
91         controller_api_get_A1_policy_type 200 OSC ricsim_g1_1 1 testdata/OSC/sim_1.json
92         controller_api_get_A1_policy_type 404 OSC ricsim_g1_1 99
93
94         RESP=202
95         if [ $FLAVOUR == "ONAP" ]; then
96             RESP=200
97         fi
98         controller_api_put_A1_policy $RESP OSC ricsim_g1_1 1 4000 testdata/OSC/pi1_template.json
99         controller_api_put_A1_policy 404 OSC ricsim_g1_1 5 1001 testdata/OSC/pi1_template.json
100
101         RESP=201
102         if [ $FLAVOUR == "ONAP" ]; then
103             RESP=200
104         fi
105         controller_api_put_A1_policy $RESP STD ricsim_g2_1   5000 testdata/STD/pi1_template.json
106
107         controller_api_get_A1_policy_ids 200 OSC ricsim_g1_1 1 4000
108         controller_api_get_A1_policy_ids 200 STD ricsim_g2_1 5000
109
110         controller_api_get_A1_policy_status 200 OSC ricsim_g1_1 1 4000
111         controller_api_get_A1_policy_status 200 STD ricsim_g2_1 5000
112
113         VAL='NOT IN EFFECT'
114         controller_api_get_A1_policy_status 200 OSC ricsim_g1_1 1 4000 "$VAL" "false"
115         controller_api_get_A1_policy_status 200 STD ricsim_g2_1 5000 "UNDEFINED"
116
117         RESP=202
118         if [ $FLAVOUR == "ONAP" ]; then
119             RESP=200
120         fi
121         controller_api_delete_A1_policy $RESP OSC ricsim_g1_1 1 4000
122
123         RESP=204
124         if [ $FLAVOUR == "ONAP" ]; then
125             RESP=200
126         fi
127         controller_api_delete_A1_policy $RESP STD ricsim_g2_1 5000
128
129         check_sdnc_logs
130
131         store_logs          "NB_"$__nb_httpx"_SB_"$__sb_httpx
132
133     done
134
135 done
136
137 #### TEST COMPLETE ####
138
139 print_result
140
141 auto_clean_containers