1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00
community.general/test/integration/targets/nxos_vtp_domain/tests/common/sanity.yaml
Nathaniel Case 483df13626 Fixing issues with httpapi (#40388)
* I seem to have forgotten the back half of tests

* Set http timeout from persistent_command_timeout

* Tweak URL generation and provide URL on error

* Push var_options to connection process

* Don't wait forever if coming from persistent

* Don't send the entire contents of variables to ansible-connection
2018-05-21 15:58:35 +01:00

35 lines
787 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
state: enabled
- name: configure vtp domain
nxos_vtp_domain: &configure
domain: ntc
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
state: disabled
- debug: msg="END connection={{ ansible_connection }} nxos_vtp_domain sanity test"