ansible/test/integration/targets/ios_config/tests/cli/toplevel_after.yaml
Nathaniel Case f3337e1fba
ios test changes (#35510)
* 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
2018-02-02 09:50:15 -05:00

44 lines
1 KiB
YAML

---
- debug: msg="START cli/toplevel_after.yaml on connection={{ ansible_connection }}"
- name: setup
ios_config:
lines:
- "snmp-server contact ansible"
- "hostname {{ shorter_hostname }}"
match: none
provider: "{{ cli }}"
- name: configure top level command with before
ios_config:
lines: ['hostname foo']
after: ['snmp-server contact bar']
provider: "{{ cli }}"
register: result
- assert:
that:
- "result.changed == true"
- "'hostname foo' in result.updates"
- "'snmp-server contact bar' in result.updates"
- name: configure top level command with before idempotent check
ios_config:
lines: ['hostname foo']
after: ['snmp-server contact foo']
provider: "{{ cli }}"
register: result
- assert:
that:
- "result.changed == false"
- name: teardown
ios_config:
lines:
- "no snmp-server contact"
- "hostname {{ shorter_hostname }}"
match: none
provider: "{{ cli }}"
- debug: msg="END cli/toplevel_after.yaml on connection={{ ansible_connection }}"