1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00
community.general/tests/integration/targets/snap_alias/tasks/test.yml
Alexei Znamensky bd96616e6f
snap_alias - new module (#3642)
* snap_alias - manage snap aliases

* removed extraneous import

* executing the module, the new way

* added link and bot entry

* scaffolding from snap

* completed module + integration tests

* fixed sanity checks

* Update plugins/modules/packaging/os/snap_alias.py

Co-authored-by: Felix Fontein <felix@fontein.de>

* Update plugins/modules/packaging/os/snap_alias.py

Co-authored-by: Felix Fontein <felix@fontein.de>

* Update plugins/modules/packaging/os/snap_alias.py

Co-authored-by: Felix Fontein <felix@fontein.de>

* removed extraneous task from test

* added seealso, removed unused import

* added check_mode + plus check_mode and idempotency tests

* Update plugins/modules/packaging/os/snap_alias.py

Co-authored-by: Felix Fontein <felix@fontein.de>

* Improved RETURN description.

Co-authored-by: Felix Fontein <felix@fontein.de>
2021-10-31 18:38:21 +01:00

155 lines
4.1 KiB
YAML

---
- name: Ensure snap 'hello-world' is not installed
community.general.snap:
name: hello-world
state: absent
- name: Ensure snap 'hello-world' is installed fresh
community.general.snap:
name: hello-world
################################################################################
- name: Create snap alias (check mode)
community.general.snap_alias:
name: hello-world
alias: hw
check_mode: true
register: alias_single_0
- name: Create snap alias
community.general.snap_alias:
name: hello-world
alias: hw
register: alias_single_1
- name: Create snap alias (check mode idempotent)
community.general.snap_alias:
name: hello-world
alias: hw
check_mode: true
register: alias_single_2
- name: Create snap alias (idempotent)
community.general.snap_alias:
name: hello-world
alias: hw
register: alias_single_3
- name: assert single alias
assert:
that:
- alias_single_0 is changed
- alias_single_1 is changed
- alias_single_2 is not changed
- alias_single_3 is not changed
- 'alias_single_1.snap_aliases["hello-world"] == ["hw"]'
- 'alias_single_3.snap_aliases["hello-world"] == ["hw"]'
- name: Create multiple aliases (check mode)
community.general.snap_alias:
name: hello-world
aliases: [hw, hw2, hw3]
check_mode: true
register: alias_multi_0
- name: Create multiple aliases
community.general.snap_alias:
name: hello-world
aliases: [hw, hw2, hw3]
register: alias_multi_1
- name: Create multiple aliases (check mode idempotent)
community.general.snap_alias:
name: hello-world
aliases: [hw, hw2, hw3]
check_mode: true
register: alias_multi_2
- name: Create multiple aliases (idempotent)
community.general.snap_alias:
name: hello-world
aliases: [hw, hw2, hw3]
register: alias_multi_3
- name: assert multi alias
assert:
that:
- alias_multi_0 is changed
- alias_multi_1 is changed
- alias_multi_2 is not changed
- alias_multi_3 is not changed
- 'alias_multi_1.snap_aliases["hello-world"] == ["hw", "hw2", "hw3"]'
- 'alias_multi_3.snap_aliases["hello-world"] == ["hw", "hw2", "hw3"]'
- name: Remove one specific alias (check mode)
community.general.snap_alias:
alias: hw
state: absent
check_mode: true
register: alias_remove_0
- name: Remove one specific alias
community.general.snap_alias:
alias: hw
state: absent
register: alias_remove_1
- name: Remove one specific alias (check mode idempotent)
community.general.snap_alias:
alias: hw
state: absent
check_mode: true
register: alias_remove_2
- name: Remove one specific alias (idempotent)
community.general.snap_alias:
alias: hw
state: absent
register: alias_remove_3
- name: assert remove alias
assert:
that:
- alias_remove_0 is changed
- alias_remove_1 is changed
- alias_remove_2 is not changed
- alias_remove_3 is not changed
- 'alias_remove_1.snap_aliases["hello-world"] == ["hw2", "hw3"]'
- 'alias_remove_3.snap_aliases["hello-world"] == ["hw2", "hw3"]'
- name: Remove all aliases for snap (check mode)
community.general.snap_alias:
name: hello-world
state: absent
check_mode: true
register: alias_remove_all_0
- name: Remove all aliases for snap
community.general.snap_alias:
name: hello-world
state: absent
register: alias_remove_all_1
- name: Remove all aliases for snap (check mode idempotent)
community.general.snap_alias:
name: hello-world
state: absent
check_mode: true
register: alias_remove_all_2
- name: Remove all aliases for snap (idempotent)
community.general.snap_alias:
name: hello-world
state: absent
register: alias_remove_all_3
- name: assert remove_all alias
assert:
that:
- alias_remove_all_0 is changed
- alias_remove_all_1 is changed
- alias_remove_all_2 is not changed
- alias_remove_all_3 is not changed
- 'alias_remove_all_1.snap_aliases["hello-world"] == []'
- 'alias_remove_all_3.snap_aliases["hello-world"] == []'