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
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
|
"""Execute tests for the CLI."""
from __future__ import annotations
import json
import re
import string
import uuid
from pathlib import Path
from typing import Any, AsyncIterable, Sequence
from unittest import mock
import pyspry
import pytest
import tomlkit
import yaml
from pytest_mock import MockerFixture
from typer.testing import CliRunner
import config_ninja
from config_ninja import cli, systemd
from config_ninja.cli import app
from tests.fixtures import MOCK_YAML_CONFIG
# pylint: disable=redefined-outer-name
runner = CliRunner()
def clean(text: str) -> str:
"""Remove hex/ANSI codes and leading/trailing newlines from the given string."""
return re.sub(r'\x1b\[[0-9;]+m', '', text).strip()
@pytest.fixture
def settings_text() -> str:
"""Resolve the path to the settings file and return its contents as a string."""
return str(config_ninja.resolve_settings_path().read_text()).strip()
@pytest.fixture
def settings(settings_text: str) -> dict[str, Any]:
"""Parse the settings file and return its contents as a `dict`."""
out: dict[str, Any] = yaml.safe_load(settings_text)
return out
@pytest.fixture
def _patch_awatch(settings_text: str, mocker: MockerFixture) -> None: # pyright: ignore[reportUnusedFunction]
"""Patch `watchfiles.awatch` to yield a single string."""
async def mock_awatch(*_: Any, **__: Any) -> AsyncIterable[str]:
yield settings_text
mocker.patch('config_ninja.contrib.local.awatch', new=mock_awatch)
@pytest.mark.parametrize('args', [[], ['-h'], ['--help']])
def test_help(args: Sequence[str]) -> None:
"""Verify the `-h` argument matches `--help` and the default command."""
results = runner.invoke(app, args)
stdout = clean(results.stdout)
assert 0 == results.exit_code
assert stdout.startswith('Usage')
def test_version() -> None:
"""Verify the `version` command returns the correct version."""
result = runner.invoke(app, ['version'])
assert 0 == result.exit_code
assert config_ninja.__version__ == result.stdout.strip()
def test_missing_settings(mocker: MockerFixture, caplog: pytest.LogCaptureFixture) -> None:
"""Verify errors are handled correctly when the settings file is missing."""
# Arrange
mocker.patch('config_ninja.settings.DEFAULT_PATHS', new=[Path('does not'), Path('exist')])
# Act
result = runner.invoke(app, ['self', 'print'])
# Assert
assert 1 == result.exit_code
assert cli.LOG_MISSING_SETTINGS_MESSAGE in caplog.text
@pytest.mark.usefixtures('mock_full_session')
def test_get_example_appconfig() -> None:
"""Get the 'example-appconfig' configuration (as specified in config-ninja-settings.yaml)."""
result = runner.invoke(app, ['get', 'example-appconfig'])
assert 0 == result.exit_code, result.stdout
# note: logging on windows dislikes how the runner captures output and prints a traceback, so
# ... : just make sure that the YAML config is included _in_ the output
assert MOCK_YAML_CONFIG.decode('utf-8') in result.stdout.strip()
def test_get_example_local(settings: dict[str, Any]) -> None:
"""Get the 'example-local' configuration (as specified in config-ninja-settings.yaml)."""
# Arrange
expected = json.dumps(settings).replace(' ', '')
# Act
result = runner.invoke(app, ['get', 'example-local'])
output = result.stdout.replace('\n', '').replace(' ', '')
# Assert
assert 0 == result.exit_code, result.stdout
assert expected == output
@pytest.mark.usefixtures('_patch_awatch')
@pytest.mark.usefixtures('monkeypatch_systemd')
def test_get_example_local_poll(mocker: MockerFixture, settings: dict[str, Any]) -> None:
"""Test the `poll` command with a local file."""
# Arrange
mock_print = mocker.patch('rich.print')
expected_call_count = 2 # 1 for the initial print, 2 for the patched awatch()
# Act
result = runner.invoke(app, ['get', '--poll', 'example-local'])
# Assert
assert 0 == result.exit_code, result.stdout
assert expected_call_count == mock_print.call_count
assert (
mock_print.call_args_list[0][0][0].strip() == mock_print.call_args_list[1][0][0].strip() == json.dumps(settings)
)
def test_self_print() -> None:
"""Test the `self print` command."""
result = runner.invoke(app, ['self', 'print'])
assert 0 == result.exit_code, result.stdout
assert 'example-local' in result.stdout.strip()
assert 'example-appconfig' in result.stdout.strip()
def test_apply_example_local(settings: dict[str, Any]) -> None:
"""Execute the `apply` command for a local file backend."""
result = runner.invoke(app, ['apply', 'example-local'])
output = Path(settings['CONFIG_NINJA_OBJECTS']['example-local']['dest']['path']).read_text(encoding='utf-8').strip()
assert 0 == result.exit_code, result.stdout
assert json.dumps(settings) == output
def test_apply_example_local_template(settings: dict[str, Any]) -> None:
"""Execute the `apply` command for a template with a local file backend."""
result = runner.invoke(app, ['apply', 'example-local-template'])
output = (
Path(settings['CONFIG_NINJA_OBJECTS']['example-local-template']['dest']['path'])
.read_text(encoding='utf-8')
.strip()
)
assert 0 == result.exit_code, result.stdout
assert (
tomlkit.dumps( # pyright: ignore[reportUnknownMemberType]
{
'CONFIG_NINJA_OBJECTS': {
'example-local-template': {
'dest': settings['CONFIG_NINJA_OBJECTS']['example-local-template']['dest']
}
}
}
).strip()
== output
)
def test_apply_example_local_and_template(settings: dict[str, Any]) -> None:
"""Execute the `apply` command for both a local file backend and a template with a local file backend."""
result = runner.invoke(app, ['apply', 'example-local', 'example-local-template'])
output = [
Path(settings['CONFIG_NINJA_OBJECTS'][obj]['dest']['path']).read_text(encoding='utf-8').strip()
for obj in ('example-local', 'example-local-template')
]
assert 0 == result.exit_code, result.stdout
assert json.dumps(settings) == output[0]
assert (
tomlkit.dumps( # pyright: ignore[reportUnknownMemberType]
{
'CONFIG_NINJA_OBJECTS': {
'example-local-template': {
'dest': settings['CONFIG_NINJA_OBJECTS']['example-local-template']['dest']
}
}
}
).strip()
== output[1]
)
@pytest.mark.usefixtures('_patch_awatch')
@pytest.mark.usefixtures('monkeypatch_systemd')
def test_apply_example_local_poll(settings: dict[str, Any]) -> None:
"""Test the `apply --poll` command with a local file backend."""
result = runner.invoke(app, ['apply', '--poll', 'example-local'])
assert 0 == result.exit_code, result.stdout
assert (
json.dumps(settings)
== Path(settings['CONFIG_NINJA_OBJECTS']['example-local']['dest']['path']).read_text(encoding='utf-8').strip()
)
@pytest.mark.usefixtures('_patch_awatch')
@pytest.mark.usefixtures('monkeypatch_systemd')
def test_apply_example_local_template_poll(settings: dict[str, Any]) -> None:
"""Test the `apply --poll` command with a local file backend."""
result = runner.invoke(app, ['apply', '--poll', 'example-local-template'])
output = (
Path(settings['CONFIG_NINJA_OBJECTS']['example-local-template']['dest']['path'])
.read_text(encoding='utf-8')
.strip()
)
assert 0 == result.exit_code, result.stdout
assert (
tomlkit.dumps( # pyright: ignore[reportUnknownMemberType]
{
'CONFIG_NINJA_OBJECTS': {
'example-local-template': {
'dest': settings['CONFIG_NINJA_OBJECTS']['example-local-template']['dest']
}
}
}
).strip()
== output
)
def test_apply_all(settings: dict[str, Any]) -> None:
"""Test the `apply` command without specifying a key."""
# Arrange
local_settings = pyspry.Settings.load('examples/local-backend.yaml', 'CONFIG_NINJA')
# Act
result = runner.invoke(app, ['--config', 'examples/local-backend.yaml', 'apply'])
paths = [Path(local_settings.OBJECTS[obj]['dest']['path']) for obj in ('example-0', 'example-1')]
outputs = [p.read_text().strip() for p in paths]
# Assert
assert 0 == result.exit_code, result.stdout
assert json.dumps(settings) == outputs[0]
assert (
tomlkit.dumps( # pyright: ignore[reportUnknownMemberType]
{
'CONFIG_NINJA_OBJECTS': {
'example-local-template': {
'dest': settings['CONFIG_NINJA_OBJECTS']['example-local-template']['dest']
}
}
}
).strip()
== outputs[1]
)
@pytest.mark.usefixtures('_patch_awatch')
@pytest.mark.usefixtures('monkeypatch_systemd')
def test_monitor_local(settings: dict[str, Any]) -> None:
"""Test the `monitor` command with a local file backend."""
# Arrange
local_settings = pyspry.Settings.load('examples/local-backend.yaml', 'CONFIG_NINJA')
# Act
result = runner.invoke(app, ['--config', 'examples/local-backend.yaml', 'monitor'])
paths = [Path(local_settings.OBJECTS[obj]['dest']['path']) for obj in ('example-0', 'example-1')]
outputs = [p.read_text().strip() for p in paths]
# Assert
assert 0 == result.exit_code, result.stdout
assert json.dumps(settings) == outputs[0]
assert (
tomlkit.dumps( # pyright: ignore[reportUnknownMemberType]
{
'CONFIG_NINJA_OBJECTS': {
'example-local-template': {
'dest': settings['CONFIG_NINJA_OBJECTS']['example-local-template']['dest']
}
}
}
).strip()
== outputs[1]
)
def test_install_no_systemd(monkeypatch: pytest.MonkeyPatch) -> None:
"""Verify the `install` command fails gracefully when `systemd` is not available."""
# Arrange
monkeypatch.setattr(systemd, 'AVAILABLE', False)
# Act
result = runner.invoke(app, ['self', 'install'])
# Assert
assert 0 != result.exit_code
assert result.stdout.startswith('ERROR: Missing systemd!')
@pytest.mark.usefixtures('monkeypatch_systemd')
def test_install() -> None:
"""Verify the `install` command works as expected."""
result = runner.invoke(app, ['self', 'install'])
assert 0 == result.exit_code, result.stdout
assert result.stdout.startswith('Installing')
assert 'SUCCESS' in result.stdout
def _clean_output(text: str) -> str:
return re.sub(f'[^{string.ascii_letters + string.digits + string.punctuation}]', '', text)
@pytest.mark.usefixtures('monkeypatch_systemd')
def test_install_env(monkeypatch: pytest.MonkeyPatch) -> None:
"""Verify the `install` command supports the `--env` argument."""
# Arrange
variables = {
var: uuid.uuid4().hex
for var in [
'AWS_PROFILE',
'AWS_DEFAULT_FORMAT',
'AWS_DEFAULT_REGION',
'ANOTHER_ENV',
'ALMOST_DONE',
'ONE_LAST_ONE',
]
}
for name, value in variables.items():
monkeypatch.setenv(name, value)
# Act
result = runner.invoke(
app,
[
'self',
'install',
'--print-only',
'--env',
','.join(list(variables)[:3]),
'--env',
','.join(list(variables)[3:-1]),
'--env',
list(variables)[-1],
],
)
# Assert
assert 0 == result.exit_code, result.stdout
for name, value in variables.items():
assert f'Environment={name}={value}' in result.stdout
@pytest.mark.usefixtures('monkeypatch_systemd')
def test_install_print_only() -> None:
"""Verify the `install` command respects the `--print-only` argument."""
result = runner.invoke(app, ['self', 'install', '--print-only'])
assert 0 == result.exit_code, result.stdout
assert _clean_output(str(systemd.SYSTEM_INSTALL_PATH)) in _clean_output(result.stdout)
@pytest.mark.usefixtures('monkeypatch_systemd')
def test_install_called_with_sudo(mocker: MockerFixture) -> None:
"""Emulate when the `install` command is invoked with `sudo` (or is running as `root`).
The user should not be prompted for their password if the command was run as `root` or was
called with `sudo`.
"""
# Arrange
sudo: mock.MagicMock = systemd.sudo # type: ignore[assignment,unused-ignore]
mocker.patch('os.geteuid', return_value=0)
# Act
result = runner.invoke(app, ['self', 'install'])
# Assert
assert 0 == result.exit_code, result.stdout
sudo.__enter__.assert_not_called()
@pytest.mark.parametrize('run_as', ['somebody', 'a_user:a_group'])
@pytest.mark.usefixtures('monkeypatch_systemd')
def test_install_run_as(run_as: str) -> None:
"""Verify the `install` command supports the `--run-as USER[:GROUP]` argument."""
# Arrange
split = run_as.split(':')
user = split[0]
group = split[1] if len(split) > 1 else None
# Act
result = runner.invoke(app, ['self', 'install', '--print-only', '--run-as', run_as])
# Assert
assert 0 == result.exit_code, {result.stdout: str(result.stdout)}
assert f'User={user}' in result.stdout
if group:
assert f'Group={group}' in result.stdout
@pytest.mark.usefixtures('monkeypatch_systemd')
def test_install_variables() -> None:
"""Verify the `install` command supports the `--var NAME=VALUE` argument."""
# Arrange
variables = [f'{k}={v}' for k, v in {'FOO': 'BAR', 'BAZ': 'QUX'}.items()]
args = [arg for var in variables for arg in ['--var', var]]
expected = [f'Environment={var}' for var in variables]
# Act
result = runner.invoke(app, ['self', 'install', '--print-only', *args])
# Assert
assert 0 == result.exit_code, {result.stdout: str(result.stdout)}
for line in expected:
assert line in result.stdout
@pytest.mark.usefixtures('monkeypatch_systemd')
def test_install_variables_invalid() -> None:
"""Verify the `install` command fails when an invalid variable is provided."""
# Arrange
pair = 'VARIABLE:INVALID'
# Act
result = runner.invoke(app, ['self', 'install', '--print-only', '--var', pair])
# Assert
assert 1 == result.exit_code
assert f'Invalid argument (expected VARIABLE=VALUE pair): {pair}' in result.stdout
@pytest.mark.usefixtures('monkeypatch_systemd')
def test_install_override_config() -> None:
"""Verify the `install` command supports overrides of the config file."""
# Arrange
config = 'examples/local-backend.yaml'
# Act
result = runner.invoke(app, ['self', 'install', '--print-only', '--config', config])
# Assert
assert 0 == result.exit_code, result.stdout
assert config in result.stdout
@pytest.mark.usefixtures('monkeypatch_systemd')
def test_uninstall() -> None:
"""Verify the `uninstall` command works as expected."""
# Arrange
content = str(uuid.uuid4())
systemd.USER_INSTALL_PATH.mkdir(parents=True, exist_ok=True)
(systemd.USER_INSTALL_PATH / systemd.SERVICE_NAME).write_text(content)
# Act
result = runner.invoke(app, ['self', 'uninstall', '--user'])
# Assert
assert 0 == result.exit_code, result.stdout
assert result.stdout.startswith('Uninstalling')
assert 'SUCCESS' in result.stdout
@pytest.mark.usefixtures('monkeypatch_systemd')
def test_uninstall_print_only() -> None:
"""Verify the `uninstall` command respects the `--print-only` argument."""
# Arrange
content = str(uuid.uuid4())
systemd.SYSTEM_INSTALL_PATH.mkdir(parents=True, exist_ok=True)
(systemd.SYSTEM_INSTALL_PATH / systemd.SERVICE_NAME).write_text(content)
# Act
result = runner.invoke(app, ['self', 'uninstall', '--print-only'])
# Assert
assert 0 == result.exit_code, result.stdout
assert _clean_output(str(systemd.SYSTEM_INSTALL_PATH)) in _clean_output(result.stdout)
assert content in result.stdout
@pytest.mark.usefixtures('monkeypatch_systemd')
def test_uninstall_called_with_sudo(mocker: MockerFixture) -> None:
"""Emulate when the `uninstall` command is invoked with `sudo` (or is running as `root`).
The user should not be prompted for their password if the command was run as `root` or was
called with `sudo`.
"""
# Arrange
sudo: mock.MagicMock = systemd.sudo # type: ignore[assignment,unused-ignore]
mocker.patch('os.geteuid', return_value=0)
# Act
result = runner.invoke(app, ['self', 'uninstall'])
# Assert
assert 0 == result.exit_code, result.stdout
sudo.__enter__.assert_not_called()
|