ansible/test/integration/roles/test_apt/tasks/apt.yml

70 lines
1.4 KiB
YAML
Raw Normal View History

2014-02-20 20:55:55 +01:00
# UNINSTALL
- name: uninstall hello with apt
apt: pkg=hello state=absent purge=yes
2014-02-20 20:55:55 +01:00
register: apt_result
- name: check hello with dpkg
shell: dpkg --get-selections | fgrep hello
2014-02-20 20:55:55 +01:00
failed_when: False
register: dpkg_result
- debug: var=apt_result
- debug: var=dpkg_result
- name: verify uninstallation of hello
2014-02-20 20:55:55 +01:00
assert:
that:
2014-02-20 20:55:55 +01:00
- "'changed' in apt_result"
- "dpkg_result.rc == 1"
2014-02-20 21:01:23 +01:00
# UNINSTALL AGAIN
- name: uninstall hello with apt
apt: pkg=hello state=absent purge=yes
2014-02-20 21:01:23 +01:00
register: apt_result
- name: verify no change on re-uninstall
assert:
that:
2014-02-20 21:01:23 +01:00
- "not apt_result.changed"
2014-02-20 20:55:55 +01:00
# INSTALL
- name: install hello with apt
apt: name=hello state=present
2014-02-20 20:55:55 +01:00
register: apt_result
- name: check hello with dpkg
shell: dpkg --get-selections | fgrep hello
2014-02-20 20:55:55 +01:00
failed_when: False
register: dpkg_result
- debug: var=apt_result
- debug: var=dpkg_result
- name: verify installation of hello
2014-02-20 20:55:55 +01:00
assert:
that:
2014-02-20 20:55:55 +01:00
- "apt_result.changed"
- "dpkg_result.rc == 0"
- name: verify apt module outputs
assert:
that:
- "'invocation' in apt_result"
- "'changed' in apt_result"
- "'item' in apt_result"
- "'stderr' in apt_result"
- "'stdout' in apt_result"
- "'stdout_lines' in apt_result"
2014-02-20 21:01:23 +01:00
# INSTALL AGAIN
- name: install hello with apt
apt: name=hello state=present
2014-02-20 21:01:23 +01:00
register: apt_result
- name: verify no change on re-install
assert:
that:
2014-02-20 21:01:23 +01:00
- "not apt_result.changed"