summaryrefslogtreecommitdiff
path: root/test/integration/targets/junos_command/tests/netconf_xml/bad_operator.yaml
blob: bc97b14d37786853884c1456572dcb03ae416627 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
---
- debug: msg="START netconf_xml/bad_operator.yaml"

- name: test bad operator with xml encoding
  junos_command:
    commands:
      - show version
      - show interfaces fxp0
    wait_for:
      - "result[1].interface-information[0].physical-interface[0].name[0].data foo fxp0"
    format: xml
    provider: "{{ netconf }}"
  register: result
  ignore_errors: yes

- assert:
    that:
      - "result.failed == true"
      - "result.msg is defined"

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