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