-
-
Notifications
You must be signed in to change notification settings - Fork 562
/
Copy path_cli_test.py
107 lines (87 loc) · 3.07 KB
/
_cli_test.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
"""Tests for the high-level CLI entry point."""
from argparse import ArgumentParser, Namespace
import pytest
from pre_commit_terraform import _cli_parsing as _cli_parsing_mod
from pre_commit_terraform._cli import invoke_cli_app
from pre_commit_terraform._errors import (
PreCommitTerraformBaseError,
PreCommitTerraformExit,
PreCommitTerraformRuntimeError,
)
from pre_commit_terraform._structs import ReturnCode
from pre_commit_terraform._types import ReturnCodeType
pytestmark = pytest.mark.filterwarnings(
'ignore:`terraform_docs_replace` hook is DEPRECATED.:UserWarning:'
'pre_commit_terraform.terraform_docs_replace',
)
@pytest.mark.parametrize(
('raised_error', 'expected_stderr'),
(
pytest.param(
PreCommitTerraformRuntimeError('sentinel'),
'App execution took an unexpected turn: sentinel. Exiting...',
id='app-runtime-exc',
),
pytest.param(
PreCommitTerraformBaseError('sentinel'),
'A surprising exception happened: sentinel. Exiting...',
id='app-base-exc',
),
pytest.param(
KeyboardInterrupt('sentinel'),
'User-initiated interrupt: sentinel. Exiting...',
id='ctrl-c',
),
),
)
def test_known_interrupts(
capsys: pytest.CaptureFixture[str],
expected_stderr: str,
monkeypatch: pytest.MonkeyPatch,
raised_error: BaseException,
) -> None:
"""Check that known interrupts are turned into return code 1."""
class CustomCmdStub:
CLI_SUBCOMMAND_NAME = 'sentinel'
def populate_argument_parser( # noqa: PLR6301
self,
subcommand_parser: ArgumentParser, # noqa: ARG002
) -> None:
return None
def invoke_cli_app(self, parsed_cli_args: Namespace) -> ReturnCodeType: # noqa: PLR6301, ARG002
raise raised_error
monkeypatch.setattr(
_cli_parsing_mod,
'SUBCOMMAND_MODULES',
[CustomCmdStub()],
)
assert invoke_cli_app(['sentinel']) == ReturnCode.ERROR
captured_outputs = capsys.readouterr()
assert captured_outputs.err == f'{expected_stderr !s}\n'
def test_app_exit(
capsys: pytest.CaptureFixture[str],
monkeypatch: pytest.MonkeyPatch,
) -> None:
"""Check that an exit exception is re-raised."""
class CustomCmdStub:
CLI_SUBCOMMAND_NAME = 'sentinel'
def populate_argument_parser( # noqa: PLR6301
self,
subcommand_parser: ArgumentParser, # noqa: ARG002
) -> None:
return None
def invoke_cli_app( # noqa: PLR6301
self,
parsed_cli_args: Namespace, # noqa: ARG002
) -> ReturnCodeType:
err = 'sentinel'
raise PreCommitTerraformExit(err)
monkeypatch.setattr(
_cli_parsing_mod,
'SUBCOMMAND_MODULES',
[CustomCmdStub()],
)
with pytest.raises(PreCommitTerraformExit, match=r'^sentinel$'):
invoke_cli_app(['sentinel'])
captured_outputs = capsys.readouterr()
assert captured_outputs.err == 'App exiting: sentinel\n'