Adapted test scripts to changes in PMS 2.0
[nonrtric.git] / test / auto-test / FTC10.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 TC_ONELINE_DESCR="Basic use case, register service, create/update policy, delete policy, de-register service using both STD and OSC interface while mixing REST and Dmaap"
21
22 #App names to include in the test, space separated list
23 INCLUDED_IMAGES="CBS CONSUL CP CR MR PA RICSIM"
24
25 #SUPPORTED TEST ENV FILE
26 SUPPORTED_PROFILES="ONAP-MASTER ONAP-GUILIN ORAN-MASTER"
27
28 . ../common/testcase_common.sh $@
29 . ../common/agent_api_functions.sh
30 . ../common/ricsimulator_api_functions.sh
31
32 #### TEST BEGIN ####
33
34 generate_uuid
35
36 use_simulator_http
37 use_mr_http
38 use_agent_rest_http
39
40
41 clean_containers
42
43 start_ric_simulators  ricsim_g1 3 OSC_2.1.0
44
45 start_ric_simulators  ricsim_g2 5 STD_1.1.3
46
47 if [ "$PMS_VERSION" == "V2" ]; then
48     start_ric_simulators ricsim_g3 1  STD_2.0.0
49 fi
50
51 start_mr
52
53 start_consul_cbs
54
55 prepare_consul_config      NOSDNC  ".consul_config.json"
56 consul_config_app                  ".consul_config.json"
57
58 start_control_panel
59
60 start_policy_agent
61
62 set_agent_debug
63
64 use_agent_rest_http
65
66 api_get_status 200
67
68 sim_print ricsim_g1_1 interface
69
70 sim_print ricsim_g2_1 interface
71
72 if [ "$PMS_VERSION" == "V2" ]; then
73     sim_print ricsim_g3_1 interface
74 fi
75
76 sim_put_policy_type 201 ricsim_g1_1 1 testdata/OSC/sim_1.json
77
78 if [ "$PMS_VERSION" == "V2" ]; then
79     api_equal json:policy-types 2 60
80 else
81     api_equal json:policy_types 2 60
82 fi
83
84 # Create policies
85
86 if [ "$PMS_VERSION" == "V2" ]; then
87     notificationurl=$CR_PATH"/test"
88 else
89     notificationurl=""
90 fi
91
92 use_agent_rest_http
93
94 api_put_service 201 "service1" 3600 "$CR_PATH/1"
95
96 api_put_policy 201 "service1" ricsim_g1_1 1 2000 NOTRANSIENT $notificationurl testdata/OSC/pi1_template.json 1
97
98 sim_equal ricsim_g1_1 num_instances 1
99
100
101 use_agent_dmaap_http
102
103 api_put_policy 201 "service1" ricsim_g1_1 1 3000 NOTRANSIENT $notificationurl testdata/OSC/pi1_template.json 1
104
105 sim_equal ricsim_g1_1 num_instances 2
106
107
108 use_agent_rest_http
109
110 api_put_policy 201 "service1" ricsim_g2_1 NOTYPE 2100 NOTRANSIENT $notificationurl testdata/STD/pi1_template.json 1
111
112 sim_equal ricsim_g2_1 num_instances 1
113
114
115 use_agent_dmaap_http
116
117 api_put_policy 201 "service1" ricsim_g2_1 NOTYPE 3100 NOTRANSIENT $notificationurl testdata/STD/pi1_template.json 1
118
119 sim_equal ricsim_g2_1 num_instances 2
120
121
122 #Update policies
123 use_agent_rest_http
124
125 api_put_service 200 "service1" 3600 "$CR_PATH/1"
126
127 api_put_policy 200 "service1" ricsim_g1_1 1 2000 NOTRANSIENT $notificationurl testdata/OSC/pi1_template.json 1
128
129 sim_equal ricsim_g1_1 num_instances 2
130
131
132 use_agent_dmaap_http
133
134 api_put_policy 200 "service1" ricsim_g1_1 1 3000 NOTRANSIENT $notificationurl testdata/OSC/pi1_template.json 1
135
136 sim_equal ricsim_g1_1 num_instances 2
137
138
139 use_agent_rest_http
140
141
142 api_put_policy 200 "service1" ricsim_g2_1 NOTYPE 2100 NOTRANSIENT $notificationurl testdata/STD/pi1_template.json 1
143
144 sim_equal ricsim_g2_1 num_instances 2
145
146
147 use_agent_dmaap_http
148
149 api_put_policy 200 "service1" ricsim_g2_1 NOTYPE 3100 NOTRANSIENT $notificationurl testdata/STD/pi1_template.json 1
150
151 sim_equal ricsim_g2_1 num_instances 2
152
153 # Check policies
154 if [ "$PMS_VERSION" == "V2" ]; then
155     api_get_policy 200 2000 testdata/OSC/pi1_template.json "service1" ricsim_g1_1 1 false $notificationurl
156     api_get_policy 200 3000 testdata/OSC/pi1_template.json "service1" ricsim_g1_1 1 false $notificationurl
157     api_get_policy 200 2100 testdata/STD/pi1_template.json "service1" ricsim_g2_1 NOTYPE false $notificationurl
158     api_get_policy 200 3100 testdata/STD/pi1_template.json "service1" ricsim_g2_1 NOTYPE false $notificationurl
159 else
160     api_get_policy 200 2000 testdata/OSC/pi1_template.json
161     api_get_policy 200 3000 testdata/OSC/pi1_template.json
162     api_get_policy 200 2100 testdata/STD/pi1_template.json
163     api_get_policy 200 3100 testdata/STD/pi1_template.json
164 fi
165
166 # Remove policies
167
168 use_agent_dmaap_http
169 api_delete_policy 204 2000
170 use_agent_rest_http
171 api_delete_policy 204 3000
172 use_agent_dmaap_http
173 api_delete_policy 204 2100
174 use_agent_rest_http
175 api_delete_policy 204 3100
176
177 sim_equal ricsim_g1_1 num_instances 0
178 sim_equal ricsim_g2_1 num_instances 0
179
180 if [ "$PMS_VERSION" == "V2" ]; then
181     sim_equal ricsim_g3_1 num_instances 0
182 fi
183
184 # Check remote host access to simulator
185
186 sim_contains_str ricsim_g1_1 remote_hosts "policy-agent"
187 sim_contains_str ricsim_g2_1 remote_hosts "policy-agent"
188 if [ "$PMS_VERSION" == "V2" ]; then
189     sim_contains_str ricsim_g3_1 remote_hosts "policy-agent"
190 fi
191
192 # Check policy removal
193 use_agent_rest_http
194 api_get_policy 404 2000
195 api_get_policy 404 3000
196 api_get_policy 404 2100
197 api_get_policy 404 3100
198
199 # Remove the service
200 use_agent_dmaap_http
201 api_delete_services 204 "service1"
202
203 api_get_services 404 "service1"
204
205 check_policy_agent_logs
206
207 #### TEST COMPLETE ####
208
209 store_logs          END
210
211 print_result
212
213 auto_clean_containers