8427ad140e5cd7d97bcd79b43c26102866500f68
[nonrtric.git] / test / auto-test / FTC110.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="Testing of service registration timeouts and keepalive"
22
23 #App names to exclude checking pulling images for, space separated list
24 EXCLUDED_IMAGES="SDMC SDNC_ONAP"
25
26 . ../common/testcase_common.sh  $@
27 . ../common/agent_api_functions.sh
28 . ../common/ricsimulator_api_functions.sh
29
30 generate_uuid
31
32 #Local vars in test script
33 ##########################
34 # Path to callback receiver
35 CR_PATH="http://$CR_APP_NAME:$CR_EXTERNAL_PORT/callbacks"
36
37
38 #### TEST BEGIN ####
39
40 clean_containers
41
42 start_ric_simulators ricsim_g1 1  OSC_2.1.0
43
44 start_mr
45
46 start_cr
47
48 start_consul_cbs
49
50 prepare_consul_config      NOSDNC  ".consul_config.json"
51 consul_config_app                  ".consul_config.json"
52
53 start_control_panel
54
55 start_policy_agent
56
57 set_agent_debug
58
59 use_agent_rest_http
60
61 #Verify no callbacks or dmaap messages has been sent
62 cr_equal received_callbacks 0
63 mr_equal requests_submitted 0
64
65 #Check agent alive
66 api_get_status 200
67
68 #Print simulator interface version
69 sim_print ricsim_g1_1 interface
70
71 api_put_service 201 "service1" 15 "$CR_PATH/service1"
72
73 api_get_services 200 "service1" "service1" 15 "$CR_PATH/service1"
74
75 api_put_service 201 "service2" 120 "$CR_PATH/service2"
76
77 api_get_services 200 "service2" "service2" 120 "$CR_PATH/service2"
78
79 api_put_service 200 "service1" 50 "$CR_PATH/service1"
80 api_put_service 200 "service2" 180 "$CR_PATH/service2"
81
82 api_get_services 200 "service1" "service1" 50 "$CR_PATH/service1"
83 api_get_services 200 "service2" "service2" 180 "$CR_PATH/service2"
84
85 api_get_service_ids 200 "service1" "service2"
86
87 sleep_wait 30 "Waiting for keep alive timeout"
88
89 api_get_services 200 "service1" "service1" 50 "$CR_PATH/service1"
90 api_get_services 200 "service2" "service2" 180 "$CR_PATH/service2"
91
92 sleep_wait 100 "Waiting for keep alive timeout"
93
94 api_get_services 404 "service1"
95 api_get_services 200 "service2" "service2" 180 "$CR_PATH/service2"
96
97 api_delete_services 204 "service2"
98
99 api_get_services 404 "service1"
100 api_get_services 404 "service2"
101
102 api_put_service 201 "service3" 60 "$CR_PATH/service3"
103
104 api_get_services 200 "service3" "service3" 60 "$CR_PATH/service3"
105
106 sleep_wait 30 "Waiting for keep alive timeout"
107
108 api_put_service 200 "service3" 60 "$CR_PATH/service3"
109
110 sleep_wait 100 "Waiting for keep alive timeout"
111
112 api_get_services 404 "service3"
113
114 api_put_service 201 "service4" 120 "$CR_PATH/service4"
115
116 sleep_wait 60 "Waiting for keep alive timeout"
117
118 api_get_services 200 "service4" "service4" 120 "$CR_PATH/service4"
119
120 api_put_services_keepalive 200 "service4"
121
122 sleep_wait 90 "Waiting for keep alive timeout"
123
124 api_get_services 200 "service4" "service4" 120 "$CR_PATH/service4"
125
126 api_delete_services 204 "service4"
127
128 api_get_services 404 "service4"
129
130 api_get_services 404 "service1"
131 api_get_services 404 "service2"
132 api_get_services 404 "service3"
133
134 api_get_service_ids 200
135
136 api_delete_services 404 "service1"
137 api_delete_services 404 "service2"
138 api_delete_services 404 "service3"
139 api_delete_services 404 "service4"
140
141 api_put_services_keepalive 404 "service1"
142 api_put_services_keepalive 404 "service2"
143 api_put_services_keepalive 404 "service3"
144 api_put_services_keepalive 404 "service4"
145
146 # Policy delete after timeout
147 api_put_service 201 "service10" 600 "$CR_PATH/service10"
148
149 sim_put_policy_type 201 ricsim_g1_1 1 testdata/OSC/sim_1.json
150
151 api_equal json:rics 1 60
152
153 api_equal json:policy_schemas 1 120
154
155 api_equal json:policy_types 1
156
157 api_equal json:policies 0
158
159 api_put_policy 201 "service10" ricsim_g1_1 1 5000 NOTRANSIENT testdata/OSC/pi1_template.json
160
161 api_equal json:policies 1
162
163 sim_equal ricsim_g1_1 num_instances 1
164
165 api_put_policy 201 "service10" ricsim_g1_1 1 5001 true testdata/OSC/pi1_template.json
166
167 api_equal json:policies 2
168
169 sim_equal ricsim_g1_1 num_instances 2
170
171 sim_post_delete_instances 200 ricsim_g1_1
172
173 #Wait for recreate of non transient policy
174 api_equal json:policies 1 180
175
176 sim_equal ricsim_g1_1 num_instances 1
177
178 api_put_service 200 "service10" 10 "$CR_PATH/service10"
179
180 #Wait for service expiry
181 api_equal json:policies 0 120
182
183 sim_equal ricsim_g1_1 num_instances 0
184
185
186 api_get_service_ids 200
187
188 deviation "TR18 Agents sends callback with empty body"
189 cr_equal received_callbacks 0
190 mr_equal requests_submitted 0
191
192 check_policy_agent_logs
193 check_control_panel_logs
194
195 #### TEST COMPLETE ####
196
197 store_logs          END
198
199 print_result
200
201 auto_clean_containers