2bc4c4f156
* - Netconf plugin addition for iosxr - Utilities refactoring to support netconf and cliconf - iosx_banner refactoring for netconf and cliconf - Integration testcases changes to accomodate above changes * Fix sanity failures, shippable errors and review comments * fix pep8 issue * changes run_command method to send specific command args * - Review comment fixes - iosxr_command changes to remove ComplexDict based command_spec * - Move namespaces removal method from utils to netconf plugin * Minor refactoring in utils and change in deprecation message * rewrite build_xml logic and import changes for new utils dir structure * - Review comment changes and minor changes to documentation * * refactor common code and docs updates
47 lines
969 B
YAML
47 lines
969 B
YAML
---
|
|
- name: setup - remove login
|
|
iosxr_banner:
|
|
banner: login
|
|
provider: "{{ cli }}"
|
|
state: absent
|
|
|
|
- name: Set login
|
|
iosxr_banner:
|
|
banner: login
|
|
text: |
|
|
this is my login banner
|
|
that has a multiline
|
|
string
|
|
provider: "{{ cli }}"
|
|
state: present
|
|
register: result
|
|
|
|
- debug:
|
|
msg: "{{ result }}"
|
|
|
|
- assert:
|
|
that:
|
|
- "result.changed == true"
|
|
- "'this is my login banner' in result.commands[0]"
|
|
- "'that has a multiline' in result.commands[0]"
|
|
|
|
- name: Set login again (idempotent)
|
|
iosxr_banner:
|
|
banner: login
|
|
text: |
|
|
this is my login banner
|
|
that has a multiline
|
|
string
|
|
provider: "{{ cli }}"
|
|
state: present
|
|
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"
|