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:`
This commit is contained in:
parent
6dece90a57
commit
f68b49057f
1 changed files with 19 additions and 0 deletions
|
@ -27,4 +27,23 @@
|
||||||
- result.stdout is defined
|
- result.stdout is defined
|
||||||
- result.stdout | length == 2
|
- 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"
|
- debug: msg="END cli/output.yaml"
|
||||||
|
|
Loading…
Reference in a new issue