1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00
community.general/test/integration/targets/ios_config/tests/cli/save.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

72 lines
1.4 KiB
YAML

---
- debug: msg="START cli/save.yaml on connection={{ ansible_connection }}"
- name: setup
ios_config:
commands:
- no description
- no shutdown
parents:
- interface Loopback999
match: none
authorize: yes
become: yes
- name: save config
ios_config:
save: true
authorize: yes
become: yes
register: result
# FIXME https://github.com/ansible/ansible-modules-core/issues/5008
ignore_errors: true
- assert:
that:
- "result.changed == true"
# FIXME https://github.com/ansible/ansible-modules-core/issues/5008
ignore_errors: true
- name: save should always run
ios_config:
save: true
authorize: yes
become: yes
register: result
# FIXME https://github.com/ansible/ansible-modules-core/issues/5008
ignore_errors: true
- name: delete config (setup)
ios_config:
replace: line
lines:
- "no ip http server"
save_when: modified
authorize: yes
become: yes
register: result
- name: save should always run
ios_config:
replace: line
lines:
- "ip http server"
save_when: modified
authorize: yes
become: yes
register: result
- assert:
that:
- "result.changed == true"
- name: teardown
ios_config:
lines:
- "no ip http server"
authorize: yes
become: yes
register: result
- debug: msg="END cli/save.yaml on connection={{ ansible_connection }}"