-
Notifications
You must be signed in to change notification settings - Fork 16
/
test_base.py
424 lines (380 loc) · 12.2 KB
/
test_base.py
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
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
from __future__ import annotations
import collections
import contextlib
import json
from typing import Any, Callable, Optional
import pytest
import consul.check
Request = collections.namedtuple("Request", ["method", "path", "params", "headers", "data"])
class HTTPClient:
def __init__(
self, host: Optional[str] = None, port: Optional[int] = None, scheme=None, verify: bool = True, cert=None
) -> None:
self.host = host
self.port = int(port) if port else None
self.scheme = scheme
self.verify = verify
self.cert = cert
def get(self, callback, path, params=None, headers=None): # pylint: disable=unused-argument
return Request("get", path, params, headers, None)
def put(self, callback, path, params=None, headers=None, data: str = ""): # pylint: disable=unused-argument
return Request("put", path, params, headers, data)
def delete(self, callback, path, params=None, headers=None): # pylint: disable=unused-argument
return Request("delete", path, params, headers, None)
class Consul(consul.base.Consul):
def http_connect(self, host: str, port: int, scheme, verify: bool = True, cert=None):
return HTTPClient(host=host, port=port, scheme=scheme, verify=verify, cert=None)
def _should_support(c: Consul) -> tuple[Callable[..., Any], ...]:
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: Consul) -> tuple[Callable[..., Any], ...]:
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: Consul) -> tuple[Callable[..., Any], ...]:
return (
# agent
lambda **kw: c.agent.service.register("foo", **kw),
lambda **kw: c.agent.service.register("foo", "bar", **kw),
)
class TestBaseInit:
"""
Tests that connection arguments are handled
"""
@pytest.mark.parametrize(
("env", "host", "port", "want"),
[
(
None,
None,
None,
{
"host": "127.0.0.1",
"port": 8500,
},
),
(
"127.0.0.1:443",
None,
None,
{
"host": "127.0.0.1",
"port": 443,
},
),
(
None,
"consul.domain.tld",
None,
{
"host": "consul.domain.tld",
"port": 8500,
},
),
(
"consul.domain.tld:443",
"127.0.0.1",
None,
{
"host": "127.0.0.1",
"port": 8500,
},
),
(
"consul.domain.tld:443",
"127.0.0.1",
8080,
{
"host": "127.0.0.1",
"port": 8080,
},
),
(
"bad",
"127.0.0.1",
8080,
{
"host": "127.0.0.1",
"port": 8080,
},
),
],
)
def test_base_init_addr(self, monkeypatch, env, host, port, want) -> None:
if env:
monkeypatch.setenv("CONSUL_HTTP_ADDR", env)
else:
with contextlib.suppress(KeyError):
monkeypatch.delenv("CONSUL_HTTP_ADDR")
c = Consul(host=host, port=port)
assert c.http.host == want["host"]
assert c.http.port == want["port"]
@pytest.mark.parametrize(
("env", "scheme", "want"),
[
("true", None, "https"),
("false", None, "http"),
(None, "https", "https"),
(None, "http", "http"),
("http", "https", "https"),
],
)
def test_base_init_scheme(self, monkeypatch, env, scheme, want) -> None:
if env:
monkeypatch.setenv("CONSUL_HTTP_SSL", env)
else:
with contextlib.suppress(KeyError):
monkeypatch.delenv("CONSUL_HTTP_SSL")
c = Consul(scheme=scheme)
assert c.http.scheme == want
@pytest.mark.parametrize(
("env", "verify", "want"),
[
("true", None, True),
(None, True, True),
("false", True, True),
],
)
def test_base_init_verify(self, monkeypatch, env, verify, want) -> None:
if env:
monkeypatch.setenv("CONSUL_HTTP_SSL_VERIFY", env)
else:
with contextlib.suppress(KeyError):
monkeypatch.delenv("CONSUL_HTTP_SSL_VERIFY")
c = Consul(verify=verify)
assert c.http.verify == want
class TestIndex:
"""
Tests read requests that should support blocking on an index
"""
def test_index(self) -> None:
c = Consul()
for r in _should_support(c):
assert r().params == []
assert r(index="5").params == [("index", "5")]
class TestConsistency:
"""
Tests read requests that should support consistency modes
"""
def test_explict(self) -> None:
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) -> None:
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:
"""
Tests read requests that should support node_meta
"""
def test_node_meta(self) -> None:
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:
"""
Tests read requests that should support meta
"""
def test_meta(self) -> None:
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 TestChecks:
"""
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) -> None:
ch = consul.check.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: str, port: int, interval, timeout, deregister, want) -> None:
ch = consul.check.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) -> None:
ch = consul.check.Check.docker(container_id, shell, script, interval, deregister=deregister)
assert ch == want
def test_ttl_check(self) -> None:
ch = consul.check.Check.ttl("1m")
assert ch == {"ttl": "1m"}