ansible/test/integration/targets/eos_eapi/tests/cli/vrf.yaml
Nathaniel Case 513c75079e
Port eos tests to network_cli (#33586)
* Add eos and fix tests to run multiple connections

* Update tests to report connection

* Add missing START messages

* Fix unspecified connection

* Python 3 updates

Exceptions don't have `.message` in Python 3

* Override `become` when using `connection=local`

* Slight restructuring to make eapi easier later on

* Move eapi toggle to prepare_eos
* Pull out connection on eapi tasks
2017-12-19 15:49:49 -05:00

55 lines
1.2 KiB
YAML

---
- debug: msg="START cli/vrf.yaml on connection={{ ansible_connection }}"
- name: Set invalid VRF
eos_eapi:
vrf: foobar
provider: "{{ cli }}"
become: yes
register: eos_eapi_output
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 }}"
become: yes
register: eos_eapi_output
ignore_errors: true
- name: Set VRF to default again (idempotent)
eos_eapi:
vrf: default
provider: "{{ cli }}"
become: yes
register: eos_eapi_output
- 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
when: false
#- debug:
# msg: "{{ eos_eapi_output }}"
- debug: msg="END cli/vrf.yaml on connection={{ ansible_connection }}"