blob: 2f62c56dd91cb0022f14fcdcc2187f28ccaf9f76 [file] [log] [blame]
BjornMagnussonXA80a92002020-03-19 14:31:06 +01001#!/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
21TC_ONELINE_DESCR="Testing of service registration timeouts and keepalive"
22
23. ../common/testcase_common.sh $@
24. ../common/agent_api_functions.sh
25. ../common/ricsimulator_api_functions.sh
26
27
28#Local vars in test script
29##########################
30# Path to callback receiver
31CR_PATH="http://$CR_APP_NAME:$CR_EXTERNAL_PORT/callbacks"
32
33
34#### TEST BEGIN ####
35
36clean_containers
37
38start_ric_simulators ricsim_g1 1 OSC_2.1.0
39
40start_mr
41
42start_cr
43
44start_consul_cbs
45
46prepare_consul_config NOSDNC ".consul_config.json"
47consul_config_app ".consul_config.json"
48
49start_control_panel
50
51#start_sdnc
52
53start_policy_agent
54
55use_agent_rest
56
57#Verify no callbacks or dmaap messages has been sent
58cr_equal received_callbacks 0
59mr_equal requests_submitted 0
60
61#Check agent alive
62api_get_status 200
63
64#Print simulator interface version
65sim_print ricsim_g1_1 interface
66
67api_put_service 201 "rapp1" 15 "$CR_PATH/rapp1"
68
69api_get_services 200 "rapp1" 15 "$CR_PATH/rapp1"
70
71api_put_service 201 "rapp2" 120 "$CR_PATH/rapp2"
72
73api_get_services 200 "rapp2" 120 "$CR_PATH/rapp2"
74
75api_put_service 200 "rapp1" 50 "$CR_PATH/rapp1"
76api_put_service 200 "rapp2" 180 "$CR_PATH/rapp2"
77
78api_get_services 200 "rapp1" 50 "$CR_PATH/rapp1"
79api_get_services 200 "rapp2" 180 "$CR_PATH/rapp2"
80
81api_get_service_ids 200 "rapp1" "rapp2"
82
83sleep_wait 30 "Waiting for keep alive timeout"
84
85api_get_services 200 "rapp1" 50 "$CR_PATH/rapp1"
86api_get_services 200 "rapp2" 180 "$CR_PATH/rapp2"
87
88sleep_wait 100 "Waiting for keep alive timeout"
89
90api_get_services 404 "rapp1"
91api_get_services 200 "rapp2" 180 "$CR_PATH/rapp2"
92
93api_delete_services 204 "rapp2"
94
95api_get_services 404 "rapp1"
96api_get_services 404 "rapp2"
97
98api_put_service 201 "rapp3" 60 "$CR_PATH/rapp3"
99
100api_get_services 200 "rapp3" 60 "$CR_PATH/rapp3"
101
102sleep_wait 30 "Waiting for keep alive timeout"
103
104api_put_service 200 "rapp3" 60 "$CR_PATH/rapp3"
105
106sleep_wait 100 "Waiting for keep alive timeout"
107
108api_get_services 404 "rapp3"
109
110api_put_service 201 "rapp4" 120 "$CR_PATH/rapp4"
111
112sleep_wait 60 "Waiting for keep alive timeout"
113
114api_get_services 200 "rapp4" 120 "$CR_PATH/rapp4"
115
116api_put_services_keepalive 200 "rapp4"
117
118sleep_wait 90 "Waiting for keep alive timeout"
119
120api_get_services 200 "rapp4" 120 "$CR_PATH/rapp4"
121
122api_delete_services 204 "rapp4"
123
124api_get_services 404 "rapp4"
125
126api_get_services 404 "rapp1"
127api_get_services 404 "rapp2"
128api_get_services 404 "rapp3"
129
130api_get_service_ids 200
131
132api_delete_services 404 "rapp1"
133api_delete_services 404 "rapp2"
134api_delete_services 404 "rapp3"
135api_delete_services 404 "rapp4"
136
137api_put_services_keepalive 404 "rapp1"
138api_put_services_keepalive 404 "rapp2"
139api_put_services_keepalive 404 "rapp3"
140api_put_services_keepalive 404 "rapp4"
141
142api_get_service_ids 200
143
144
145
146cr_equal received_callbacks 0
147mr_equal requests_submitted 0
148
149check_policy_agent_logs
150check_control_panel_logs
151
152#### TEST COMPLETE ####
153
154store_logs END
155
156print_result
157
158auto_clean_containers