ansible-test: ios_command cli test should only be network_cli (#56955)
We do not support testing under ansible_connection=local Signed-off-by: Paul Belanger <pabelanger@redhat.com>
This commit is contained in:
parent
d5ab712fad
commit
d7f4f886f8
1 changed files with 19 additions and 17 deletions
|
@ -2,25 +2,27 @@
|
||||||
- debug:
|
- debug:
|
||||||
msg: "START cli/cli_command.yaml on connection={{ ansible_connection }}"
|
msg: "START cli/cli_command.yaml on connection={{ ansible_connection }}"
|
||||||
|
|
||||||
- name: get output for single command
|
- block:
|
||||||
cli_command:
|
- name: get output for single command
|
||||||
command: show version
|
cli_command:
|
||||||
register: result
|
command: show version
|
||||||
|
register: result
|
||||||
|
|
||||||
- assert:
|
- assert:
|
||||||
that:
|
that:
|
||||||
- "result.changed == false"
|
- "result.changed == false"
|
||||||
- "result.stdout is defined"
|
- "result.stdout is defined"
|
||||||
|
|
||||||
- name: send invalid command
|
- name: send invalid command
|
||||||
cli_command:
|
cli_command:
|
||||||
command: 'show foo'
|
command: 'show foo'
|
||||||
register: result
|
register: result
|
||||||
ignore_errors: yes
|
ignore_errors: yes
|
||||||
|
|
||||||
- assert:
|
- assert:
|
||||||
that:
|
that:
|
||||||
- "result.failed == true"
|
- "result.failed == true"
|
||||||
- "result.msg is defined"
|
- "result.msg is defined"
|
||||||
|
when: "ansible_connection == 'network_cli'"
|
||||||
|
|
||||||
- debug: msg="END cli/cli_command.yaml on connection={{ ansible_connection }}"
|
- debug: msg="END cli/cli_command.yaml on connection={{ ansible_connection }}"
|
||||||
|
|
Loading…
Reference in a new issue