-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathtest_config_loader.py
More file actions
469 lines (393 loc) · 12.8 KB
/
test_config_loader.py
File metadata and controls
469 lines (393 loc) · 12.8 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
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
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
"""Tests for config_loader module."""
import tempfile
from pathlib import Path
import pytest
from matrix_webhook_bridge.config import Config
from matrix_webhook_bridge.config_loader import ConfigError, load_config_from_yaml
def test_load_valid_config():
"""Load a valid YAML configuration successfully."""
yaml_content = """
matrix:
base_url: https://matrix.example.com
room_id: "!test:example.com"
domain: example.com
timeout: 10
server:
port: 8080
default_user: testuser
"""
with tempfile.NamedTemporaryFile(mode="w", suffix=".yml", delete=False) as f:
f.write(yaml_content)
f.flush()
config_path = f.name
try:
config = load_config_from_yaml(config_path)
assert config.base_url == "https://matrix.example.com"
assert config.room_id == "!test:example.com"
assert config.domain == "example.com"
assert config.matrix_timeout == 10
assert config.port == 8080
assert config.default_user == "testuser"
finally:
Path(config_path).unlink()
def test_load_config_missing_file():
"""FileNotFoundError raised when config file doesn't exist."""
with pytest.raises(FileNotFoundError, match="Configuration file not found"):
load_config_from_yaml("/nonexistent/path/config.yml")
def test_load_config_invalid_yaml():
"""ConfigError raised for malformed YAML."""
yaml_content = """
matrix:
base_url: https://matrix.example.com
room_id: "!test:example.com
domain: example.com
""" # Missing closing quote
with tempfile.NamedTemporaryFile(mode="w", suffix=".yml", delete=False) as f:
f.write(yaml_content)
f.flush()
config_path = f.name
try:
with pytest.raises(ConfigError, match="Failed to parse YAML configuration"):
load_config_from_yaml(config_path)
finally:
Path(config_path).unlink()
def test_load_config_missing_required_field():
"""ConfigError raised when required field is missing."""
yaml_content = """
matrix:
base_url: https://matrix.example.com
room_id: "!test:example.com"
# domain is missing
server:
port: 5001
"""
with tempfile.NamedTemporaryFile(mode="w", suffix=".yml", delete=False) as f:
f.write(yaml_content)
f.flush()
config_path = f.name
try:
with pytest.raises(ConfigError, match="'domain' is a required property"):
load_config_from_yaml(config_path)
finally:
Path(config_path).unlink()
def test_load_config_with_defaults():
"""Optional fields use Config dataclass defaults."""
yaml_content = """
matrix:
base_url: https://matrix.example.com
room_id: "!test:example.com"
domain: example.com
"""
with tempfile.NamedTemporaryFile(mode="w", suffix=".yml", delete=False) as f:
f.write(yaml_content)
f.flush()
config_path = f.name
try:
config = load_config_from_yaml(config_path)
assert config.base_url == "https://matrix.example.com"
assert config.room_id == "!test:example.com"
assert config.domain == "example.com"
assert config.matrix_timeout == 5 # Default
assert config.port == 5001 # Default
assert config.default_user == "bridge" # Default
finally:
Path(config_path).unlink()
def test_load_config_invalid_type():
"""ConfigError raised for wrong type (e.g., port as string)."""
yaml_content = """
matrix:
base_url: https://matrix.example.com
room_id: "!test:example.com"
domain: example.com
server:
port: "not_a_number"
"""
with tempfile.NamedTemporaryFile(mode="w", suffix=".yml", delete=False) as f:
f.write(yaml_content)
f.flush()
config_path = f.name
try:
with pytest.raises(ConfigError, match="is not of type 'integer'"):
load_config_from_yaml(config_path)
finally:
Path(config_path).unlink()
def test_load_config_nested_structure():
"""Correctly parse nested YAML structure."""
yaml_content = """
matrix:
base_url: https://matrix.example.com
room_id: "!test:example.com"
domain: example.com
timeout: 15
server:
port: 9000
default_user: customuser
"""
with tempfile.NamedTemporaryFile(mode="w", suffix=".yml", delete=False) as f:
f.write(yaml_content)
f.flush()
config_path = f.name
try:
config = load_config_from_yaml(config_path)
assert isinstance(config, Config)
assert config.base_url == "https://matrix.example.com"
assert config.room_id == "!test:example.com"
assert config.domain == "example.com"
assert config.matrix_timeout == 15
assert config.port == 9000
assert config.default_user == "customuser"
finally:
Path(config_path).unlink()
def test_load_config_missing_matrix_section():
"""ConfigError raised when matrix section is missing."""
yaml_content = """
server:
port: 5001
"""
with tempfile.NamedTemporaryFile(mode="w", suffix=".yml", delete=False) as f:
f.write(yaml_content)
f.flush()
config_path = f.name
try:
with pytest.raises(ConfigError, match="'matrix' is a required property"):
load_config_from_yaml(config_path)
finally:
Path(config_path).unlink()
def test_load_config_invalid_server_section():
"""ConfigError raised when server section is not a dict."""
yaml_content = """
matrix:
base_url: https://matrix.example.com
room_id: "!test:example.com"
domain: example.com
server: "not a dict"
"""
with tempfile.NamedTemporaryFile(mode="w", suffix=".yml", delete=False) as f:
f.write(yaml_content)
f.flush()
config_path = f.name
try:
with pytest.raises(ConfigError, match="is not of type 'object'"):
load_config_from_yaml(config_path)
finally:
Path(config_path).unlink()
def test_load_config_not_yaml_object():
"""ConfigError raised when YAML is not an object."""
yaml_content = "just a string"
with tempfile.NamedTemporaryFile(mode="w", suffix=".yml", delete=False) as f:
f.write(yaml_content)
f.flush()
config_path = f.name
try:
with pytest.raises(ConfigError, match="is not of type 'object'"):
load_config_from_yaml(config_path)
finally:
Path(config_path).unlink()
def test_load_config_invalid_port_range():
"""ConfigError raised for port outside valid range."""
yaml_content = """
matrix:
base_url: https://matrix.example.com
room_id: "!test:example.com"
domain: example.com
server:
port: 99999
"""
with tempfile.NamedTemporaryFile(mode="w", suffix=".yml", delete=False) as f:
f.write(yaml_content)
f.flush()
config_path = f.name
try:
with pytest.raises(ConfigError, match="is greater than the maximum of 65535"):
load_config_from_yaml(config_path)
finally:
Path(config_path).unlink()
def test_load_config_negative_timeout():
"""ConfigError raised for negative timeout."""
yaml_content = """
matrix:
base_url: https://matrix.example.com
room_id: "!test:example.com"
domain: example.com
timeout: -5
"""
with tempfile.NamedTemporaryFile(mode="w", suffix=".yml", delete=False) as f:
f.write(yaml_content)
f.flush()
config_path = f.name
try:
with pytest.raises(ConfigError, match="is less than the minimum of 1"):
load_config_from_yaml(config_path)
finally:
Path(config_path).unlink()
def test_load_config_with_webhook_secret():
"""webhook_secret is loaded when present."""
yaml_content = """
matrix:
base_url: https://matrix.example.com
room_id: "!test:example.com"
domain: example.com
server:
webhook_secret: my-secret
"""
with tempfile.NamedTemporaryFile(mode="w", suffix=".yml", delete=False) as f:
f.write(yaml_content)
f.flush()
config_path = f.name
try:
config = load_config_from_yaml(config_path)
assert config.webhook_secret == "my-secret" # pragma: allowlist secret
finally:
Path(config_path).unlink()
def test_load_config_without_webhook_secret():
"""webhook_secret defaults to None when omitted."""
yaml_content = """
matrix:
base_url: https://matrix.example.com
room_id: "!test:example.com"
domain: example.com
"""
with tempfile.NamedTemporaryFile(mode="w", suffix=".yml", delete=False) as f:
f.write(yaml_content)
f.flush()
config_path = f.name
try:
config = load_config_from_yaml(config_path)
assert config.webhook_secret is None
finally:
Path(config_path).unlink()
def test_load_config_with_service_users():
"""service_users mapping is loaded when present."""
yaml_content = """
matrix:
base_url: https://matrix.example.com
room_id: "!test:example.com"
domain: example.com
server:
service_users:
alertmanager: alertmanager
borgmatic: borgmatic
"""
with tempfile.NamedTemporaryFile(mode="w", suffix=".yml", delete=False) as f:
f.write(yaml_content)
f.flush()
config_path = f.name
try:
config = load_config_from_yaml(config_path)
assert config.service_users == {"alertmanager": "alertmanager", "borgmatic": "borgmatic"}
finally:
Path(config_path).unlink()
def test_load_config_service_users_defaults_to_empty():
"""service_users defaults to empty dict when omitted."""
yaml_content = """
matrix:
base_url: https://matrix.example.com
room_id: "!test:example.com"
domain: example.com
"""
with tempfile.NamedTemporaryFile(mode="w", suffix=".yml", delete=False) as f:
f.write(yaml_content)
f.flush()
config_path = f.name
try:
config = load_config_from_yaml(config_path)
assert config.service_users == {}
finally:
Path(config_path).unlink()
def test_load_config_with_service_rooms():
"""service_rooms mapping is loaded when present."""
yaml_content = """
matrix:
base_url: https://matrix.example.com
room_id: "!test:example.com"
domain: example.com
server:
service_rooms:
alertmanager:
- "!abc123:matrix.example.org"
- "!def456:matrix.example.org"
borgmatic:
- "!abc123:matrix.example.org"
"""
with tempfile.NamedTemporaryFile(mode="w", suffix=".yml", delete=False) as f:
f.write(yaml_content)
f.flush()
config_path = f.name
try:
config = load_config_from_yaml(config_path)
assert config.service_rooms == {
"alertmanager": ["!abc123:matrix.example.org", "!def456:matrix.example.org"],
"borgmatic": ["!abc123:matrix.example.org"],
}
finally:
Path(config_path).unlink()
def test_load_config_service_rooms_defaults_to_empty():
"""service_rooms defaults to empty dict when omitted."""
yaml_content = """
matrix:
base_url: https://matrix.example.com
room_id: "!test:example.com"
domain: example.com
"""
with tempfile.NamedTemporaryFile(mode="w", suffix=".yml", delete=False) as f:
f.write(yaml_content)
f.flush()
config_path = f.name
try:
config = load_config_from_yaml(config_path)
assert config.service_rooms == {}
finally:
Path(config_path).unlink()
def test_load_config_service_rooms_rejects_bad_room_id():
"""ConfigError raised when a room ID in service_rooms has invalid format."""
yaml_content = """
matrix:
base_url: https://matrix.example.com
room_id: "!test:example.com"
domain: example.com
server:
service_rooms:
alertmanager:
- "not-a-room-id"
"""
with tempfile.NamedTemporaryFile(mode="w", suffix=".yml", delete=False) as f:
f.write(yaml_content)
f.flush()
config_path = f.name
try:
with pytest.raises(ConfigError):
load_config_from_yaml(config_path)
finally:
Path(config_path).unlink()
def test_load_config_service_rooms_rejects_invalid_service_name():
"""ConfigError raised when a service_rooms key has an invalid name."""
yaml_content = """
matrix:
base_url: https://matrix.example.com
room_id: "!test:example.com"
domain: example.com
server:
service_rooms:
"Invalid Service Name":
- "!abc123:matrix.example.org"
"""
with tempfile.NamedTemporaryFile(mode="w", suffix=".yml", delete=False) as f:
f.write(yaml_content)
f.flush()
config_path = f.name
try:
with pytest.raises(ConfigError):
load_config_from_yaml(config_path)
finally:
Path(config_path).unlink()
def test_load_config_empty_file():
"""ConfigError raised when YAML file is empty."""
with tempfile.NamedTemporaryFile(mode="w", suffix=".yml", delete=False) as f:
f.write("")
f.flush()
config_path = f.name
try:
with pytest.raises(ConfigError, match="is not of type 'object'"):
load_config_from_yaml(config_path)
finally:
Path(config_path).unlink()