mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-08 14:22:46 +00:00
Port eos tests to network_cli (#33586)
* Add eos and fix tests to run multiple connections * Update tests to report connection * Add missing START messages * Fix unspecified connection * Python 3 updates Exceptions don't have `.message` in Python 3 * Override `become` when using `connection=local` * Slight restructuring to make eapi easier later on * Move eapi toggle to prepare_eos * Pull out connection on eapi tasks
This commit is contained in:
@@ -1,13 +1,12 @@
|
||||
- debug: msg="START cli/vrf.yaml"
|
||||
---
|
||||
- debug: msg="START cli/vrf.yaml on connection={{ ansible_connection }}"
|
||||
|
||||
|
||||
#----
|
||||
- name: Set invalid VRF
|
||||
eos_eapi:
|
||||
vrf: foobar
|
||||
provider: "{{ cli }}"
|
||||
become: yes
|
||||
register: eos_eapi_output
|
||||
connection: local
|
||||
ignore_errors: true
|
||||
|
||||
- name: Ensure that setting VRF failed
|
||||
@@ -22,8 +21,8 @@
|
||||
eos_eapi:
|
||||
vrf: default
|
||||
provider: "{{ cli }}"
|
||||
become: yes
|
||||
register: eos_eapi_output
|
||||
connection: local
|
||||
ignore_errors: true
|
||||
|
||||
|
||||
@@ -31,8 +30,8 @@
|
||||
eos_eapi:
|
||||
vrf: default
|
||||
provider: "{{ cli }}"
|
||||
become: yes
|
||||
register: eos_eapi_output
|
||||
connection: local
|
||||
|
||||
- name: Ensure idempotent
|
||||
assert:
|
||||
@@ -48,10 +47,9 @@
|
||||
commands: show vrf
|
||||
provider: "{{ cli }}"
|
||||
register: eos_eapi_output
|
||||
connection: local
|
||||
when: false
|
||||
|
||||
#- debug:
|
||||
# msg: "{{ eos_eapi_output }}"
|
||||
|
||||
- debug: msg="END cli/vrf.yaml"
|
||||
- debug: msg="END cli/vrf.yaml on connection={{ ansible_connection }}"
|
||||
|
||||
Reference in New Issue
Block a user