mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-08 06:12:51 +00:00
eos_user fix username param (#28114)
* eos_user fix username param Signed-off-by: Trishna Guha <trishnaguha17@gmail.com> * Add setup eos_user test and rename username for consistency Signed-off-by: Trishna Guha <trishnaguha17@gmail.com> * update unit test and pep8 fix Signed-off-by: Trishna Guha <trishnaguha17@gmail.com> * pep8 fix
This commit is contained in:
@@ -1,7 +1,15 @@
|
||||
---
|
||||
- name: Set Up
|
||||
eos_config:
|
||||
lines:
|
||||
- no username ansibletest1
|
||||
- no username ansibletest2
|
||||
- no username ansibletest3
|
||||
provider: "{{ cli }}"
|
||||
|
||||
- name: Create user
|
||||
eos_user:
|
||||
name: netend
|
||||
name: ansibletest1
|
||||
privilege: 15
|
||||
role: network-operator
|
||||
state: present
|
||||
@@ -12,13 +20,13 @@
|
||||
- assert:
|
||||
that:
|
||||
- 'result.changed == true'
|
||||
- 'result.commands == ["username netend role network-operator", "username netend privilege 15"]'
|
||||
- 'result.commands == ["username ansibletest1 role network-operator", "username ansibletest1 privilege 15"]'
|
||||
|
||||
- name: Collection of users
|
||||
eos_user:
|
||||
aggregate:
|
||||
- name: test1
|
||||
- name: test2
|
||||
- name: ansibletest2
|
||||
- name: ansibletest3
|
||||
authorize: yes
|
||||
state: present
|
||||
role: network-operator
|
||||
@@ -28,12 +36,12 @@
|
||||
- assert:
|
||||
that:
|
||||
- 'result.changed == true'
|
||||
- 'result.commands == ["username test1 role network-operator", "username test2 role network-operator"]'
|
||||
- 'result.commands == ["username ansibletest2 role network-operator", "username ansibletest3 role network-operator"]'
|
||||
|
||||
- name: tearDown
|
||||
eos_config:
|
||||
lines:
|
||||
- no username netend
|
||||
- no username test1
|
||||
- no username test2
|
||||
- no username ansibletest1
|
||||
- no username ansibletest2
|
||||
- no username ansibletest3
|
||||
provider: "{{ cli }}"
|
||||
|
||||
Reference in New Issue
Block a user