1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

snap - fixed param order (#2918)

* fixed param order

* added changelog fragment

* rebased and uncommented tests per PR

* added /snap link in RH

* typo in tests

* Update tests/integration/targets/snap/tasks/default.yml

Co-authored-by: Felix Fontein <felix@fontein.de>
This commit is contained in:
Alexei Znamensky 2021-07-04 02:31:30 +12:00 committed by GitHub
parent a0915036f9
commit 9b02230477
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 58 additions and 50 deletions

View file

@ -0,0 +1,2 @@
bugfixes:
- snap - fixed the order of the ``--classic`` parameter in the command line invocation (https://github.com/ansible-collections/community.general/issues/2916).

View file

@ -133,10 +133,10 @@ class Snap(CmdStateModuleHelper):
module = dict(
argument_spec={
'name': dict(type='list', elements='str', required=True),
'state': dict(type='str', required=False, default='present',
'state': dict(type='str', default='present',
choices=['absent', 'present', 'enabled', 'disabled']),
'classic': dict(type='bool', required=False, default=False),
'channel': dict(type='str', required=False, default='stable'),
'classic': dict(type='bool', default=False),
'channel': dict(type='str', default='stable'),
},
supports_check_mode=True,
)
@ -205,7 +205,7 @@ class Snap(CmdStateModuleHelper):
self.vars.snaps_installed = actionable_snaps
if self.module.check_mode:
return
params = ['classic', 'channel', 'state'] # get base cmd parts
params = ['state', 'classic', 'channel'] # get base cmd parts
has_one_pkg_params = bool(self.vars.classic) or self.vars.channel != 'stable'
has_multiple_snaps = len(actionable_snaps) > 1
if has_one_pkg_params and has_multiple_snaps:

View file

@ -10,6 +10,12 @@
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

@ -96,50 +96,50 @@
- remove_again is not changed
- remove_again_check is not changed
# - name: Make sure package from classic snap is not installed
# community.general.snap:
# name: nvim
# state: absent
#
# - name: Install package from classic snap
# community.general.snap:
# name: nvim
# state: present
# classic: true
# register: classic_install
#
# # testing classic idempotency
# - name: Install package from classic snap again
# community.general.snap:
# name: nvim
# state: present
# classic: true
# register: classic_install_again
#
# - name: Assert package has been installed just once
# assert:
# that:
# - classic_install is changed
# - classic_install_again is not changed
#
# # this is just testing if a package which has been installed
# # with true classic can be removed without setting classic to true
# - name: Remove package from classic snap without setting classic to true
# community.general.snap:
# name: nvim
# state: absent
# register: classic_remove_without_true_classic
#
# - name: Remove package from classic snap with setting classic to true
# community.general.snap:
# name: nvim
# state: absent
# classic: true
# register: classic_remove_with_true_classic
#
# - name: Assert package has been removed without setting classic to true
# assert:
# that:
# - classic_remove_without_ture_classic is changed
# - classic_remove_with_ture_classic is not changed
- name: Make sure package from classic snap is not installed
community.general.snap:
name: nvim
state: absent
- name: Install package from classic snap
community.general.snap:
name: nvim
state: present
classic: true
register: classic_install
# testing classic idempotency
- name: Install package from classic snap again
community.general.snap:
name: nvim
state: present
classic: true
register: classic_install_again
- name: Assert package has been installed just once
assert:
that:
- classic_install is changed
- classic_install_again is not changed
# this is just testing if a package which has been installed
# with true classic can be removed without setting classic to true
- name: Remove package from classic snap without setting classic to true
community.general.snap:
name: nvim
state: absent
register: classic_remove_without_true_classic
- name: Remove package from classic snap with setting classic to true
community.general.snap:
name: nvim
state: absent
classic: true
register: classic_remove_with_true_classic
- name: Assert package has been removed without setting classic to true
assert:
that:
- classic_remove_without_true_classic is changed
- classic_remove_with_true_classic is not changed
when: has_snap