2016-10-28 20:50:29 +02:00
|
|
|
---
|
2017-12-20 17:26:09 +01:00
|
|
|
- debug: msg="START cli/invalid.yaml on connection={{ ansible_connection }}"
|
2016-10-28 20:50:29 +02:00
|
|
|
|
|
|
|
- name: run invalid command
|
|
|
|
iosxr_command:
|
2017-12-06 18:07:31 +01:00
|
|
|
commands: [{command: 'show foo', prompt: 'fooprompt', answer: 'yes'}]
|
2016-10-28 20:50:29 +02:00
|
|
|
register: result
|
|
|
|
ignore_errors: yes
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
that:
|
|
|
|
- "result.failed"
|
|
|
|
|
|
|
|
- name: run commands that include invalid command
|
|
|
|
iosxr_command:
|
|
|
|
commands:
|
|
|
|
- show version
|
2017-12-06 18:07:31 +01:00
|
|
|
- [{command: 'show foo', prompt: 'fooprompt', answer: 'yes'}]
|
2016-10-28 20:50:29 +02:00
|
|
|
register: result
|
|
|
|
ignore_errors: yes
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
that:
|
|
|
|
- "result.failed"
|
|
|
|
|
2017-12-20 17:26:09 +01:00
|
|
|
- debug: msg="END cli/invalid.yaml on connection={{ ansible_connection }}"
|