blob: 8674c1637d82a00d7930c2e926dd9d4b772a4726 (
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
"""Test related to skipping import_playbook."""
from pathlib import Path
import pytest
from ansiblelint.rules import RulesCollection
from ansiblelint.runner import Runner
IMPORTED_PLAYBOOK = """\
---
- name: Fixture
hosts: all
tasks:
- name: Success # noqa: no-free-form
ansible.builtin.fail: msg="fail"
when: false
"""
MAIN_PLAYBOOK = """\
---
- name: Fixture
hosts: all
tasks:
- name: Should be shell # noqa: command-instead-of-shell no-changed-when no-free-form
ansible.builtin.shell: echo lol
- name: Should not be imported
import_playbook: imported_playbook.yml
"""
@pytest.fixture(name="playbook")
def fixture_playbook(tmp_path: Path) -> str:
"""Create a reusable per-test playbook."""
playbook_path = tmp_path / "playbook.yml"
playbook_path.write_text(MAIN_PLAYBOOK)
(tmp_path / "imported_playbook.yml").write_text(IMPORTED_PLAYBOOK)
return str(playbook_path)
def test_skip_import_playbook(
default_rules_collection: RulesCollection,
playbook: str,
) -> None:
"""Verify that a playbook import is skipped after a failure."""
runner = Runner(playbook, rules=default_rules_collection)
results = runner.run()
assert len(results) == 0
|