ansible/test/integration/targets/ios_config/tests/cli/toplevel_after.yaml
Nathaniel Case cb1b705218
ios integration tests to network_cli (#33920)
* Preliminary steps

* Fix Python3 network_cli ios

* Add connection to debug strings

* Fix ios confirm prompt by way of optional newline

Also update ios_user delete tests
2017-12-20 09:03:29 -05:00

48 lines
1.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
authorize: yes
become: yes
- name: configure top level command with before
ios_config:
lines: ['hostname foo']
after: ['snmp-server contact bar']
authorize: yes
become: yes
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']
authorize: yes
become: yes
register: result
- assert:
that:
- "result.changed == false"
- name: teardown
ios_config:
lines:
- "no snmp-server contact"
- "hostname {{ shorter_hostname }}"
match: none
authorize: yes
become: yes
- debug: msg="END cli/toplevel_after.yaml on connection={{ ansible_connection }}"