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

46 lines
1.1 KiB
YAML

---
- debug: msg="START cli/src_basic.yaml on connection={{ ansible_connection }}"
- name: setup
ios_config:
commands:
- no description
- no shutdown
parents:
- interface Loopback999
match: none
authorize: yes
become: yes
- name: configure device with config
ios_config:
src: basic/config.j2
authorize: yes
become: yes
register: result
- name: debug, remove me
debug:
msg: "{{ result }}"
- assert:
that:
- "result.changed == true"
# https://github.com/ansible/ansible-modules-core/issues/4807
# FIXME Bug https://github.com/ansible/ansible/issues/19382
# - "result.updates is not defined"
- name: check device with config
ios_config:
src: basic/config.j2
authorize: yes
become: yes
register: result
- assert:
that:
- "result.changed == false"
# https://github.com/ansible/ansible-modules-core/issues/4807
# FIXME Bug https://github.com/ansible/ansible/issues/19382
# - "result.updates is not defined"
- debug: msg="END cli/src_basic.yaml on connection={{ ansible_connection }}"