summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/dnf/tasks/modularity.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/dnf/tasks/modularity.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/dnf/tasks/modularity.yml')
-rw-r--r--test/integration/targets/dnf/tasks/modularity.yml104
1 files changed, 104 insertions, 0 deletions
diff --git a/test/integration/targets/dnf/tasks/modularity.yml b/test/integration/targets/dnf/tasks/modularity.yml
new file mode 100644
index 0000000..94f43a4
--- /dev/null
+++ b/test/integration/targets/dnf/tasks/modularity.yml
@@ -0,0 +1,104 @@
+# FUTURE - look at including AppStream support in our local repo
+- name: Include distribution specific variables
+ include_vars: "{{ item }}"
+ with_first_found:
+ - files:
+ - "{{ ansible_facts.distribution }}-{{ ansible_facts.distribution_major_version }}.yml"
+ - "{{ ansible_facts.distribution }}.yml"
+ paths: ../vars
+
+- name: install "{{ astream_name }}" module
+ dnf:
+ name: "{{ astream_name }}"
+ state: present
+ register: dnf_result
+
+- name: verify installation of "{{ astream_name }}" module
+ assert:
+ that:
+ - "not dnf_result.failed"
+ - "dnf_result.changed"
+
+- name: install "{{ astream_name }}" module again
+ dnf:
+ name: "{{ astream_name }}"
+ state: present
+ register: dnf_result
+
+- name: verify installation of "{{ astream_name }}" module again
+ assert:
+ that:
+ - "not dnf_result.failed"
+ - "not dnf_result.changed"
+
+- name: uninstall "{{ astream_name }}" module
+ dnf:
+ name: "{{ astream_name }}"
+ state: absent
+ register: dnf_result
+
+- name: verify uninstallation of "{{ astream_name }}" module
+ assert:
+ that:
+ - "not dnf_result.failed"
+ - "dnf_result.changed"
+
+- name: uninstall "{{ astream_name }}" module again
+ dnf:
+ name: "{{ astream_name }}"
+ state: absent
+ register: dnf_result
+
+- name: verify uninstallation of "{{ astream_name }}" module again
+ assert:
+ that:
+ - "not dnf_result.failed"
+ - "not dnf_result.changed"
+
+- name: install "{{ astream_name_no_stream }}" module without providing stream
+ dnf:
+ name: "{{ astream_name_no_stream }}"
+ state: present
+ register: dnf_result
+
+- name: verify installation of "{{ astream_name_no_stream }}" module without providing stream
+ assert:
+ that:
+ - "not dnf_result.failed"
+ - "dnf_result.changed"
+
+- name: install "{{ astream_name_no_stream }}" module again without providing stream
+ dnf:
+ name: "{{ astream_name_no_stream }}"
+ state: present
+ register: dnf_result
+
+- name: verify installation of "{{ astream_name_no_stream }}" module again without providing stream
+ assert:
+ that:
+ - "not dnf_result.failed"
+ - "not dnf_result.changed"
+
+- name: uninstall "{{ astream_name_no_stream }}" module without providing stream
+ dnf:
+ name: "{{ astream_name_no_stream }}"
+ state: absent
+ register: dnf_result
+
+- name: verify uninstallation of "{{ astream_name_no_stream }}" module without providing stream
+ assert:
+ that:
+ - "not dnf_result.failed"
+ - "dnf_result.changed"
+
+- name: uninstall "{{ astream_name_no_stream }}" module again without providing stream
+ dnf:
+ name: "{{ astream_name_no_stream }}"
+ state: absent
+ register: dnf_result
+
+- name: verify uninstallation of "{{ astream_name_no_stream }}" module again without providing stream
+ assert:
+ that:
+ - "not dnf_result.failed"
+ - "not dnf_result.changed"