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:
@@ -9,6 +9,7 @@
|
||||
authorize: yes
|
||||
provider: "{{ cli }}"
|
||||
configured_password: pass123
|
||||
become: yes
|
||||
|
||||
- name: test login
|
||||
expect:
|
||||
@@ -36,4 +37,5 @@
|
||||
state: absent
|
||||
provider: "{{ cli }}"
|
||||
authorize: yes
|
||||
become: yes
|
||||
register: result
|
||||
|
||||
@@ -1,4 +1,6 @@
|
||||
---
|
||||
- debug: msg="START cli/basic.yaml on connection={{ ansible_connection }}"
|
||||
|
||||
- name: Set Up
|
||||
eos_config:
|
||||
lines:
|
||||
@@ -7,6 +9,7 @@
|
||||
- no username ansibletest3
|
||||
- no username ansibletest4
|
||||
provider: "{{ cli }}"
|
||||
become: yes
|
||||
|
||||
- name: Create user with role
|
||||
eos_user:
|
||||
@@ -17,6 +20,7 @@
|
||||
configured_password: test1
|
||||
authorize: yes
|
||||
provider: "{{ cli }}"
|
||||
become: yes
|
||||
register: result
|
||||
|
||||
- assert:
|
||||
@@ -36,6 +40,7 @@
|
||||
authorize: yes
|
||||
update_password: on_create
|
||||
provider: "{{ cli }}"
|
||||
become: yes
|
||||
register: result
|
||||
|
||||
- assert:
|
||||
@@ -54,6 +59,7 @@
|
||||
state: present
|
||||
role: network-operator
|
||||
provider: "{{ cli }}"
|
||||
become: yes
|
||||
register: result
|
||||
|
||||
- assert:
|
||||
@@ -73,6 +79,7 @@
|
||||
state: present
|
||||
authorize: yes
|
||||
provider: "{{ cli }}"
|
||||
become: yes
|
||||
ignore_errors: yes
|
||||
register: result
|
||||
|
||||
@@ -90,3 +97,5 @@
|
||||
- no username ansibletest3
|
||||
- no username ansibletest4
|
||||
provider: "{{ cli }}"
|
||||
authorize: yes
|
||||
become: yes
|
||||
|
||||
Reference in New Issue
Block a user