blob: e1cc69e9233504be611fcc8290cb727400a13a14 (
plain)
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
|
"""Tests for internal rules."""
import pytest
from ansiblelint._internal.rules import BaseRule
from ansiblelint.rules import RulesCollection
from ansiblelint.runner import Runner
def test_base_rule_url() -> None:
"""Test that rule URL is set to expected value."""
rule = BaseRule()
assert rule.url == "https://ansible.readthedocs.io/projects/lint/rules/"
@pytest.mark.parametrize(
("path"),
(
pytest.param(
"examples/playbooks/incorrect_module_args.yml",
id="playbook",
),
),
)
def test_incorrect_module_args(
path: str,
default_rules_collection: RulesCollection,
) -> None:
"""Check that we fail when file encoding is wrong."""
runner = Runner(path, rules=default_rules_collection)
matches = runner.run()
assert len(matches) == 1, matches
assert matches[0].rule.id == "load-failure"
assert "Failed to find required 'name' key in include_role" in matches[0].message
assert matches[0].tag == "internal-error"
|