mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Add support for state=latest to flatpak module (#8221)
Fixes #6563 by extending the allowed values of the `state` parameter to include `latest`. To do this, the `update_flat()` function is introduced which borrows the majority of its implementation from both the existing `install_flat()` and `remove_flat()` functions. The documentation and examples have been expanded describing what to expect when using `state=latest`.
This commit is contained in:
parent
8f98ba9119
commit
0735656319
3 changed files with 328 additions and 12 deletions
|
@ -26,7 +26,9 @@ extends_documentation_fragment:
|
||||||
- community.general.attributes
|
- community.general.attributes
|
||||||
attributes:
|
attributes:
|
||||||
check_mode:
|
check_mode:
|
||||||
support: full
|
support: partial
|
||||||
|
details:
|
||||||
|
- If O(state=latest), the module will always return C(changed=true).
|
||||||
diff_mode:
|
diff_mode:
|
||||||
support: none
|
support: none
|
||||||
options:
|
options:
|
||||||
|
@ -53,12 +55,12 @@ options:
|
||||||
- Both C(https://) and C(http://) URLs are supported.
|
- Both C(https://) and C(http://) URLs are supported.
|
||||||
- When supplying a reverse DNS name, you can use the O(remote) option to specify on what remote
|
- When supplying a reverse DNS name, you can use the O(remote) option to specify on what remote
|
||||||
to look for the flatpak. An example for a reverse DNS name is C(org.gnome.gedit).
|
to look for the flatpak. An example for a reverse DNS name is C(org.gnome.gedit).
|
||||||
- When used with O(state=absent), it is recommended to specify the name in the reverse DNS
|
- When used with O(state=absent) or O(state=latest), it is recommended to specify the name in
|
||||||
format.
|
the reverse DNS format.
|
||||||
- When supplying a URL with O(state=absent), the module will try to match the
|
- When supplying a URL with O(state=absent) or O(state=latest), the module will try to match the
|
||||||
installed flatpak based on the name of the flatpakref to remove it. However, there is no
|
installed flatpak based on the name of the flatpakref to remove or update it. However, there
|
||||||
guarantee that the names of the flatpakref file and the reverse DNS name of the installed
|
is no guarantee that the names of the flatpakref file and the reverse DNS name of the
|
||||||
flatpak do match.
|
installed flatpak do match.
|
||||||
type: list
|
type: list
|
||||||
elements: str
|
elements: str
|
||||||
required: true
|
required: true
|
||||||
|
@ -82,7 +84,8 @@ options:
|
||||||
state:
|
state:
|
||||||
description:
|
description:
|
||||||
- Indicates the desired package state.
|
- Indicates the desired package state.
|
||||||
choices: [ absent, present ]
|
- The value V(latest) is supported since community.general 8.6.0.
|
||||||
|
choices: [ absent, present, latest ]
|
||||||
type: str
|
type: str
|
||||||
default: present
|
default: present
|
||||||
'''
|
'''
|
||||||
|
@ -118,6 +121,37 @@ EXAMPLES = r'''
|
||||||
- org.inkscape.Inkscape
|
- org.inkscape.Inkscape
|
||||||
- org.mozilla.firefox
|
- org.mozilla.firefox
|
||||||
|
|
||||||
|
- name: Update the spotify flatpak
|
||||||
|
community.general.flatpak:
|
||||||
|
name: https://s3.amazonaws.com/alexlarsson/spotify-repo/spotify.flatpakref
|
||||||
|
state: latest
|
||||||
|
|
||||||
|
- name: Update the gedit flatpak package without dependencies (not recommended)
|
||||||
|
community.general.flatpak:
|
||||||
|
name: https://git.gnome.org/browse/gnome-apps-nightly/plain/gedit.flatpakref
|
||||||
|
state: latest
|
||||||
|
no_dependencies: true
|
||||||
|
|
||||||
|
- name: Update the gedit package from flathub for current user
|
||||||
|
community.general.flatpak:
|
||||||
|
name: org.gnome.gedit
|
||||||
|
state: latest
|
||||||
|
method: user
|
||||||
|
|
||||||
|
- name: Update the Gnome Calendar flatpak from the gnome remote system-wide
|
||||||
|
community.general.flatpak:
|
||||||
|
name: org.gnome.Calendar
|
||||||
|
state: latest
|
||||||
|
remote: gnome
|
||||||
|
|
||||||
|
- name: Update multiple packages
|
||||||
|
community.general.flatpak:
|
||||||
|
name:
|
||||||
|
- org.gimp.GIMP
|
||||||
|
- org.inkscape.Inkscape
|
||||||
|
- org.mozilla.firefox
|
||||||
|
state: latest
|
||||||
|
|
||||||
- name: Remove the gedit flatpak
|
- name: Remove the gedit flatpak
|
||||||
community.general.flatpak:
|
community.general.flatpak:
|
||||||
name: org.gnome.gedit
|
name: org.gnome.gedit
|
||||||
|
@ -195,6 +229,28 @@ def install_flat(module, binary, remote, names, method, no_dependencies):
|
||||||
result['changed'] = True
|
result['changed'] = True
|
||||||
|
|
||||||
|
|
||||||
|
def update_flat(module, binary, names, method, no_dependencies):
|
||||||
|
"""Update existing flatpaks."""
|
||||||
|
global result # pylint: disable=global-variable-not-assigned
|
||||||
|
installed_flat_names = [
|
||||||
|
_match_installed_flat_name(module, binary, name, method)
|
||||||
|
for name in names
|
||||||
|
]
|
||||||
|
command = [binary, "update", "--{0}".format(method)]
|
||||||
|
flatpak_version = _flatpak_version(module, binary)
|
||||||
|
if LooseVersion(flatpak_version) < LooseVersion('1.1.3'):
|
||||||
|
command += ["-y"]
|
||||||
|
else:
|
||||||
|
command += ["--noninteractive"]
|
||||||
|
if no_dependencies:
|
||||||
|
command += ["--no-deps"]
|
||||||
|
command += installed_flat_names
|
||||||
|
stdout = _flatpak_command(module, module.check_mode, command)
|
||||||
|
result["changed"] = (
|
||||||
|
True if module.check_mode else stdout.find("Nothing to do.") == -1
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
def uninstall_flat(module, binary, names, method):
|
def uninstall_flat(module, binary, names, method):
|
||||||
"""Remove existing flatpaks."""
|
"""Remove existing flatpaks."""
|
||||||
global result # pylint: disable=global-variable-not-assigned
|
global result # pylint: disable=global-variable-not-assigned
|
||||||
|
@ -313,7 +369,7 @@ def main():
|
||||||
method=dict(type='str', default='system',
|
method=dict(type='str', default='system',
|
||||||
choices=['user', 'system']),
|
choices=['user', 'system']),
|
||||||
state=dict(type='str', default='present',
|
state=dict(type='str', default='present',
|
||||||
choices=['absent', 'present']),
|
choices=['absent', 'present', 'latest']),
|
||||||
no_dependencies=dict(type='bool', default=False),
|
no_dependencies=dict(type='bool', default=False),
|
||||||
executable=dict(type='path', default='flatpak')
|
executable=dict(type='path', default='flatpak')
|
||||||
),
|
),
|
||||||
|
@ -338,10 +394,13 @@ def main():
|
||||||
module.fail_json(msg="Executable '%s' was not found on the system." % executable, **result)
|
module.fail_json(msg="Executable '%s' was not found on the system." % executable, **result)
|
||||||
|
|
||||||
installed, not_installed = flatpak_exists(module, binary, name, method)
|
installed, not_installed = flatpak_exists(module, binary, name, method)
|
||||||
if state == 'present' and not_installed:
|
if state == 'absent' and installed:
|
||||||
install_flat(module, binary, remote, not_installed, method, no_dependencies)
|
|
||||||
elif state == 'absent' and installed:
|
|
||||||
uninstall_flat(module, binary, installed, method)
|
uninstall_flat(module, binary, installed, method)
|
||||||
|
else:
|
||||||
|
if state == 'latest' and installed:
|
||||||
|
update_flat(module, binary, installed, method, no_dependencies)
|
||||||
|
if state in ('present', 'latest') and not_installed:
|
||||||
|
install_flat(module, binary, remote, not_installed, method, no_dependencies)
|
||||||
|
|
||||||
module.exit_json(**result)
|
module.exit_json(**result)
|
||||||
|
|
||||||
|
|
|
@ -52,6 +52,38 @@
|
||||||
- removal_result is not changed
|
- removal_result is not changed
|
||||||
msg: "Removing an absent flatpak shall mark module execution as not changed"
|
msg: "Removing an absent flatpak shall mark module execution as not changed"
|
||||||
|
|
||||||
|
# state=latest on absent flatpak
|
||||||
|
|
||||||
|
- name: Test state=latest of absent flatpak (check mode)
|
||||||
|
flatpak:
|
||||||
|
name: com.dummy.App1
|
||||||
|
remote: dummy-remote
|
||||||
|
state: latest
|
||||||
|
register: latest_result
|
||||||
|
check_mode: true
|
||||||
|
|
||||||
|
- name: Verify state=latest of absent flatpak test result (check mode)
|
||||||
|
assert:
|
||||||
|
that:
|
||||||
|
- latest_result is changed
|
||||||
|
msg: "state=latest an absent flatpak shall mark module execution as changed"
|
||||||
|
|
||||||
|
- name: Test non-existent idempotency of state=latest of absent flatpak (check mode)
|
||||||
|
flatpak:
|
||||||
|
name: com.dummy.App1
|
||||||
|
remote: dummy-remote
|
||||||
|
state: latest
|
||||||
|
register: double_latest_result
|
||||||
|
check_mode: true
|
||||||
|
|
||||||
|
- name: Verify non-existent idempotency of state=latest of absent flatpak test result (check mode)
|
||||||
|
assert:
|
||||||
|
that:
|
||||||
|
- double_latest_result is changed
|
||||||
|
msg: |
|
||||||
|
state=latest an absent flatpak a second time shall still mark module execution
|
||||||
|
as changed in check mode
|
||||||
|
|
||||||
# state=present with url on absent flatpak
|
# state=present with url on absent flatpak
|
||||||
|
|
||||||
- name: Test addition of absent flatpak with url (check mode)
|
- name: Test addition of absent flatpak with url (check mode)
|
||||||
|
@ -101,6 +133,40 @@
|
||||||
- url_removal_result is not changed
|
- url_removal_result is not changed
|
||||||
msg: "Removing an absent flatpak shall mark module execution as not changed"
|
msg: "Removing an absent flatpak shall mark module execution as not changed"
|
||||||
|
|
||||||
|
# state=latest with url on absent flatpak
|
||||||
|
|
||||||
|
- name: Test state=latest of absent flatpak with url (check mode)
|
||||||
|
flatpak:
|
||||||
|
name: http://127.0.0.1:8000/repo/com.dummy.App1.flatpakref
|
||||||
|
remote: dummy-remote
|
||||||
|
state: latest
|
||||||
|
register: url_latest_result
|
||||||
|
check_mode: true
|
||||||
|
|
||||||
|
- name: Verify state=latest of absent flatpak with url test result (check mode)
|
||||||
|
assert:
|
||||||
|
that:
|
||||||
|
- url_latest_result is changed
|
||||||
|
msg: "state=latest an absent flatpak from URL shall mark module execution as changed"
|
||||||
|
|
||||||
|
- name: Test non-existent idempotency of state=latest of absent flatpak with url (check mode)
|
||||||
|
flatpak:
|
||||||
|
name: http://127.0.0.1:8000/repo/com.dummy.App1.flatpakref
|
||||||
|
remote: dummy-remote
|
||||||
|
state: latest
|
||||||
|
register: double_url_latest_result
|
||||||
|
check_mode: true
|
||||||
|
|
||||||
|
- name: >
|
||||||
|
Verify non-existent idempotency of additionof state=latest flatpak with url test
|
||||||
|
result (check mode)
|
||||||
|
assert:
|
||||||
|
that:
|
||||||
|
- double_url_latest_result is changed
|
||||||
|
msg: |
|
||||||
|
state=latest an absent flatpak from URL a second time shall still mark module execution
|
||||||
|
as changed in check mode
|
||||||
|
|
||||||
# - Tests with present flatpak -------------------------------------------------
|
# - Tests with present flatpak -------------------------------------------------
|
||||||
|
|
||||||
# state=present on present flatpak
|
# state=present on present flatpak
|
||||||
|
@ -149,6 +215,22 @@
|
||||||
Removing a present flatpak a second time shall still mark module execution
|
Removing a present flatpak a second time shall still mark module execution
|
||||||
as changed in check mode
|
as changed in check mode
|
||||||
|
|
||||||
|
# state=latest on present flatpak
|
||||||
|
|
||||||
|
- name: Test state=latest of present flatpak (check mode)
|
||||||
|
flatpak:
|
||||||
|
name: com.dummy.App2
|
||||||
|
remote: dummy-remote
|
||||||
|
state: latest
|
||||||
|
register: latest_present_result
|
||||||
|
check_mode: true
|
||||||
|
|
||||||
|
- name: Verify latest test result of present flatpak (check mode)
|
||||||
|
assert:
|
||||||
|
that:
|
||||||
|
- latest_present_result is changed
|
||||||
|
msg: "state=latest an present flatpak shall mark module execution as changed"
|
||||||
|
|
||||||
# state=present with url on present flatpak
|
# state=present with url on present flatpak
|
||||||
|
|
||||||
- name: Test addition with url of present flatpak (check mode)
|
- name: Test addition with url of present flatpak (check mode)
|
||||||
|
@ -195,3 +277,19 @@
|
||||||
that:
|
that:
|
||||||
- double_url_removal_present_result is changed
|
- double_url_removal_present_result is changed
|
||||||
msg: Removing an absent flatpak a second time shall still mark module execution as changed
|
msg: Removing an absent flatpak a second time shall still mark module execution as changed
|
||||||
|
|
||||||
|
# state=latest with url on present flatpak
|
||||||
|
|
||||||
|
- name: Test state=latest with url of present flatpak (check mode)
|
||||||
|
flatpak:
|
||||||
|
name: http://127.0.0.1:8000/repo/com.dummy.App2.flatpakref
|
||||||
|
remote: dummy-remote
|
||||||
|
state: latest
|
||||||
|
register: url_latest_present_result
|
||||||
|
check_mode: true
|
||||||
|
|
||||||
|
- name: Verify state=latest with url of present flatpak test result (check mode)
|
||||||
|
assert:
|
||||||
|
that:
|
||||||
|
- url_latest_present_result is changed
|
||||||
|
msg: "state=latest a present flatpak from URL shall mark module execution as changed"
|
||||||
|
|
|
@ -65,6 +65,45 @@
|
||||||
- double_removal_result is not changed
|
- double_removal_result is not changed
|
||||||
msg: "state=absent shall not do anything when flatpak is not present"
|
msg: "state=absent shall not do anything when flatpak is not present"
|
||||||
|
|
||||||
|
# state=latest
|
||||||
|
|
||||||
|
- name: Test state=latest - {{ method }}
|
||||||
|
flatpak:
|
||||||
|
name: com.dummy.App1
|
||||||
|
remote: dummy-remote
|
||||||
|
state: present
|
||||||
|
method: "{{ method }}"
|
||||||
|
no_dependencies: true
|
||||||
|
register: latest_result
|
||||||
|
|
||||||
|
- name: Verify state=latest test result - {{ method }}
|
||||||
|
assert:
|
||||||
|
that:
|
||||||
|
- latest_result is changed
|
||||||
|
msg: "state=latest shall add flatpak when absent"
|
||||||
|
|
||||||
|
- name: Test idempotency of state=latest - {{ method }}
|
||||||
|
flatpak:
|
||||||
|
name: com.dummy.App1
|
||||||
|
remote: dummy-remote
|
||||||
|
state: present
|
||||||
|
method: "{{ method }}"
|
||||||
|
no_dependencies: true
|
||||||
|
register: double_latest_result
|
||||||
|
|
||||||
|
- name: Verify idempotency of state=latest test result - {{ method }}
|
||||||
|
assert:
|
||||||
|
that:
|
||||||
|
- double_latest_result is not changed
|
||||||
|
msg: "state=latest shall not do anything when flatpak is already present"
|
||||||
|
|
||||||
|
- name: Cleanup after state=present test - {{ method }}
|
||||||
|
flatpak:
|
||||||
|
name: com.dummy.App1
|
||||||
|
state: absent
|
||||||
|
method: "{{ method }}"
|
||||||
|
no_dependencies: true
|
||||||
|
|
||||||
# state=present with url as name
|
# state=present with url as name
|
||||||
|
|
||||||
- name: Test addition with url - {{ method }}
|
- name: Test addition with url - {{ method }}
|
||||||
|
@ -152,6 +191,45 @@
|
||||||
method: "{{ method }}"
|
method: "{{ method }}"
|
||||||
no_dependencies: true
|
no_dependencies: true
|
||||||
|
|
||||||
|
# state=latest with url as name
|
||||||
|
|
||||||
|
- name: Test state=latest with url - {{ method }}
|
||||||
|
flatpak:
|
||||||
|
name: http://127.0.0.1:8000/repo/com.dummy.App1.flatpakref
|
||||||
|
remote: dummy-remote
|
||||||
|
state: latest
|
||||||
|
method: "{{ method }}"
|
||||||
|
no_dependencies: true
|
||||||
|
register: url_latest_result
|
||||||
|
|
||||||
|
- name: Verify state=latest test result - {{ method }}
|
||||||
|
assert:
|
||||||
|
that:
|
||||||
|
- url_latest_result is changed
|
||||||
|
msg: "state=present with url as name shall add flatpak when absent"
|
||||||
|
|
||||||
|
- name: Test idempotency of state=latest with url - {{ method }}
|
||||||
|
flatpak:
|
||||||
|
name: http://127.0.0.1:8000/repo/com.dummy.App1.flatpakref
|
||||||
|
remote: dummy-remote
|
||||||
|
state: latest
|
||||||
|
method: "{{ method }}"
|
||||||
|
no_dependencies: true
|
||||||
|
register: double_url_latest_result
|
||||||
|
|
||||||
|
- name: Verify idempotency of state=latest with url test result - {{ method }}
|
||||||
|
assert:
|
||||||
|
that:
|
||||||
|
- double_url_latest_result is not changed
|
||||||
|
msg: "state=present with url as name shall not do anything when flatpak is already present"
|
||||||
|
|
||||||
|
- name: Cleanup after state=present with url test - {{ method }}
|
||||||
|
flatpak:
|
||||||
|
name: com.dummy.App1
|
||||||
|
state: absent
|
||||||
|
method: "{{ method }}"
|
||||||
|
no_dependencies: true
|
||||||
|
|
||||||
# state=present with list of packages
|
# state=present with list of packages
|
||||||
|
|
||||||
- name: Test addition with list - {{ method }}
|
- name: Test addition with list - {{ method }}
|
||||||
|
@ -287,3 +365,84 @@
|
||||||
that:
|
that:
|
||||||
- double_removal_result is not changed
|
- double_removal_result is not changed
|
||||||
msg: "state=absent shall not do anything when flatpak is not present"
|
msg: "state=absent shall not do anything when flatpak is not present"
|
||||||
|
|
||||||
|
# state=latest with list of packages
|
||||||
|
|
||||||
|
- name: Test state=latest with list - {{ method }}
|
||||||
|
flatpak:
|
||||||
|
name:
|
||||||
|
- com.dummy.App1
|
||||||
|
- http://127.0.0.1:8000/repo/com.dummy.App2.flatpakref
|
||||||
|
remote: dummy-remote
|
||||||
|
state: latest
|
||||||
|
method: "{{ method }}"
|
||||||
|
no_dependencies: true
|
||||||
|
register: latest_result
|
||||||
|
|
||||||
|
- name: Verify state=latest with list test result - {{ method }}
|
||||||
|
assert:
|
||||||
|
that:
|
||||||
|
- latest_result is changed
|
||||||
|
msg: "state=present shall add flatpak when absent"
|
||||||
|
|
||||||
|
- name: Test idempotency of state=latest with list - {{ method }}
|
||||||
|
flatpak:
|
||||||
|
name:
|
||||||
|
- com.dummy.App1
|
||||||
|
- http://127.0.0.1:8000/repo/com.dummy.App2.flatpakref
|
||||||
|
remote: dummy-remote
|
||||||
|
state: latest
|
||||||
|
method: "{{ method }}"
|
||||||
|
no_dependencies: true
|
||||||
|
register: double_latest_result
|
||||||
|
|
||||||
|
- name: Verify idempotency of state=latest with list test result - {{ method }}
|
||||||
|
assert:
|
||||||
|
that:
|
||||||
|
- double_latest_result is not changed
|
||||||
|
msg: "state=present shall not do anything when flatpak is already present"
|
||||||
|
|
||||||
|
- name: Test state=latest with list partially installed - {{ method }}
|
||||||
|
flatpak:
|
||||||
|
name:
|
||||||
|
- com.dummy.App1
|
||||||
|
- http://127.0.0.1:8000/repo/com.dummy.App2.flatpakref
|
||||||
|
- com.dummy.App3
|
||||||
|
remote: dummy-remote
|
||||||
|
state: latest
|
||||||
|
method: "{{ method }}"
|
||||||
|
no_dependencies: true
|
||||||
|
register: latest_result
|
||||||
|
|
||||||
|
- name: Verify state=latest with list partially installed test result - {{ method }}
|
||||||
|
assert:
|
||||||
|
that:
|
||||||
|
- latest_result is changed
|
||||||
|
msg: "state=present shall add flatpak when absent"
|
||||||
|
|
||||||
|
- name: Test idempotency of state=latest with list partially installed - {{ method }}
|
||||||
|
flatpak:
|
||||||
|
name:
|
||||||
|
- com.dummy.App1
|
||||||
|
- http://127.0.0.1:8000/repo/com.dummy.App2.flatpakref
|
||||||
|
- com.dummy.App3
|
||||||
|
remote: dummy-remote
|
||||||
|
state: latest
|
||||||
|
method: "{{ method }}"
|
||||||
|
no_dependencies: true
|
||||||
|
register: double_latest_result
|
||||||
|
|
||||||
|
- name: Verify idempotency of state=latest with list partially installed test result - {{ method }}
|
||||||
|
assert:
|
||||||
|
that:
|
||||||
|
- double_latest_result is not changed
|
||||||
|
msg: "state=present shall not do anything when flatpak is already present"
|
||||||
|
|
||||||
|
- name: Cleanup after state=present with list test - {{ method }}
|
||||||
|
flatpak:
|
||||||
|
name:
|
||||||
|
- com.dummy.App1
|
||||||
|
- com.dummy.App2
|
||||||
|
- com.dummy.App3
|
||||||
|
state: absent
|
||||||
|
method: "{{ method }}"
|
||||||
|
|
Loading…
Reference in a new issue