Fixes ios_logging idempotency issues (#40701)

* Fixes ios_logging idempotency issues

* Added intergration tests & minor fixes

* Minor fixes in tests

* Minor fixes in tests #2

* eos_logging fixes after PR review
This commit is contained in:
Nilashish Chakraborty 2018-05-31 20:07:24 +05:30 committed by GitHub
parent 083ddb9bc2
commit a013cdc747
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 69 additions and 17 deletions

View file

@ -99,6 +99,7 @@
- 'result.changed == true'
- '"logging buffered 8000" in result.commands'
- name: Change logging parameters using aggregate
ios_logging:
aggregate:
@ -113,11 +114,42 @@
- '"logging buffered 9000" in result.commands'
- '"logging console notifications" in result.commands'
- name: Set both logging destination and facility
ios_logging:
dest: buffered
facility: uucp
level: alerts
size: 4096
state: present
provider: "{{ cli }}"
register: result
- assert:
that:
- 'result.changed == true'
- '"logging buffered 4096 alerts" in result.commands'
- '"logging facility uucp" in result.commands'
- name: Set both logging destination and facility (idempotent)
ios_logging:
dest: buffered
facility: uucp
level: alerts
size: 4096
state: present
provider: "{{ cli }}"
register: result
- assert:
that:
- 'result.changed == false'
- name: remove logging as collection tearDown
ios_logging:
aggregate:
- { dest: console, level: notifications }
- { dest: buffered, size: 9000 }
- { dest: buffered, size: 4096, level: alerts }
- { facility: uucp }
state: absent
provider: "{{ cli }}"
register: result
@ -127,3 +159,4 @@
- 'result.changed == true'
- '"no logging console" in result.commands'
- '"no logging buffered" in result.commands'
- '"no logging facility uucp" in result.commands'