ansible/test/integration/targets/ios_config/tests/cli/toplevel_after.yaml
Ganesh Nalawade 65ab37cbd3 Remove provider from ios integration test (#31037)
*  Remove provider from each task as it is not required.
*  Add `authorize: yes` whereever required
2017-09-28 15:23:52 +05:30

44 lines
960 B
YAML

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