2017-03-10 16:29:36 +01:00
|
|
|
---
|
|
|
|
|
2017-07-11 19:28:33 +02:00
|
|
|
- name: Remove previous motd banner
|
|
|
|
eos_config:
|
|
|
|
lines: no banner motd
|
2017-03-10 16:29:36 +01:00
|
|
|
authorize: yes
|
2017-04-07 13:39:33 +02:00
|
|
|
provider: "{{ eapi }}"
|
2017-03-10 16:29:36 +01:00
|
|
|
|
|
|
|
- name: Set motd
|
|
|
|
eos_banner:
|
|
|
|
banner: motd
|
|
|
|
text: |
|
|
|
|
this is my motd banner
|
|
|
|
that has a multiline
|
|
|
|
string
|
|
|
|
state: present
|
|
|
|
authorize: yes
|
|
|
|
provider: "{{ eapi }}"
|
|
|
|
register: result
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
that:
|
|
|
|
- "result.changed == true"
|
2017-04-07 14:18:40 +02:00
|
|
|
- "result.commands.0.cmd == 'banner motd'"
|
|
|
|
- "result.commands.0.input == 'this is my motd banner\nthat has a multiline\nstring'"
|
2017-03-10 16:29:36 +01:00
|
|
|
# Ensure sessions contains epoc. Will fail after 18th May 2033
|
|
|
|
- "'ansible_1' in result.session_name"
|
|
|
|
|
|
|
|
- name: Set motd again (idempotent)
|
|
|
|
eos_banner:
|
|
|
|
banner: motd
|
|
|
|
text: |
|
|
|
|
this is my motd banner
|
|
|
|
that has a multiline
|
|
|
|
string
|
|
|
|
state: present
|
|
|
|
authorize: yes
|
|
|
|
provider: "{{ eapi }}"
|
|
|
|
register: result
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
that:
|
|
|
|
- "result.changed == false"
|
|
|
|
- "result.commands | length == 0"
|
|
|
|
# Ensure sessions contains epoc. Will fail after 18th May 2033
|
2017-04-07 15:44:06 +02:00
|
|
|
- "result.session_name is not defined"
|
2017-03-10 16:29:36 +01:00
|
|
|
|
2017-07-11 19:28:33 +02:00
|
|
|
- name: Remove motd
|
|
|
|
eos_banner:
|
|
|
|
banner: motd
|
|
|
|
text: |
|
|
|
|
this is my motd banner
|
|
|
|
that has a multiline
|
|
|
|
string
|
|
|
|
state: absent
|
|
|
|
authorize: yes
|
|
|
|
provider: "{{ eapi }}"
|
|
|
|
register: result
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
that:
|
|
|
|
- "result.changed == true"
|
|
|
|
- "result.commands.0.cmd == 'no banner motd'"
|
|
|
|
# Ensure sessions contains epoc. Will fail after 18th May 2033
|
|
|
|
- "'ansible_1' in result.session_name"
|
|
|
|
|
|
|
|
- name: Remove motd again (idempotent)
|
|
|
|
eos_banner:
|
|
|
|
banner: motd
|
|
|
|
text: |
|
|
|
|
this is my motd banner
|
|
|
|
that has a multiline
|
|
|
|
string
|
|
|
|
state: absent
|
|
|
|
authorize: yes
|
|
|
|
provider: "{{ eapi }}"
|
|
|
|
register: result
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
that:
|
|
|
|
- "result.changed == false"
|
|
|
|
- "result.commands | length == 0"
|
|
|
|
# Ensure sessions contains epoc. Will fail after 18th May 2033
|
|
|
|
- "result.session_name is not defined"
|
2017-03-10 16:29:36 +01:00
|
|
|
# FIXME add in tests for everything defined in docs
|
|
|
|
# FIXME Test state:absent + test:
|
|
|
|
# FIXME Without powers ensure "privileged mode required"
|