mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-08-20 04:51:43 -07:00
Initial commit
This commit is contained in:
commit
aebc1b03fd
4861 changed files with 812621 additions and 0 deletions
101
tests/integration/targets/flatpak_remote/tasks/check_mode.yml
Normal file
101
tests/integration/targets/flatpak_remote/tasks/check_mode.yml
Normal file
|
@ -0,0 +1,101 @@
|
|||
# - Tests with absent flatpak remote -------------------------------------------
|
||||
|
||||
# state=present
|
||||
|
||||
- name: Test addition of absent flatpak remote (check mode)
|
||||
flatpak_remote:
|
||||
name: flatpak-test
|
||||
flatpakrepo_url: /tmp/flatpak/repo/dummy-repo.flatpakrepo
|
||||
state: present
|
||||
register: addition_result
|
||||
check_mode: true
|
||||
|
||||
- name: Verify addition of absent flatpak remote test result (check mode)
|
||||
assert:
|
||||
that:
|
||||
- "addition_result.changed == true"
|
||||
msg: "Adding an absent flatpak remote shall mark module execution as changed"
|
||||
|
||||
- name: Test non-existent idempotency of addition of absent flatpak remote (check mode)
|
||||
flatpak_remote:
|
||||
name: flatpak-test
|
||||
flatpakrepo_url: /tmp/flatpak/repo/dummy-repo.flatpakrepo
|
||||
state: present
|
||||
register: double_addition_result
|
||||
check_mode: true
|
||||
|
||||
- name: >
|
||||
Verify non-existent idempotency of addition of absent flatpak remote
|
||||
test result (check mode)
|
||||
assert:
|
||||
that:
|
||||
- "double_addition_result.changed == true"
|
||||
msg: |
|
||||
Adding an absent flatpak remote a second time shall still mark module execution
|
||||
as changed in check mode
|
||||
|
||||
# state=absent
|
||||
|
||||
- name: Test removal of absent flatpak remote not doing anything in check mode
|
||||
flatpak_remote:
|
||||
name: flatpak-test
|
||||
state: absent
|
||||
register: removal_result
|
||||
check_mode: true
|
||||
|
||||
- name: Verify removal of absent flatpak remote test result (check mode)
|
||||
assert:
|
||||
that:
|
||||
- "removal_result.changed == false"
|
||||
msg: "Removing an absent flatpak remote shall mark module execution as not changed"
|
||||
|
||||
|
||||
# - Tests with present flatpak remote -------------------------------------------
|
||||
|
||||
# state=present
|
||||
|
||||
- name: Test addition of present flatpak remote (check mode)
|
||||
flatpak_remote:
|
||||
name: check-mode-test-remote
|
||||
flatpakrepo_url: /tmp/flatpak/repo/dummy-repo.flatpakrepo
|
||||
state: present
|
||||
register: addition_result
|
||||
check_mode: true
|
||||
|
||||
- name: Verify addition of present flatpak remote test result (check mode)
|
||||
assert:
|
||||
that:
|
||||
- "addition_result.changed == false"
|
||||
msg: "Adding a present flatpak remote shall mark module execution as not changed"
|
||||
|
||||
# state=absent
|
||||
|
||||
- name: Test removal of present flatpak remote not doing anything in check mode
|
||||
flatpak_remote:
|
||||
name: check-mode-test-remote
|
||||
state: absent
|
||||
register: removal_result
|
||||
check_mode: true
|
||||
|
||||
- name: Verify removal of present flatpak remote test result (check mode)
|
||||
assert:
|
||||
that:
|
||||
- "removal_result.changed == true"
|
||||
msg: "Removing a present flatpak remote shall mark module execution as changed"
|
||||
|
||||
- name: Test non-existent idempotency of removal of present flatpak remote (check mode)
|
||||
flatpak_remote:
|
||||
name: check-mode-test-remote
|
||||
state: absent
|
||||
register: double_removal_result
|
||||
check_mode: true
|
||||
|
||||
- name: >
|
||||
Verify non-existent idempotency of removal of present flatpak remote
|
||||
test result (check mode)
|
||||
assert:
|
||||
that:
|
||||
- "double_removal_result.changed == true"
|
||||
msg: |
|
||||
Removing a present flatpak remote a second time shall still mark module execution
|
||||
as changed in check mode
|
Loading…
Add table
Add a link
Reference in a new issue