ansible/test/integration/targets/net_banner/tests/ios/basic-motd.yaml
Ganesh Nalawade 5d1ed1fc25
Fix platform agnostic network integration test cases (#32378)
* Fix platform agnostic network test cases

* Fix vyos_interface CI failure
2017-10-31 15:21:27 +05:30

46 lines
923 B
YAML

---
- name: setup - remove motd
ios_banner:
banner: motd
state: absent
authorize: yes
- name: Set motd
net_banner:
banner: motd
text: |
this is my motd banner
that has a multiline
string
state: present
authorize: yes
register: result
- debug:
msg: "{{ result }}"
- assert:
that:
- "result.changed == true"
- "'banner motd @\nthis is my motd banner\nthat has a multiline\nstring\n@' in result.commands"
- name: Set motd again (idempotent)
net_banner:
banner: motd
text: |
this is my motd banner
that has a multiline
string
state: present
authorize: yes
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"