ansible/test/integration/targets/net_banner/tests/ios/basic-login.yaml
Ricardo Carrillo Cruz 955dc6e250 Add net_banner platform agnostic module (#25245)
* Add net_banner platform agnostic module

* Add integration tests for net_banner

* Remove default from required param

* Remove skip/python3 from net_banner aliases
2017-06-02 17:01:08 +02:00

50 lines
1,012 B
YAML

---
- name: setup - remove login
ios_banner:
banner: login
state: absent
authorize: yes
provider: "{{ cli }}"
- name: Set login
net_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"
- "'banner login @\nthis is my login banner\nthat has a multiline\nstring\n@' in result.commands"
- name: Set login again (idempotent)
net_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"
# FIXME add in tests for everything defined in docs
# FIXME Test state:absent + test:
# FIXME Without powers ensure "privileged mode required"