summaryrefslogtreecommitdiff
path: root/test/integration/targets/vyos_command/tests/cli/output.yaml
blob: ba2a38aacfd54c72b280db88e5f5630f61d3d997 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
---
- 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

- debug: msg="END cli/output.yaml"