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
|
import pytest
PLAYBOOK_PRE_TASKS = '''
- hosts: all
tasks:
- name: bad git 1 # noqa 401
action: git a=b c=d
- name: bad git 2
action: git a=b c=d
pre_tasks:
- name: bad git 3 # noqa 401
action: git a=b c=d
- name: bad git 4
action: git a=b c=d
'''
PLAYBOOK_POST_TASKS = '''
- hosts: all
tasks:
- name: bad git 1 # noqa 401
action: git a=b c=d
- name: bad git 2
action: git a=b c=d
post_tasks:
- name: bad git 3 # noqa 401
action: git a=b c=d
- name: bad git 4
action: git a=b c=d
'''
PLAYBOOK_HANDLERS = '''
- hosts: all
tasks:
- name: bad git 1 # noqa 401
action: git a=b c=d
- name: bad git 2
action: git a=b c=d
handlers:
- name: bad git 3 # noqa 401
action: git a=b c=d
- name: bad git 4
action: git a=b c=d
'''
PLAYBOOK_TWO_PLAYS = '''
- hosts: all
tasks:
- name: bad git 1 # noqa 401
action: git a=b c=d
- name: bad git 2
action: git a=b c=d
- hosts: all
tasks:
- name: bad git 3 # noqa 401
action: git a=b c=d
- name: bad git 4
action: git a=b c=d
'''
PLAYBOOK_WITH_BLOCK = '''
- hosts: all
tasks:
- name: bad git 1 # noqa 401
action: git a=b c=d
- name: bad git 2
action: git a=b c=d
- name: Block with rescue and always section
block:
- name: bad git 3 # noqa 401
action: git a=b c=d
- name: bad git 4
action: git a=b c=d
rescue:
- name: bad git 5 # noqa 401
action: git a=b c=d
- name: bad git 6
action: git a=b c=d
always:
- name: bad git 7 # noqa 401
action: git a=b c=d
- name: bad git 8
action: git a=b c=d
'''
@pytest.mark.parametrize(('playbook', 'length'), (
pytest.param(PLAYBOOK_PRE_TASKS, 2, id='PRE_TASKS'),
pytest.param(PLAYBOOK_POST_TASKS, 2, id='POST_TASKS'),
pytest.param(PLAYBOOK_HANDLERS, 2, id='HANDLERS'),
pytest.param(PLAYBOOK_TWO_PLAYS, 2, id='TWO_PLAYS'),
pytest.param(PLAYBOOK_WITH_BLOCK, 4, id='WITH_BLOCK'),
))
def test_pre_tasks(default_text_runner, playbook, length):
# When
results = default_text_runner.run_playbook(playbook)
# Then
assert len(results) == length
|