2020-03-09 10:11:07 +01:00
|
|
|
# state=present
|
|
|
|
|
|
|
|
- name: Test addition - {{ method }}
|
|
|
|
flatpak:
|
|
|
|
name: org.gnome.Characters
|
|
|
|
remote: flathub
|
|
|
|
state: present
|
|
|
|
method: "{{ method }}"
|
|
|
|
register: addition_result
|
|
|
|
|
|
|
|
- name: Verify addition test result - {{ method }}
|
|
|
|
assert:
|
|
|
|
that:
|
2021-05-22 13:51:36 +02:00
|
|
|
- addition_result is changed
|
2020-06-26 08:31:53 +02:00
|
|
|
msg: "state=present shall add flatpak when absent"
|
2020-03-09 10:11:07 +01:00
|
|
|
|
|
|
|
- name: Test idempotency of addition - {{ method }}
|
|
|
|
flatpak:
|
|
|
|
name: org.gnome.Characters
|
|
|
|
remote: flathub
|
|
|
|
state: present
|
|
|
|
method: "{{ method }}"
|
|
|
|
register: double_addition_result
|
|
|
|
|
|
|
|
- name: Verify idempotency of addition test result - {{ method }}
|
|
|
|
assert:
|
|
|
|
that:
|
2021-05-22 13:51:36 +02:00
|
|
|
- double_addition_result is not changed
|
2020-03-09 10:11:07 +01:00
|
|
|
msg: "state=present shall not do anything when flatpak is already present"
|
|
|
|
|
|
|
|
# state=absent
|
|
|
|
|
|
|
|
- name: Test removal - {{ method }}
|
|
|
|
flatpak:
|
|
|
|
name: org.gnome.Characters
|
|
|
|
state: absent
|
|
|
|
method: "{{ method }}"
|
|
|
|
register: removal_result
|
|
|
|
|
|
|
|
- name: Verify removal test result - {{ method }}
|
|
|
|
assert:
|
|
|
|
that:
|
2021-05-22 13:51:36 +02:00
|
|
|
- removal_result is changed
|
2020-03-09 10:11:07 +01:00
|
|
|
msg: "state=absent shall remove flatpak when present"
|
|
|
|
|
|
|
|
- name: Test idempotency of removal - {{ method }}
|
|
|
|
flatpak:
|
|
|
|
name: org.gnome.Characters
|
|
|
|
state: absent
|
|
|
|
method: "{{ method }}"
|
|
|
|
register: double_removal_result
|
|
|
|
|
|
|
|
- name: Verify idempotency of removal test result - {{ method }}
|
|
|
|
assert:
|
|
|
|
that:
|
2021-05-22 13:51:36 +02:00
|
|
|
- double_removal_result is not changed
|
2020-03-09 10:11:07 +01:00
|
|
|
msg: "state=absent shall not do anything when flatpak is not present"
|
|
|
|
|
|
|
|
# state=present with url as name
|
|
|
|
|
|
|
|
- name: Test addition with url - {{ method }}
|
|
|
|
flatpak:
|
|
|
|
name: https://flathub.org/repo/appstream/org.gnome.Characters.flatpakref
|
|
|
|
remote: flathub
|
|
|
|
state: present
|
|
|
|
method: "{{ method }}"
|
|
|
|
register: url_addition_result
|
|
|
|
|
|
|
|
- name: Verify addition test result - {{ method }}
|
|
|
|
assert:
|
|
|
|
that:
|
2021-05-22 13:51:36 +02:00
|
|
|
- url_addition_result is changed
|
2020-06-26 08:31:53 +02:00
|
|
|
msg: "state=present with url as name shall add flatpak when absent"
|
2020-03-09 10:11:07 +01:00
|
|
|
|
|
|
|
- name: Test idempotency of addition with url - {{ method }}
|
|
|
|
flatpak:
|
|
|
|
name: https://flathub.org/repo/appstream/org.gnome.Characters.flatpakref
|
|
|
|
remote: flathub
|
|
|
|
state: present
|
|
|
|
method: "{{ method }}"
|
|
|
|
register: double_url_addition_result
|
|
|
|
|
|
|
|
- name: Verify idempotency of addition with url test result - {{ method }}
|
|
|
|
assert:
|
|
|
|
that:
|
2021-05-22 13:51:36 +02:00
|
|
|
- double_url_addition_result is not changed
|
2020-03-09 10:11:07 +01:00
|
|
|
msg: "state=present with url as name shall not do anything when flatpak is already present"
|
|
|
|
|
|
|
|
# state=absent with url as name
|
|
|
|
|
|
|
|
- name: Test removal with url - {{ method }}
|
|
|
|
flatpak:
|
|
|
|
name: https://flathub.org/repo/appstream/org.gnome.Characters.flatpakref
|
|
|
|
state: absent
|
|
|
|
method: "{{ method }}"
|
|
|
|
register: url_removal_result
|
|
|
|
|
|
|
|
- name: Verify removal test result - {{ method }}
|
|
|
|
assert:
|
|
|
|
that:
|
2021-05-22 13:51:36 +02:00
|
|
|
- url_removal_result is changed
|
2020-03-09 10:11:07 +01:00
|
|
|
msg: "state=absent with url as name shall remove flatpak when present"
|
|
|
|
|
|
|
|
- name: Test idempotency of removal with url - {{ method }}
|
|
|
|
flatpak:
|
|
|
|
name: https://flathub.org/repo/appstream/org.gnome.Characters.flatpakref
|
|
|
|
state: absent
|
|
|
|
method: "{{ method }}"
|
|
|
|
register: double_url_removal_result
|
|
|
|
|
|
|
|
- name: Verify idempotency of removal with url test result - {{ method }}
|
|
|
|
assert:
|
|
|
|
that:
|
2021-05-22 13:51:36 +02:00
|
|
|
- double_url_removal_result is not changed
|
2020-03-09 10:11:07 +01:00
|
|
|
msg: "state=absent with url as name shall not do anything when flatpak is not present"
|