forked from python-consul/python-consul
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_base.py
More file actions
executable file
·349 lines (295 loc) · 11.6 KB
/
Copy pathtest_base.py
File metadata and controls
executable file
·349 lines (295 loc) · 11.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
import collections
from contextlib import contextmanager
import json
import os
import pytest
import consul.base
CB = consul.base.CB
Response = consul.base.Response
Request = collections.namedtuple(
'Request', ['method', 'path', 'params', 'data'])
class HTTPClient(object):
def __init__(self, base_uri, verify=True, cert=None, auth=None):
self.base_uri = base_uri
self.verify = verify
self.cert = cert
self.auth = auth
def get(self, callback, path, params=None):
return Request('get', path, params, None)
def put(self, callback, path, params=None, data=''):
return Request('put', path, params, data)
def delete(self, callback, path, params=None):
return Request('delete', path, params, None)
class Consul(consul.base.Consul):
def connect(self, base_uri, verify=True, cert=None, auth=None):
return HTTPClient(base_uri, verify=verify, cert=cert, auth=auth)
class TestEnvironment(object):
@contextmanager
def environ(self, **env):
original_env = {}
for key in env:
original_env[key] = os.getenv(key)
os.environ.update(env)
try:
yield
finally:
for key, value in original_env.items():
if value is None:
del os.environ[key]
else:
os.environ[key] = value
def test_CONSUL_HTTP_ADDR(self):
CONSUL_HTTP_ADDR = 'http://127.0.0.23:4242'
with self.environ(CONSUL_HTTP_ADDR=CONSUL_HTTP_ADDR):
c = Consul.from_env()
assert c.http.base_uri == CONSUL_HTTP_ADDR
def test_CONSUL_HTTP_ADDR_scheme_http(self):
CONSUL_HTTP_ADDR = '127.0.0.23:4242'
with self.environ(CONSUL_HTTP_ADDR=CONSUL_HTTP_ADDR):
c = Consul.from_env()
assert c.http.base_uri == 'http://' + CONSUL_HTTP_ADDR
def test_CONSUL_HTTP_ADDR_with_CONSUL_HTTP_SSL(self):
CONSUL_HTTP_ADDR = '127.0.0.23:4242'
with self.environ(CONSUL_HTTP_ADDR=CONSUL_HTTP_ADDR,
CONSUL_HTTP_SSL='true'):
c = Consul.from_env()
assert c.http.base_uri == 'https://' + CONSUL_HTTP_ADDR
def test_CONSUL_HTTP_TOKEN(self):
CONSUL_HTTP_TOKEN = '1bdc2cb4-9b02-4b3c-9df5-eb86214e1a6c'
with self.environ(CONSUL_HTTP_TOKEN=CONSUL_HTTP_TOKEN):
c = Consul.from_env()
assert c.token == CONSUL_HTTP_TOKEN
def test_cert(self):
CONSUL_CLIENT_CERT = '/path/to/client.crt'
CONSUL_CLIENT_KEY = '/path/to/client.key'
with self.environ(CONSUL_CLIENT_CERT=CONSUL_CLIENT_CERT,
CONSUL_CLIENT_KEY=CONSUL_CLIENT_KEY):
c = Consul.from_env()
assert c.http.cert == (CONSUL_CLIENT_CERT, CONSUL_CLIENT_KEY)
def test_CONSUL_HTTP_AUTH(self):
CONSUL_HTTP_AUTH = 'username:s3cr3t'
with self.environ(CONSUL_HTTP_AUTH=CONSUL_HTTP_AUTH):
c = Consul.from_env()
assert c.http.auth == CONSUL_HTTP_AUTH.split(':')
def test_CONSUL_HTTP_SSL_VERIFY_True(self):
CONSUL_HTTP_SSL_VERIFY = 'true'
with self.environ(CONSUL_HTTP_SSL_VERIFY=CONSUL_HTTP_SSL_VERIFY):
c = Consul.from_env()
assert c.http.verify is True
def test_CONSUL_HTTP_SSL_VERIFY_False(self):
CONSUL_HTTP_SSL_VERIFY = 'false'
with self.environ(CONSUL_HTTP_SSL_VERIFY=CONSUL_HTTP_SSL_VERIFY):
c = Consul.from_env()
assert c.http.verify is False
def test_CONSUL_CACERT(self):
CONSUL_CACERT = '/path/to/ca.crt'
with self.environ(CONSUL_CACERT=CONSUL_CACERT):
c = Consul.from_env()
assert c.http.verify == CONSUL_CACERT
def _should_support(c):
return (
# kv
lambda **kw: c.kv.get('foo', **kw),
# catalog
c.catalog.nodes,
c.catalog.services,
lambda **kw: c.catalog.node('foo', **kw),
lambda **kw: c.catalog.service('foo', **kw),
# session
c.session.list,
lambda **kw: c.session.info('foo', **kw),
lambda **kw: c.session.node('foo', **kw),
)
def _should_support_node_meta(c):
return (
# catalog
c.catalog.nodes,
c.catalog.services,
lambda **kw: c.catalog.service('foo', **kw),
lambda **kw: c.catalog.register('foo', 'bar', **kw),
# health
lambda **kw: c.health.service('foo', **kw),
lambda **kw: c.health.checks('foo', **kw),
lambda **kw: c.health.state('unknown', **kw),
)
def _should_support_meta(c):
return (
# agent
lambda **kw: c.agent.service.register('foo', **kw),
lambda **kw: c.agent.service.register('foo', 'bar', **kw),
)
class TestIndex(object):
"""
Tests read requests that should support blocking on an index
"""
def test_index(self):
c = Consul()
for r in _should_support(c):
assert r().params == []
assert r(index='5').params == [('index', '5')]
class TestConsistency(object):
"""
Tests read requests that should support consistency modes
"""
def test_explict(self):
c = Consul()
for r in _should_support(c):
assert r().params == []
assert r(consistency='default').params == []
assert r(consistency='consistent').params == [('consistent', '1')]
assert r(consistency='stale').params == [('stale', '1')]
def test_implicit(self):
c = Consul(consistency='consistent')
for r in _should_support(c):
assert r().params == [('consistent', '1')]
assert r(consistency='default').params == []
assert r(consistency='consistent').params == [('consistent', '1')]
assert r(consistency='stale').params == [('stale', '1')]
class TestNodemeta(object):
"""
Tests read requests that should support node_meta
"""
def test_node_meta(self):
c = Consul()
for r in _should_support_node_meta(c):
assert r().params == []
assert sorted(r(node_meta={'env': 'prod', 'net': 1}).params) == \
sorted([('node-meta', 'net:1'), ('node-meta', 'env:prod')])
class TestMeta(object):
"""
Tests read requests that should support meta
"""
def test_meta(self):
c = Consul()
for r in _should_support_meta(c):
d = json.loads(r(meta={'env': 'prod', 'net': 1}).data)
assert sorted(d['meta']) == sorted({'env': 'prod', 'net': 1})
class TestCB(object):
def test_status_200_passes(self):
response = consul.base.Response(200, None, None)
CB._status(response)
@pytest.mark.parametrize(
'response, expected_exception',
[
(Response(400, None, None), consul.base.BadRequest),
(Response(401, None, None), consul.base.ACLDisabled),
(Response(403, None, None), consul.base.ACLPermissionDenied),
])
def test_status_4xx_raises_error(self, response, expected_exception):
with pytest.raises(expected_exception):
CB._status(response)
def test_status_404_allow_404(self):
response = Response(404, None, None)
CB._status(response, allow_404=True)
def test_status_404_dont_allow_404(self):
response = Response(404, None, None)
with pytest.raises(consul.base.NotFound):
CB._status(response, allow_404=False)
def test_status_405_raises_generic_ClientError(self):
response = Response(405, None, None)
with pytest.raises(consul.base.ClientError):
CB._status(response)
@pytest.mark.parametrize(
'response',
[
Response(500, None, None),
Response(599, None, None),
])
def test_status_5xx_raises_error(self, response):
with pytest.raises(consul.base.ConsulException):
CB._status(response)
class TestChecks(object):
"""
Check constructor helpers return valid check configurations.
"""
@pytest.mark.parametrize(
'url, interval, timeout, deregister, header, want', [
('http://example.com', '10s', None, None, None, {
'http': 'http://example.com',
'interval': '10s',
}),
('http://example.com', '10s', '1s', None, None, {
'http': 'http://example.com',
'interval': '10s',
'timeout': '1s',
}),
('http://example.com', '10s', None, '1m', None, {
'http': 'http://example.com',
'interval': '10s',
'DeregisterCriticalServiceAfter': '1m',
}),
('http://example.com', '10s', '1s', '1m', None, {
'http': 'http://example.com',
'interval': '10s',
'timeout': '1s',
'DeregisterCriticalServiceAfter': '1m',
}),
('http://example.com', '10s', '1s', '1m',
{'X-Test-Header': ['TestHeaderValue']},
{
'http': 'http://example.com',
'interval': '10s',
'timeout': '1s',
'DeregisterCriticalServiceAfter': '1m',
'header': {'X-Test-Header': ['TestHeaderValue']}
}
),
])
def test_http_check(self, url, interval, timeout, deregister, header,
want):
ch = consul.base.Check.http(url, interval, timeout=timeout,
deregister=deregister, header=header)
assert ch == want
@pytest.mark.parametrize(
'host, port, interval, timeout, deregister, want',
[
('localhost', 1234, '10s', None, None, {
'tcp': 'localhost:1234',
'interval': '10s',
}),
('localhost', 1234, '10s', '1s', None, {
'tcp': 'localhost:1234',
'interval': '10s',
'timeout': '1s',
}),
('localhost', 1234, '10s', None, '1m', {
'tcp': 'localhost:1234',
'interval': '10s',
'DeregisterCriticalServiceAfter': '1m',
}),
('localhost', 1234, '10s', '1s', '1m', {
'tcp': 'localhost:1234',
'interval': '10s',
'timeout': '1s',
'DeregisterCriticalServiceAfter': '1m',
}),
])
def test_tcp_check(self, host, port, interval, timeout, deregister, want):
ch = consul.base.Check.tcp(host, port, interval, timeout=timeout,
deregister=deregister)
assert ch == want
@pytest.mark.parametrize(
'container_id, shell, script, interval, deregister, want',
[
('wandering_bose', '/bin/sh', '/bin/true', '10s', None, {
'docker_container_id': 'wandering_bose',
'shell': '/bin/sh',
'script': '/bin/true',
'interval': '10s',
}),
('wandering_bose', '/bin/sh', '/bin/true', '10s', '1m', {
'docker_container_id': 'wandering_bose',
'shell': '/bin/sh',
'script': '/bin/true',
'interval': '10s',
'DeregisterCriticalServiceAfter': '1m',
}),
])
def test_docker_check(self, container_id, shell, script, interval,
deregister, want):
ch = consul.base.Check.docker(container_id, shell, script, interval,
deregister=deregister)
assert ch == want
def test_ttl_check(self):
ch = consul.base.Check.ttl('1m')
assert ch == {'ttl': '1m'}