mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-07 22:02:50 +00:00
Add nxos_banner implementation module (#25695)
* Add nxos_banner implementation module Signed-off-by: Trishna Guha <trishnaguha17@gmail.com> * nxos_banner integration test Signed-off-by: Trishna Guha <trishnaguha17@gmail.com> * nxos_banner unit test Signed-off-by: Trishna Guha <trishnaguha17@gmail.com> * doc update Signed-off-by: Trishna Guha <trishnaguha17@gmail.com>
This commit is contained in:
@@ -0,0 +1,45 @@
|
||||
---
|
||||
- name: setup - remove exec
|
||||
nxos_banner:
|
||||
banner: exec
|
||||
state: absent
|
||||
provider: "{{ cli }}"
|
||||
|
||||
- name: Set exec
|
||||
nxos_banner:
|
||||
banner: exec
|
||||
text: |
|
||||
this is my exec banner
|
||||
that has a multiline
|
||||
string
|
||||
state: present
|
||||
provider: "{{ cli }}"
|
||||
register: result
|
||||
|
||||
- debug:
|
||||
msg: "{{ result }}"
|
||||
|
||||
- assert:
|
||||
that:
|
||||
- "result.changed == true"
|
||||
- "'banner exec @\nthis is my exec banner\nthat has a multiline\nstring\n@' in result.commands"
|
||||
|
||||
- name: Set exec again (idempotent)
|
||||
nxos_banner:
|
||||
banner: exec
|
||||
text: |
|
||||
this is my exec banner
|
||||
that has a multiline
|
||||
string
|
||||
state: present
|
||||
provider: "{{ cli }}"
|
||||
register: result
|
||||
|
||||
- assert:
|
||||
that:
|
||||
- "result.changed == false"
|
||||
- "result.commands | length == 0"
|
||||
|
||||
# FIXME add in tests for everything defined in docs
|
||||
# FIXME Test state:absent + test:
|
||||
# FIXME Without powers ensure "privileged mode required"
|
||||
Reference in New Issue
Block a user