mirror of https://github.com/ansible/ansible.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
652 B
YAML
22 lines
652 B
YAML
5 years ago
|
- hosts: all
|
||
|
gather_facts: no
|
||
|
tasks:
|
||
|
- name: intentionally fail module execution
|
||
|
ping:
|
||
|
data: crash
|
||
|
ignore_errors: yes
|
||
|
register: ping
|
||
|
|
||
|
- hosts: localhost
|
||
|
gather_facts: no
|
||
|
tasks:
|
||
|
- name: verify exceptions were properly captured
|
||
|
assert:
|
||
|
that:
|
||
|
- hostvars.testhost_local.ping is failed
|
||
|
- "'boom' in hostvars.testhost_local.ping.exception"
|
||
|
- "'boom' in hostvars.testhost_local.ping.module_stderr"
|
||
|
- hostvars.testhost_ssh.ping is failed
|
||
|
- "'boom' in hostvars.testhost_ssh.ping.exception"
|
||
|
- "'boom' in hostvars.testhost_ssh.ping.module_stdout"
|