1
0
Fork 0
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:
Ganesh Nalawade 2018-08-10 15:20:38 +05:30 committed by GitHub
parent d1de1e0449
commit 77bff99f3c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2,6 +2,7 @@
- debug: - debug:
msg: "START cli/cli_command.yaml on connection={{ ansible_connection }}" msg: "START cli/cli_command.yaml on connection={{ ansible_connection }}"
- block:
- name: get output for single command - name: get output for single command
cli_command: cli_command:
command: show version command: show version
@ -45,5 +46,18 @@
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 }}"