ansible/test/integration/targets/eos_eapi/tests/cli/vrf.yaml
Peter Sprygada 16a39639f5 fixes minor bugs in eos_eapi module (#21925)
* module will now check protocol running state before return
* warns on config argument no longer being needed
* lots of integration test cases updated
* updates unit and integration test cases for state check

fixes #21908
2017-02-25 17:18:46 -05:00

57 lines
1.1 KiB
YAML

- debug: msg="START cli/vrf.yaml"
#----
- name: Set invalid VRF
eos_eapi:
vrf: foobar
provider: "{{ cli }}"
register: eos_eapi_output
connection: local
ignore_errors: true
- name: Ensure that setting VRF failed
assert:
that:
- "eos_eapi_output.failed == true"
- "eos_eapi_output.changed == false"
- eos_eapi_output.msg == "vrf `foobar` is not configured on the system"
#----
- name: Set VRF to default
eos_eapi:
vrf: default
provider: "{{ cli }}"
register: eos_eapi_output
connection: local
ignore_errors: true
- name: Set VRF to default again (idempotent)
eos_eapi:
vrf: default
provider: "{{ cli }}"
register: eos_eapi_output
connection: local
- name: Ensure idempotent
assert:
that:
- "eos_eapi_output.changed == false"
# -----
# FIXME Future: Idempotent test
# Add in an extra vrt and swap between that and default to ensure idempotency
- name: DEBUG show vrf
eos_command:
commands: show vrf
provider: "{{ cli }}"
register: eos_eapi_output
connection: local
when: false
#- debug:
# msg: "{{ eos_eapi_output }}"
- debug: msg="END cli/vrf.yaml"