ansible/test/integration/targets/nxos_vtp_domain/tests/common/sanity.yaml
Nathaniel Case a197125954
Nxos restore provider to nxapi tests (#41818)
* Quick and dirty sed to add provider

* Manually verify the rest of the cases

* Add missing provider
2018-07-02 09:43:51 -04:00

38 lines
892 B
YAML

---
- debug: msg="START connection={{ ansible_connection }} nxos_vtp_domain sanity test"
- debug: msg="Using provider={{ connection.transport }}"
when: ansible_connection == "local"
- block:
- name: enable feature vtp
nxos_feature:
feature: vtp
provider: "{{ connection }}"
state: enabled
- name: configure vtp domain
nxos_vtp_domain: &configure
domain: ntc
provider: "{{ connection }}"
register: result
- assert: &true
that:
- "result.changed == true"
- name: "Conf Idempotence"
nxos_vtp_domain: *configure
register: result
- assert: &false
that:
- "result.changed == false"
always:
- name: disable feature vtp
nxos_feature:
feature: vtp
provider: "{{ connection }}"
state: disabled
- debug: msg="END connection={{ ansible_connection }} nxos_vtp_domain sanity test"