summaryrefslogtreecommitdiff
path: root/test/integration/targets/junos_command/tests/netconf_xml/greaterthan.yaml
blob: 65c306429bc9ee4524209ed0605381d0873c85a0 (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
---
- debug: msg="START netconf_xml/greaterthan.yaml"

- name: test gt operator
  junos_command:
    commands:
      - show version
      - show interfaces fxp0
    format: xml
    wait_for:
      - "result[1].interface-information.physical-interface.mtu gt 1500"
    provider: "{{ netconf }}"
  register: result

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

- name: test > operator
  junos_command:
    commands:
      - show version
      - show interfaces fxp0
    format: xml
    wait_for:
      - "result[1].interface-information.physical-interface.mtu > 1500"
    provider: "{{ netconf }}"
  register: result

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

- debug: msg="END netconf_xml/greaterthan.yaml"