ansible/test/integration/targets/vyos_command/tests/cli/output.yaml
Matt Clay 5babe2daea Increase python version coverage for tests. (#24762)
* Improve ansible-test inventory handling.
* Fix python 3 re-raise of exception from thread.
* Fix python 3 encoding for windows-integration.
* Run network tests on multiple python versions.
* Run windows tests on multiple python versions.
* Support Shippable delegation using --tox.
* Skip vyos_command on python 3 tests until fixed.
* Add python 3 filtering to local and tox.
* Fix tests to support back to back runs.
* Temporarily test networking with python 2.7 only.

Running the tests back to back causes intermittent test failures
which need to be addressed before we can test multiple versions
in a single test run.
2017-05-19 01:37:53 +08:00

47 lines
1.1 KiB
YAML

---
- debug: msg="START cli/output.yaml"
- name: get output for single command
vyos_command:
commands: show version
provider: "{{ cli }}"
register: result
- assert:
that:
- result.changed == false
- result.stdout is defined
- result.stdout_lines is defined
- name: get output for multiple commands
vyos_command:
commands:
- show version
- show interfaces
provider: "{{ cli }}"
register: result
- assert:
that:
- result.changed == false
- result.stdout is defined
- result.stdout | length == 2
- name: Get output for multiple commands that call less explicitly
vyos_command:
commands:
# NOTE: We only test show commands that will output <ANSIBLE_VYOS_TERMINAL_LENGTH
# Otherwise you will get ": "timeout trying to send command: show log authorization"
- show hardware cpu detail
- show hardware mem
- show license
provider: "{{ cli }}"
register: result
- assert:
that:
- result.changed == false
- result.stdout_lines is defined
- result.stdout_lines[2] | length >= 20
- debug: msg="END cli/output.yaml"