mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Add idempotency test to delete aggregate of iosxr users (#27228)
This commit is contained in:
parent
2dc5066f83
commit
4ad022b622
1 changed files with 16 additions and 1 deletions
|
@ -64,7 +64,7 @@
|
||||||
- 'result.changed == false'
|
- 'result.changed == false'
|
||||||
- 'result.commands | length == 0'
|
- 'result.commands | length == 0'
|
||||||
|
|
||||||
- name: tearDown
|
- name: Delete collection of users
|
||||||
iosxr_user:
|
iosxr_user:
|
||||||
users:
|
users:
|
||||||
- name: ansibletest1
|
- name: ansibletest1
|
||||||
|
@ -78,3 +78,18 @@
|
||||||
that:
|
that:
|
||||||
- 'result.changed == true'
|
- 'result.changed == true'
|
||||||
- 'result.commands == ["no username ansibletest1", "no username ansibletest2", "no username ansibletest3"]'
|
- 'result.commands == ["no username ansibletest1", "no username ansibletest2", "no username ansibletest3"]'
|
||||||
|
|
||||||
|
- name: Delete collection of users again (idempotent)
|
||||||
|
iosxr_user:
|
||||||
|
users:
|
||||||
|
- name: ansibletest1
|
||||||
|
- name: ansibletest2
|
||||||
|
- name: ansibletest3
|
||||||
|
state: absent
|
||||||
|
provider: "{{ cli }}"
|
||||||
|
register: result
|
||||||
|
|
||||||
|
- assert:
|
||||||
|
that:
|
||||||
|
- 'result.changed == false'
|
||||||
|
- 'result.commands | length == 0'
|
||||||
|
|
Loading…
Reference in a new issue