summaryrefslogtreecommitdiff
path: root/test/integration/targets/junos_command/tests/netconf_text/invalid.yaml
blob: cab272e9cc241b785462bcaa669f082da25444d9 (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
---
- debug: msg="START netconf_text/invalid.yaml"

- name: run invalid command
  junos_command:
    commands: show foo
    display: text
    provider: "{{ netconf }}"
  register: result
  ignore_errors: yes

- debug: var=result

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

- name: run commands that include invalid command
  junos_command:
    commands:
      - show version
      - show foo
    display: text
    provider: "{{ netconf }}"
  register: result
  ignore_errors: yes

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

- debug: msg="END netconf_text/invalid.yaml"