f3337e1fba
* Fix over-byte * Update ios tests to call `provider` To continue to support testing `connection: local` * Fix command dict handling in ios_user * Clean up unit tests, too
37 lines
815 B
YAML
37 lines
815 B
YAML
---
|
|
- debug: msg="START cli/toplevel.yaml on connection={{ ansible_connection }}"
|
|
|
|
- name: setup
|
|
ios_config:
|
|
lines: ['hostname {{ shorter_hostname }}']
|
|
match: none
|
|
provider: "{{ cli }}"
|
|
|
|
- name: configure top level command
|
|
ios_config:
|
|
lines: ['hostname foo']
|
|
provider: "{{ cli }}"
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- "result.changed == true"
|
|
- "'hostname foo' in result.updates"
|
|
|
|
- name: configure top level command idempotent check
|
|
ios_config:
|
|
lines: ['hostname foo']
|
|
provider: "{{ cli }}"
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- "result.changed == false"
|
|
|
|
- name: teardown
|
|
ios_config:
|
|
lines: ['hostname {{ shorter_hostname }}']
|
|
match: none
|
|
provider: "{{ cli }}"
|
|
|
|
- debug: msg="END cli/toplevel.yaml on connection={{ ansible_connection }}"
|