ansible/test/integration/targets/vyos_command/tests/cli/output.yaml
Sam Doran f68b49057f Add test cases for VyOS commands that don't honor paging settings (#18553)
* Add test cases for VyOS commands that don't honor paging settings

Testing for issue fixed in PR #18546

* Add provider line and fix indentation

For the way we invoke the tests we need to specify the `provider:` 
Also fix the indentation on `register:`
2016-11-21 15:46:46 +00:00

49 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:
- show hardware cpu detail
- show hardware mem
- show license
- show log
- show log all
- show log authorization
- show system boot-messages
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"