blob: c6d40118cfb0ee120c43c04e5d9c077943a06278 (
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
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
|
- name: install a group to test and dnf-utils
dnf:
name: "{{ pkgs }}"
state: present
vars:
pkgs:
- "@Custom Group"
- dnf-utils
- name: check mode remove the group
dnf:
name: "@Custom Group"
state: absent
check_mode: yes
register: dnf_result
- name: verify changed
assert:
that:
- "dnf_result.changed"
- name: verify dnf module outputs
assert:
that:
- "'changed' in dnf_result"
- "'results' in dnf_result"
- name: remove the group
dnf:
name: "@Custom Group"
state: absent
register: dnf_result
- name: verify changed
assert:
that:
- "dnf_result.rc == 0"
- "dnf_result.changed"
- name: verify dnf module outputs
assert:
that:
- "'changed' in dnf_result"
- "'msg' in dnf_result"
- "'results' in dnf_result"
- name: remove the group again
dnf:
name: "@Custom Group"
state: absent
register: dnf_result
- name: verify changed
assert:
that:
- "not dnf_result.changed"
- name: verify dnf module outputs
assert:
that:
- "'changed' in dnf_result"
- "'msg' in dnf_result"
- "'results' in dnf_result"
- name: check mode remove the group again
dnf:
name: "@Custom Group"
state: absent
check_mode: yes
register: dnf_result
- name: verify changed
assert:
that:
- "not dnf_result.changed"
- name: verify dnf module outputs
assert:
that:
- "'changed' in dnf_result"
- "'results' in dnf_result"
- name: install a group and a package to test
dnf:
name: "@Custom Group,sos"
state: present
register: dnf_output
- name: check mode remove the group along with the package
dnf:
name: "@Custom Group,sos"
state: absent
register: dnf_result
check_mode: yes
- name: verify changed
assert:
that:
- "dnf_result.changed"
- name: verify dnf module outputs
assert:
that:
- "'changed' in dnf_result"
- "'results' in dnf_result"
- name: remove the group along with the package
dnf:
name: "@Custom Group,sos"
state: absent
register: dnf_result
- name: verify changed
assert:
that:
- "dnf_result.changed"
- name: verify dnf module outputs
assert:
that:
- "'changed' in dnf_result"
- "'msg' in dnf_result"
- "'results' in dnf_result"
- name: check mode remove the group along with the package
dnf:
name: "@Custom Group,sos"
state: absent
register: dnf_result
check_mode: yes
- name: verify not changed
assert:
that:
- "not dnf_result.changed"
- name: verify dnf module outputs
assert:
that:
- "'changed' in dnf_result"
- "'results' in dnf_result"
|