ansible/test/integration/targets/ios_config/tests/cli/toplevel.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

41 lines
843 B
YAML

---
- debug: msg="START cli/toplevel.yaml on connection={{ ansible_connection }}"
- name: setup
ios_config:
lines: ['hostname {{ shorter_hostname }}']
match: none
authorize: yes
become: yes
- name: configure top level command
ios_config:
lines: ['hostname foo']
authorize: yes
become: yes
register: result
- assert:
that:
- "result.changed == true"
- "'hostname foo' in result.updates"
- name: configure top level command idempotent check
ios_config:
lines: ['hostname foo']
authorize: yes
become: yes
register: result
- assert:
that:
- "result.changed == false"
- name: teardown
ios_config:
lines: ['hostname {{ shorter_hostname }}']
match: none
authorize: yes
become: yes
- debug: msg="END cli/toplevel.yaml on connection={{ ansible_connection }}"