summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/yum/tasks/yum_group_remove.yml
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-28 16:04:21 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-28 16:04:21 +0000
commit8a754e0858d922e955e71b253c139e071ecec432 (patch)
tree527d16e74bfd1840c85efd675fdecad056c54107 /test/integration/targets/yum/tasks/yum_group_remove.yml
parentInitial commit. (diff)
downloadansible-core-upstream.tar.xz
ansible-core-upstream.zip
Adding upstream version 2.14.3.upstream/2.14.3upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'test/integration/targets/yum/tasks/yum_group_remove.yml')
-rw-r--r--test/integration/targets/yum/tasks/yum_group_remove.yml152
1 files changed, 152 insertions, 0 deletions
diff --git a/test/integration/targets/yum/tasks/yum_group_remove.yml b/test/integration/targets/yum/tasks/yum_group_remove.yml
new file mode 100644
index 0000000..22c6dcb
--- /dev/null
+++ b/test/integration/targets/yum/tasks/yum_group_remove.yml
@@ -0,0 +1,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"