From f68b49057f9ebdfb2c8cced556420b620875bfa9 Mon Sep 17 00:00:00 2001 From: Sam Doran Date: Mon, 21 Nov 2016 10:46:46 -0500 Subject: [PATCH] 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:` --- .../vyos_command/tests/cli/output.yaml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/test/integration/targets/vyos_command/tests/cli/output.yaml b/test/integration/targets/vyos_command/tests/cli/output.yaml index ba2a38aacfd..1fd121db561 100644 --- a/test/integration/targets/vyos_command/tests/cli/output.yaml +++ b/test/integration/targets/vyos_command/tests/cli/output.yaml @@ -27,4 +27,23 @@ - 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"