mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
* fix command order * add integration test * test cleanup * remove redudant commands
This commit is contained in:
parent
87989b5c63
commit
602a618e60
2 changed files with 27 additions and 7 deletions
|
@ -181,16 +181,16 @@ def map_obj_to_commands(updates, module):
|
|||
commands.append('no username %s' % want['name'])
|
||||
continue
|
||||
|
||||
if needs_update('configured_password'):
|
||||
if update_password == 'always' or not have:
|
||||
add('secret %s' % want['configured_password'])
|
||||
|
||||
if needs_update('role'):
|
||||
add('role %s' % want['role'])
|
||||
|
||||
if needs_update('privilege'):
|
||||
add('privilege %s' % want['privilege'])
|
||||
|
||||
if needs_update('configured_password'):
|
||||
if update_password == 'always' or not have:
|
||||
add('secret %s' % want['configured_password'])
|
||||
|
||||
if needs_update('sshkey'):
|
||||
add('sshkey %s' % want['sshkey'])
|
||||
|
||||
|
|
|
@ -5,9 +5,10 @@
|
|||
- no username ansibletest1
|
||||
- no username ansibletest2
|
||||
- no username ansibletest3
|
||||
- no username ansibletest4
|
||||
provider: "{{ cli }}"
|
||||
|
||||
- name: Create user
|
||||
- name: Create user with role
|
||||
eos_user:
|
||||
name: ansibletest1
|
||||
privilege: 15
|
||||
|
@ -22,9 +23,27 @@
|
|||
that:
|
||||
- 'result.changed == true'
|
||||
- '"username" in result.commands[0]'
|
||||
- '"role network-operator" in result.commands[0]'
|
||||
- '"secret" in result.commands[0]'
|
||||
- '"role network-operator" in result.commands[1]'
|
||||
- '"privilege 15" in result.commands[2]'
|
||||
|
||||
- name: Create user with priv level and update_password
|
||||
eos_user:
|
||||
name: ansibletest4
|
||||
privilege: 15
|
||||
state: present
|
||||
configured_password: test1
|
||||
authorize: yes
|
||||
update_password: on_create
|
||||
provider: "{{ cli }}"
|
||||
register: result
|
||||
|
||||
- assert:
|
||||
that:
|
||||
- 'result.changed == true'
|
||||
- '"username" in result.commands[0]'
|
||||
- '"secret" in result.commands[0]'
|
||||
- '"privilege 15" in result.commands[1]'
|
||||
- '"secret" in result.commands[2]'
|
||||
|
||||
- name: Collection of users
|
||||
eos_user:
|
||||
|
@ -69,4 +88,5 @@
|
|||
- no username ansibletest1
|
||||
- no username ansibletest2
|
||||
- no username ansibletest3
|
||||
- no username ansibletest4
|
||||
provider: "{{ cli }}"
|
||||
|
|
Loading…
Reference in a new issue