mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Fix eos_command integration test failures (#43922)
This commit is contained in:
parent
d1de1e0449
commit
77bff99f3c
1 changed files with 50 additions and 36 deletions
|
@ -2,48 +2,62 @@
|
||||||
- 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"
|
||||||
|
|
||||||
- name: get output in JSON format
|
- name: get output in JSON format
|
||||||
cli_command:
|
cli_command:
|
||||||
command: show version | json
|
command: show version | json
|
||||||
register: result
|
register: result
|
||||||
|
|
||||||
- assert:
|
- assert:
|
||||||
that:
|
that:
|
||||||
- "result.changed == false"
|
- "result.changed == false"
|
||||||
- "result.stdout is defined"
|
- "result.stdout is defined"
|
||||||
- "result.json is defined"
|
- "result.json is defined"
|
||||||
|
|
||||||
- name: command that does require become (should fail)
|
- name: command that does require become (should fail)
|
||||||
cli_command:
|
cli_command:
|
||||||
command: show running-config
|
command: show running-config
|
||||||
become: no
|
become: no
|
||||||
ignore_errors: yes
|
ignore_errors: yes
|
||||||
register: result
|
register: result
|
||||||
|
|
||||||
- assert:
|
- assert:
|
||||||
that:
|
that:
|
||||||
- 'result.failed == true'
|
- 'result.failed == true'
|
||||||
- '"privileged mode required" in result.msg'
|
- '"privileged mode required" in result.msg'
|
||||||
|
when: "ansible_connection == 'network_cli'"
|
||||||
|
|
||||||
|
- block:
|
||||||
|
- name: test failure for local connection
|
||||||
|
cli_command:
|
||||||
|
command: show version
|
||||||
|
register: result
|
||||||
|
|
||||||
|
- assert:
|
||||||
|
that:
|
||||||
|
- 'result.failed == true'
|
||||||
|
- "'Connection type local is not valid for this module' in result.msg"
|
||||||
|
when: "ansible_connection == 'local'"
|
||||||
|
|
||||||
- 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