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
|
"""Tests related to our logging/verbosity setup."""
from pathlib import Path
import pytest
from ansiblelint.testing import run_ansible_lint
def test_list_rules_includes_opt_in_rules(project_path: Path) -> None:
"""Checks that listing rules also includes the opt-in rules."""
# Piggyback off the .yamllint in the root of the repo, just for testing.
# We'll "override" it with the one in the fixture.
fakerole = Path("test") / "fixtures" / "list-rules-tests"
result_list_rules = run_ansible_lint("-L", fakerole, cwd=project_path)
assert ("opt-in" in result_list_rules.stdout) is True
def test_list_rules_includes_autofix() -> None:
"""Checks that listing rules also includes the autofix label for applicable rules."""
result_list_rules = run_ansible_lint("--list-rules")
assert ("autofix" in result_list_rules.stdout) is True
@pytest.mark.parametrize(
("result", "returncode", "format_string"),
(
(False, 0, "brief"),
(False, 0, "full"),
(False, 0, "md"),
(True, 2, "json"),
(True, 2, "codeclimate"),
(True, 2, "quiet"),
(True, 2, "pep8"),
(True, 2, "foo"),
),
ids=(
"plain",
"full",
"md",
"json",
"codeclimate",
"quiet",
"pep8",
"foo",
),
)
def test_list_rules_with_format_option(
result: bool,
returncode: int,
format_string: str,
project_path: Path,
) -> None:
"""Checks that listing rules with format options works."""
# Piggyback off the .yamllint in the root of the repo, just for testing.
# We'll "override" it with the one in the fixture.
fakerole = Path("test") / "fixtures" / "list-rules-tests"
result_list_rules = run_ansible_lint(
"-f",
format_string,
"-L",
fakerole,
cwd=project_path,
)
assert (f"invalid choice: '{format_string}'" in result_list_rules.stderr) is result
assert ("syntax-check" in result_list_rules.stdout) is not result
assert result_list_rules.returncode is returncode
def test_list_tags_includes_opt_in_rules(project_path: Path) -> None:
"""Checks that listing tags also includes the opt-in rules."""
# Piggyback off the .yamllint in the root of the repo, just for testing.
# We'll "override" it with the one in the fixture.
fakerole = Path("test") / "fixtures" / "list-rules-tests"
result_list_tags = run_ansible_lint("-L", str(fakerole), cwd=project_path)
assert ("opt-in" in result_list_tags.stdout) is True
|