mirror of https://github.com/ansible/ansible.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
56 lines
1.2 KiB
YAML
56 lines
1.2 KiB
YAML
---
|
|
|
|
- name: setup - remove login
|
|
eos_banner:
|
|
banner: login
|
|
state: absent
|
|
authorize: yes
|
|
provider: "{{ cli }}"
|
|
|
|
- name: Set login
|
|
eos_banner:
|
|
banner: login
|
|
text: |
|
|
this is my login banner
|
|
that has a multiline
|
|
string
|
|
state: present
|
|
authorize: yes
|
|
provider: "{{ cli }}"
|
|
register: result
|
|
|
|
- debug:
|
|
msg: "{{ result }}"
|
|
|
|
- assert:
|
|
that:
|
|
- "result.changed == true"
|
|
- "'this is my login banner' in result.commands"
|
|
- "'that has a multiline' in result.commands"
|
|
# Ensure sessions contains epoc. Will fail after 18th May 2033
|
|
- "'ansible_1' in result.session_name"
|
|
|
|
- name: Set login again (idempotent)
|
|
eos_banner:
|
|
banner: login
|
|
text: |
|
|
this is my login banner
|
|
that has a multiline
|
|
string
|
|
state: present
|
|
authorize: yes
|
|
provider: "{{ cli }}"
|
|
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"
|
|
|
|
|
|
# FIXME add in tests for everything defined in docs
|
|
# FIXME Test state:absent + test:
|
|
# FIXME Without powers ensure "privileged mode required"
|