summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/yum/tasks/yum_group_remove.yml
blob: 22c6dcb11c9425b14636bc50c9411d47fee5faf1 (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
142
143
144
145
146
147
148
149
150
151
152
- name: install a group to test and yum-utils
  yum:
    name: "{{ pkgs }}"
    state: present
  vars:
    pkgs:
      - "@Custom Group"
      - yum-utils
  when: ansible_pkg_mgr == "yum"

- name: install a group to test and dnf-utils
  yum:
    name: "{{ pkgs }}"
    state: present
  vars:
    pkgs:
      - "@Custom Group"
      - dnf-utils
  when: ansible_pkg_mgr == "dnf"

- name: check mode remove the group
  yum:
    name: "@Custom Group"
    state: absent
  check_mode: yes
  register: yum_result

- name: verify changed
  assert:
    that:
        - "yum_result.changed"

- name: verify yum module outputs
  assert:
    that:
        - "'changed' in yum_result"
        - "'results' in yum_result"

- name: remove the group
  yum:
    name: "@Custom Group"
    state: absent
  register: yum_result

- name: verify changed
  assert:
    that:
        - "yum_result.rc == 0"
        - "yum_result.changed"

- name: verify yum module outputs
  assert:
    that:
        - "'changed' in yum_result"
        - "'msg' in yum_result"
        - "'results' in yum_result"

- name: remove the group again
  yum:
    name: "@Custom Group"
    state: absent
  register: yum_result

- name: verify changed
  assert:
    that:
        - "not yum_result.changed"

- name: verify yum module outputs
  assert:
    that:
        - "'changed' in yum_result"
        - "'msg' in yum_result"
        - "'results' in yum_result"

- name: check mode remove the group again
  yum:
    name: "@Custom Group"
    state: absent
  check_mode: yes
  register: yum_result

- name: verify changed
  assert:
    that:
        - "not yum_result.changed"

- name: verify yum module outputs
  assert:
    that:
        - "'changed' in yum_result"
        - "'results' in yum_result"

- name: install a group and a package to test
  yum:
    name: "@Custom Group,sos"
    state: present
  register: yum_output

- name: check mode remove the group along with the package
  yum:
    name: "@Custom Group,sos"
    state: absent
  register: yum_result
  check_mode: yes

- name: verify changed
  assert:
    that:
        - "yum_result.changed"

- name: verify yum module outputs
  assert:
    that:
        - "'changed' in yum_result"
        - "'results' in yum_result"

- name: remove the group along with the package
  yum:
    name: "@Custom Group,sos"
    state: absent
  register: yum_result

- name: verify changed
  assert:
    that:
        - "yum_result.changed"

- name: verify yum module outputs
  assert:
    that:
        - "'changed' in yum_result"
        - "'msg' in yum_result"
        - "'results' in yum_result"

- name: check mode remove the group along with the package
  yum:
    name: "@Custom Group,sos"
    state: absent
  register: yum_result
  check_mode: yes

- name: verify not changed
  assert:
    that:
        - "not yum_result.changed"

- name: verify yum module outputs
  assert:
    that:
        - "'changed' in yum_result"
        - "'results' in yum_result"