ansible/test/integration/targets/eos_config/tests/eapi/toplevel_after.yaml
Nathaniel Case 20f93816d6
Fix eapi tests to use become (#40838)
* Return the expected prompt character based on become status

* Update eos_banner tests for eapi

* Update eos_config tests for eapi

* Update eos_facts tests for eapi

* Update eos_interface tests for eapi

* Update eos_l3_interface tests for eapi

* Update eos_lldp tests for eapi

* Update eos_logging tests for eapi

* Update eos_smoke tests for eapi

* Update eos_system tests for eapi
2018-05-29 14:18:03 -04:00

44 lines
936 B
YAML

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