32 lines
618 B
YAML
32 lines
618 B
YAML
|
---
|
||
|
- debug: msg="START netconf_xml/invalid.yaml"
|
||
|
|
||
|
- name: run invalid command
|
||
|
junos_command:
|
||
|
commands: ['show foo']
|
||
|
provider: "{{ netconf }}"
|
||
|
register: result
|
||
|
ignore_errors: yes
|
||
|
- debug: var=result
|
||
|
|
||
|
- assert:
|
||
|
that:
|
||
|
- "result.failed == true"
|
||
|
- "result.msg is defined"
|
||
|
|
||
|
- name: run commands that include invalid command
|
||
|
junos_command:
|
||
|
commands:
|
||
|
- show version
|
||
|
- show foo
|
||
|
provider: "{{ netconf }}"
|
||
|
register: result
|
||
|
ignore_errors: yes
|
||
|
|
||
|
- assert:
|
||
|
that:
|
||
|
- "result.failed == true"
|
||
|
- "result.msg is defined"
|
||
|
|
||
|
- debug: msg="END netconf_xml/invalid.yaml"
|