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
|
"""Tests related to our logging/verbosity setup."""
from __future__ import annotations
from pathlib import Path
import pytest
from ansiblelint.testing import run_ansible_lint
# substrs is a list of tuples, where:
# component 1 is the substring in question
# component 2 is whether or not to invert ("NOT") the match
@pytest.mark.parametrize(
("verbosity", "substrs"),
(
pytest.param(
"",
[
("WARNING Listing 1 violation(s) that are fatal", False),
("DEBUG ", True),
("INFO ", True),
],
id="default",
),
pytest.param(
"-q",
[
("WARNING ", True),
("DEBUG ", True),
("INFO ", True),
],
id="q",
),
pytest.param(
"-qq",
[
("WARNING ", True),
("DEBUG ", True),
("INFO ", True),
],
id="qq",
),
pytest.param(
"-v",
[
("WARNING Listing 1 violation(s) that are fatal", False),
("INFO Set ANSIBLE_LIBRARY=", False),
("DEBUG ", True),
],
id="v",
),
pytest.param(
"-vv",
[
("WARNING Listing 1 violation(s) that are fatal", False),
("INFO Set ANSIBLE_LIBRARY=", False),
],
id="really-loquacious",
),
pytest.param(
"-vv",
[
("WARNING Listing 1 violation(s) that are fatal", False),
("INFO Set ANSIBLE_LIBRARY=", False),
],
id="vv",
),
),
)
def test_verbosity(
verbosity: str,
substrs: list[tuple[str, bool]],
project_path: Path,
) -> None:
"""Checks that our default verbosity displays (only) warnings."""
# Piggyback off the .yamllint in the root of the repo, just for testing.
# We'll "override" it with the one in the fixture, to produce a warning.
fakerole = Path() / "test" / "fixtures" / "verbosity-tests"
if verbosity:
result = run_ansible_lint(verbosity, str(fakerole), cwd=project_path)
else:
result = run_ansible_lint(str(fakerole), cwd=project_path)
for substr, invert in substrs:
if invert:
assert substr not in result.stderr, result.stderr
else:
assert substr in result.stderr, result.stderr
|