dc37b41b72
* [2.5] Update ios tests (#42509) * 192.168.0.1/24 conflicts with management IP * Images don't have the hostnames we expect (cherry picked from commit399d13d
) Co-authored-by: Nathaniel Case <this.is@nathanielca.se> * ios test cleanup pt 2 (#42570) * Remove local from ios_config to avoid needing to add provider * ios_smoke should test all with local to pick up the slack (cherry picked from commit381263ad99
)
33 lines
711 B
YAML
33 lines
711 B
YAML
---
|
|
- debug: msg="START cli/toplevel.yaml on connection={{ ansible_connection }}"
|
|
|
|
- name: setup
|
|
ios_config:
|
|
lines: ['hostname {{ shorter_hostname }}']
|
|
match: none
|
|
|
|
- name: configure top level command
|
|
ios_config:
|
|
lines: ['hostname foo']
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- "result.changed == true"
|
|
- "'hostname foo' in result.updates"
|
|
|
|
- name: configure top level command idempotent check
|
|
ios_config:
|
|
lines: ['hostname foo']
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- "result.changed == false"
|
|
|
|
- name: teardown
|
|
ios_config:
|
|
lines: ['hostname {{ shorter_hostname }}']
|
|
match: none
|
|
|
|
- debug: msg="END cli/toplevel.yaml on connection={{ ansible_connection }}"
|