ansible/test/integration/targets/nxos_banner/tests/common/basic-motd.yaml
Nathaniel Case 862cde5e82 [WIP] Fix nxos_banner (#28607)
* Fix `'state': 'absent'`

* Replace idempotence tests with references

* Fix issues with nxos_banner
2017-08-28 17:09:54 -04:00

35 lines
795 B
YAML

---
- name: setup - remove motd
nxos_banner:
banner: motd
state: absent
provider: "{{ connection }}"
- name: Set motd
nxos_banner: &motd
banner: motd
text: |
this is my motd banner
that has a multiline
string
state: present
provider: "{{ connection }}"
register: 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)
nxos_banner: *motd
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"