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>
This commit is contained in:
Alexei Znamensky 2021-11-01 06:38:21 +13:00 committed by GitHub
parent b429c520f5
commit bd96616e6f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
15 changed files with 407 additions and 0 deletions

View file

@ -0,0 +1,6 @@
shippable/posix/group1
skip/aix
skip/freebsd
skip/osx
skip/macos
skip/docker

View file

@ -0,0 +1,4 @@
has_snap: false
snap_packages:
- snapd

View file

@ -0,0 +1,5 @@
---
- name: Remove snapd
package:
name: "{{ snap_packages }}"
state: absent

View file

@ -0,0 +1,3 @@
dependencies:
- setup_pkg_mgr
- setup_epel

View file

@ -0,0 +1 @@
default.yml

View file

@ -0,0 +1 @@
default.yml

View file

@ -0,0 +1 @@
default.yml

View file

@ -0,0 +1,21 @@
---
- name: Install snapd
package:
name: "{{ snap_packages }}"
state: present
notify: Remove snapd
- name: Make sure that snapd is running
service:
name: snapd
state: started
- name: Create link /snap
file:
src: /var/lib/snapd/snap
dest: /snap
state: link
- name: Inform that snap is installed
set_fact:
has_snap: true

View file

@ -0,0 +1,22 @@
---
####################################################################
# WARNING: These are designed specifically for Ansible tests #
# and should not be used as examples of how to write Ansible roles #
####################################################################
- name: Include distribution specific tasks
include_tasks: "{{ lookup('first_found', params) }}"
vars:
params:
files:
- "{{ ansible_facts.distribution }}-{{ ansible_facts.distribution_major_version }}.yml"
- "{{ ansible_facts.os_family }}-{{ ansible_facts.distribution_major_version }}.yml"
- "{{ ansible_facts.distribution }}.yml"
- "{{ ansible_facts.os_family }}.yml"
- "nothing.yml"
paths:
- "{{ role_path }}/tasks"
- name: Test
include_tasks: test.yml
when: has_snap

View file

@ -0,0 +1,2 @@
---
# Do nothing

View file

@ -0,0 +1,155 @@
---
- 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"] == []'