2017-06-15 18:37:03 +02:00
|
|
|
---
|
2017-07-24 13:16:59 +02:00
|
|
|
- name: Remove users prior to tests
|
|
|
|
iosxr_config:
|
|
|
|
lines:
|
|
|
|
- no username ansibletest1
|
|
|
|
- no username ansibletest2
|
|
|
|
- no username ansibletest3
|
2017-12-06 18:07:31 +01:00
|
|
|
provider: "{{ cli }}"
|
2017-07-24 13:16:59 +02:00
|
|
|
|
2017-06-15 18:37:03 +02:00
|
|
|
- name: Create user (SetUp)
|
|
|
|
iosxr_user:
|
|
|
|
name: ansibletest1
|
2017-08-17 15:36:44 +02:00
|
|
|
configured_password: test
|
2017-06-15 18:37:03 +02:00
|
|
|
state: present
|
2017-12-06 18:07:31 +01:00
|
|
|
provider: "{{ cli }}"
|
2017-06-15 18:37:03 +02:00
|
|
|
register: result
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
that:
|
|
|
|
- 'result.changed == true'
|
2017-07-24 10:10:47 +02:00
|
|
|
- '"username" in result.commands[0]'
|
2017-07-25 17:21:53 +02:00
|
|
|
- '"secret" in result.commands[1]'
|
2017-06-15 18:37:03 +02:00
|
|
|
|
2017-07-24 14:13:51 +02:00
|
|
|
- name: Create user with update_password always (not idempotent)
|
2017-06-15 18:37:03 +02:00
|
|
|
iosxr_user:
|
2017-07-24 13:44:52 +02:00
|
|
|
name: ansibletest1
|
2017-08-17 15:36:44 +02:00
|
|
|
configured_password: test
|
2017-07-24 14:13:51 +02:00
|
|
|
update_password: always
|
|
|
|
state: present
|
2017-12-06 18:07:31 +01:00
|
|
|
provider: "{{ cli }}"
|
2017-07-24 14:13:51 +02:00
|
|
|
register: result
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
that:
|
|
|
|
- 'result.changed == true'
|
|
|
|
- '"username" in result.commands[0]'
|
|
|
|
- '"secret" in result.commands[0]'
|
|
|
|
|
|
|
|
- name: Create user again with update_password on_create (idempotent)
|
|
|
|
iosxr_user:
|
|
|
|
name: ansibletest1
|
2017-08-17 15:36:44 +02:00
|
|
|
configured_password: test
|
2017-07-24 14:13:51 +02:00
|
|
|
update_password: on_create
|
2017-06-15 18:37:03 +02:00
|
|
|
state: present
|
2017-12-06 18:07:31 +01:00
|
|
|
provider: "{{ cli }}"
|
2017-06-15 18:37:03 +02:00
|
|
|
register: result
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
that:
|
2017-07-24 13:44:52 +02:00
|
|
|
- 'result.changed == false'
|
|
|
|
- 'result.commands | length == 0'
|
2017-06-15 18:37:03 +02:00
|
|
|
|
2017-07-25 17:21:53 +02:00
|
|
|
- name: Modify user group
|
|
|
|
iosxr_user:
|
|
|
|
name: ansibletest1
|
2017-08-17 15:36:44 +02:00
|
|
|
configured_password: test
|
2017-07-25 17:21:53 +02:00
|
|
|
update_password: on_create
|
|
|
|
group: sysadmin
|
|
|
|
state: present
|
2017-12-06 18:07:31 +01:00
|
|
|
provider: "{{ cli }}"
|
2017-07-25 17:21:53 +02:00
|
|
|
register: result
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
that:
|
|
|
|
- 'result.changed == true'
|
|
|
|
- '"username" in result.commands[0]'
|
|
|
|
- '"group" in result.commands[0]'
|
|
|
|
|
|
|
|
- name: Modify user group again (idempotent)
|
|
|
|
iosxr_user:
|
|
|
|
name: ansibletest1
|
2017-08-17 15:36:44 +02:00
|
|
|
configured_password: test
|
2017-07-25 17:21:53 +02:00
|
|
|
update_password: on_create
|
|
|
|
group: sysadmin
|
|
|
|
state: present
|
2017-12-06 18:07:31 +01:00
|
|
|
provider: "{{ cli }}"
|
2017-07-25 17:21:53 +02:00
|
|
|
register: result
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
that:
|
|
|
|
- 'result.changed == false'
|
|
|
|
- 'result.commands | length == 0'
|
|
|
|
|
2017-07-24 13:44:52 +02:00
|
|
|
- name: Collection of users (SetUp)
|
2017-06-15 18:37:03 +02:00
|
|
|
iosxr_user:
|
2017-07-26 16:09:17 +02:00
|
|
|
aggregate:
|
2017-07-24 13:44:52 +02:00
|
|
|
- name: ansibletest2
|
|
|
|
- name: ansibletest3
|
2017-08-17 15:36:44 +02:00
|
|
|
configured_password: test
|
2017-06-15 18:37:03 +02:00
|
|
|
state: present
|
2017-07-24 13:44:52 +02:00
|
|
|
group: sysadmin
|
2017-12-06 18:07:31 +01:00
|
|
|
provider: "{{ cli }}"
|
2017-06-15 18:37:03 +02:00
|
|
|
register: result
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
that:
|
2017-07-24 13:44:52 +02:00
|
|
|
- 'result.changed == true'
|
2017-07-25 17:21:53 +02:00
|
|
|
- '"username" in result.commands[0]'
|
|
|
|
- '"secret" in result.commands[1]'
|
|
|
|
- '"group sysadmin" in result.commands[2]'
|
|
|
|
- '"username" in result.commands[3]'
|
|
|
|
- '"secret" in result.commands[4]'
|
|
|
|
- '"group sysadmin" in result.commands[5]'
|
2017-06-15 18:37:03 +02:00
|
|
|
|
2017-07-24 14:13:51 +02:00
|
|
|
- name: Add collection of users again with update_password always (not idempotent)
|
|
|
|
iosxr_user:
|
2017-07-26 16:09:17 +02:00
|
|
|
aggregate:
|
2017-07-24 14:13:51 +02:00
|
|
|
- name: ansibletest2
|
|
|
|
- name: ansibletest3
|
2017-08-17 15:36:44 +02:00
|
|
|
configured_password: test
|
2017-07-24 14:13:51 +02:00
|
|
|
state: present
|
|
|
|
group: sysadmin
|
2017-12-06 18:07:31 +01:00
|
|
|
provider: "{{ cli }}"
|
2017-07-24 14:13:51 +02:00
|
|
|
register: result
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
that:
|
|
|
|
- 'result.changed == true'
|
2017-07-25 17:21:53 +02:00
|
|
|
- '"username" in result.commands[0]'
|
|
|
|
- '"secret" in result.commands[0]'
|
|
|
|
- '"username" in result.commands[1]'
|
|
|
|
- '"secret" in result.commands[1]'
|
2017-07-24 14:13:51 +02:00
|
|
|
|
|
|
|
- name: Add collection of users again with update_password on_create (idempotent)
|
2017-06-15 18:37:03 +02:00
|
|
|
iosxr_user:
|
2017-07-26 16:09:17 +02:00
|
|
|
aggregate:
|
2017-06-15 18:37:03 +02:00
|
|
|
- name: ansibletest2
|
|
|
|
- name: ansibletest3
|
2017-08-17 15:36:44 +02:00
|
|
|
configured_password: test
|
2017-07-24 14:13:51 +02:00
|
|
|
update_password: on_create
|
2017-06-15 18:37:03 +02:00
|
|
|
state: present
|
|
|
|
group: sysadmin
|
2017-12-06 18:07:31 +01:00
|
|
|
provider: "{{ cli }}"
|
2017-06-15 18:37:03 +02:00
|
|
|
register: result
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
that:
|
|
|
|
- 'result.changed == false'
|
|
|
|
- 'result.commands | length == 0'
|
|
|
|
|
2017-07-24 13:50:34 +02:00
|
|
|
- name: Delete collection of users
|
2017-06-15 18:37:03 +02:00
|
|
|
iosxr_user:
|
2017-07-26 16:09:17 +02:00
|
|
|
aggregate:
|
2017-06-15 18:37:03 +02:00
|
|
|
- name: ansibletest1
|
|
|
|
- name: ansibletest2
|
|
|
|
- name: ansibletest3
|
|
|
|
state: absent
|
2017-12-06 18:07:31 +01:00
|
|
|
provider: "{{ cli }}"
|
2017-06-15 18:37:03 +02:00
|
|
|
register: result
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
that:
|
|
|
|
- 'result.changed == true'
|
|
|
|
- 'result.commands == ["no username ansibletest1", "no username ansibletest2", "no username ansibletest3"]'
|
2017-07-24 13:50:34 +02:00
|
|
|
|
|
|
|
- name: Delete collection of users again (idempotent)
|
|
|
|
iosxr_user:
|
2017-07-26 16:09:17 +02:00
|
|
|
aggregate:
|
2017-07-24 13:50:34 +02:00
|
|
|
- name: ansibletest1
|
|
|
|
- name: ansibletest2
|
|
|
|
- name: ansibletest3
|
|
|
|
state: absent
|
2017-12-06 18:07:31 +01:00
|
|
|
provider: "{{ cli }}"
|
2017-07-24 13:50:34 +02:00
|
|
|
register: result
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
that:
|
|
|
|
- 'result.changed == false'
|
|
|
|
- 'result.commands | length == 0'
|