ansible/test/integration/targets/iosxr_command/tests/cli/contains.yaml
Nathaniel Case 2e76c89910
IOS XR cli tests move to network_cli (#34007)
* Update task definitions for network_cli

* Add connection to debug messages

* Specify connection for prepare task

* pc won't be around for connection=network_cli

* Assorted Python 3 fixes

* Give default port if ansible_ssh_port missing

* delegate -> connection

* Extend error regex
2017-12-20 11:26:09 -05:00

19 lines
518 B
YAML

---
- debug: msg="START cli/contains.yaml on connection={{ ansible_connection }}"
- name: test contains operator
iosxr_command:
commands:
- show version
- show interfaces Loopback 888
wait_for:
- "result[0] contains 'Cisco IOS XR Software'"
- "result[1] contains 'Hardware is Loopback interface'"
register: result
- assert:
that:
- "result.changed == false"
- "result.stdout is defined"
- debug: msg="END cli/contains.yaml on connection={{ ansible_connection }}"