summaryrefslogtreecommitdiff
path: root/test/integration/targets/junos_command/tests/netconf_xml/output.yaml
blob: 36c63959f69c8cde3b878428d218130269b71ed9 (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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
---
- debug: msg="START netconf_xml/output.yaml on connection={{ ansible_connection }}"

- name: get output for single command
  junos_command:
    commands: ['show version']
    format: xml
    provider: "{{ netconf }}"
  register: result

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

- name: get output for multiple commands
  junos_command:
    commands:
      - show version
      - show route
    format: xml
    provider: "{{ netconf }}"
  register: result

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

- name: get output for single command with cli transport
  junos_command:
    commands: show version | display xml
    provider:
      transport: cli
  register: result
  connection: network_cli

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

- name: get output for multiple commands with cli transport
  junos_command:
    commands:
      - show version
      - show route
    display: xml
    provider:
      transport: cli
  register: result
  connection: network_cli

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

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