mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-22 12:50:22 -07:00
cloudstack: cs_zone_facts: add tests and fix pep8 (#25407)
This commit is contained in:
parent
bcc5bffd8e
commit
894b86a467
5 changed files with 66 additions and 26 deletions
32
test/integration/targets/cs_zone_facts/tasks/main.yml
Normal file
32
test/integration/targets/cs_zone_facts/tasks/main.yml
Normal file
|
@ -0,0 +1,32 @@
|
|||
---
|
||||
- name: setup zone is present
|
||||
cs_zone:
|
||||
name: "{{ cs_resource_prefix }}-zone"
|
||||
dns1: 8.8.8.8
|
||||
dns2: 8.8.4.4
|
||||
network_type: basic
|
||||
register: zone
|
||||
- name: verify setup zone is present
|
||||
assert:
|
||||
that:
|
||||
- zone|success
|
||||
|
||||
- name: get facts from zone
|
||||
cs_zone_facts:
|
||||
name: "{{ cs_resource_prefix }}-zone"
|
||||
register: zone
|
||||
- name: verify setup zone is present
|
||||
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
|
Loading…
Add table
Add a link
Reference in a new issue