summaryrefslogtreecommitdiff
path: root/test/integration/targets/vyos_command/tests/cli/output.yaml
blob: bdc8b2a8ac2a4164a4193b256665496da69e4cd6 (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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
---
- debug: msg="START cli/output.yaml on connection={{ ansible_connection }}"

- name: get output for single command
  vyos.vyos.vyos_command:
    commands: show version
  register: result

- assert:
    that:
      - result.changed == false
      - result.stdout is defined
      - result.stdout_lines is defined

- name: get output for multiple commands
  vyos.vyos.vyos_command:
    commands:
      - show version
      - show interfaces
  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.vyos.vyos_command:
    commands:
        # NOTE: We only test show commands that will output <ANSIBLE_VYOS_TERMINAL_LENGTH
        # Otherwise you will get ": "command timeout triggered"
      - show hardware cpu detail
      - show hardware mem
      - show license
  register: result

- assert:
    that:
      - result.changed == false
      - result.stdout_lines is defined
      - result.stdout_lines[2] | length >= 20

- debug: msg="END cli/output.yaml on connection={{ ansible_connection }}"