mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-22 12:50:22 -07:00
cloudstack: tests: add test facts in check mode
This commit is contained in:
parent
e2914a45e1
commit
50a24cc9d7
2 changed files with 40 additions and 2 deletions
|
@ -11,11 +11,32 @@
|
|||
that:
|
||||
- zone|success
|
||||
|
||||
- name: get facts from zone
|
||||
- name: get facts from zone in check mode
|
||||
cs_zone_facts:
|
||||
name: "{{ cs_resource_prefix }}-zone"
|
||||
register: zone
|
||||
- name: verify setup zone is present
|
||||
check_mode: true
|
||||
- name: verify get facts from zone in check mode
|
||||
assert:
|
||||
that:
|
||||
- zone|success
|
||||
- not zone|changed
|
||||
- ansible_facts.cloudstack_zone.dns1 == "8.8.8.8"
|
||||
- ansible_facts.cloudstack_zone.dns2 == "8.8.4.4"
|
||||
- ansible_facts.cloudstack_zone.internal_dns1 == "8.8.8.8"
|
||||
- ansible_facts.cloudstack_zone.internal_dns2 == "8.8.4.4"
|
||||
- ansible_facts.cloudstack_zone.local_storage_enabled == false
|
||||
- ansible_facts.cloudstack_zone.network_type == "Basic"
|
||||
- ansible_facts.cloudstack_zone.zone_token != ""
|
||||
- ansible_facts.cloudstack_zone.securitygroups_enabled == true
|
||||
- ansible_facts.cloudstack_zone.dhcp_provider == "VirtualRouter"
|
||||
- ansible_facts.cloudstack_zone.local_storage_enabled == false
|
||||
|
||||
- name: get facts from zone
|
||||
cs_zone_facts:
|
||||
name: "{{ cs_resource_prefix }}-zone"
|
||||
register: zone
|
||||
- name: verify get facts from zone
|
||||
assert:
|
||||
that:
|
||||
- zone|success
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue