Enable nxapi nxos_banner test (#35033)

Signed-off-by: Trishna Guha <trishnaguha17@gmail.com>
This commit is contained in:
Trishna Guha
2018-01-18 11:50:15 +05:30
committed by GitHub
parent f806a58a5e
commit 8a6d699198
8 changed files with 119 additions and 24 deletions

View File

@@ -0,0 +1,41 @@
---
- debug: msg="START cli/nxos_banner exec test"
- block:
- name: setup - remove exec
nxos_banner: &remove
banner: exec
state: absent
provider: "{{ cli }}"
- name: Set exec
nxos_banner: &exec
banner: exec
text: |
this is my exec banner
that has a multiline
string
state: present
provider: "{{ cli }}"
register: 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: *exec
register: result
- assert:
that:
- "result.changed == false"
- "result.commands | length == 0"
- name: teardown - remove exec
nxos_banner: *remove
when: platform is match("N7K")
- debug: msg="END cli/nxos_banner exec test"