d5b04aa1f1
* cloudstack: test: cs_network_acl: add check_mode tests * cloudstack: test: cs_pod: add check_mode tests * cloudstack: test: cs_user: add check_mode tests * cloudstack: test: cs_sshkeypair: add check_mode tests * cloudstack: test: cs_project: add check_mode tests * cloudstack: test: cs_vpc: add check_mode tests * cloudstack: test: cs_vpn_gateway: add check_mode tests * cloudstack: test: cs_volume: add check_mode tests * cloudstack: test: cs_vmsnapshot: add check_mode tests * cloudstack: test: cs_account: add check_mode tests * cloudstack: test: cs_affinitygroup: add check_mode tests * cloudstack: test: cs_cluster: add check_mode tests * cloudstack: test: cs_domain: add check_mode tests * cloudstack: test: cs_instancegroup: add check_mode tests * cloudstack: test: cs_iso: add check_mode tests * cloudstack: test: cs_loadbalancer_rule: add check_mode tests * cloudstack: test: cs_portforward: add check_mode tests * cloudstack: test: cs_resourcelimit: add check_mode tests * cloudstack: test: cs_securitygroup: add check_mode tests * cloudstack: test: cs_securitygroup_rule: add check_mode tests * cloudstack: test: cs_configuration: add check_mode tests * cloudstack: test: cs_firewall: add check_mode tests * cloudstack: test: cs_instance: add check_mode tests * cloudstack: query current tags from API Fixes unexpected tags returned in check mode.
152 lines
4.8 KiB
YAML
152 lines
4.8 KiB
YAML
---
|
|
- name: setup
|
|
cs_domain: path={{ cs_resource_prefix }}_domain state=absent
|
|
register: dom
|
|
- name: verify setup
|
|
assert:
|
|
that:
|
|
- dom|success
|
|
|
|
- name: test fail if missing name
|
|
action: cs_domain
|
|
register: dom
|
|
ignore_errors: true
|
|
- name: verify results of fail if missing params
|
|
assert:
|
|
that:
|
|
- dom|failed
|
|
- 'dom.msg == "missing required arguments: path"'
|
|
|
|
- name: test fail if ends with /
|
|
cs_domain: path={{ cs_resource_prefix }}_domain/
|
|
register: dom
|
|
ignore_errors: true
|
|
- name: verify results of fail if ends with /
|
|
assert:
|
|
that:
|
|
- dom|failed
|
|
- dom.msg == "Path '{{ cs_resource_prefix }}_domain/' must not end with /"
|
|
|
|
- name: test create a domain in check mode
|
|
cs_domain: path={{ cs_resource_prefix }}_domain
|
|
register: dom
|
|
check_mode: true
|
|
- name: verify results of test create a domain in check mode
|
|
assert:
|
|
that:
|
|
- dom|changed
|
|
|
|
- name: test create a domain
|
|
cs_domain: path={{ cs_resource_prefix }}_domain
|
|
register: dom
|
|
- name: verify results of test create a domain
|
|
assert:
|
|
that:
|
|
- dom|changed
|
|
- dom.path == "ROOT/{{ cs_resource_prefix }}_domain"
|
|
- dom.name == "{{ cs_resource_prefix }}_domain"
|
|
|
|
- name: test create a domain idempotence
|
|
cs_domain: path={{ cs_resource_prefix }}_domain
|
|
register: dom
|
|
- name: verify results of test create a domain idempotence
|
|
assert:
|
|
that:
|
|
- not dom|changed
|
|
- dom.path == "ROOT/{{ cs_resource_prefix }}_domain"
|
|
- dom.name == "{{ cs_resource_prefix }}_domain"
|
|
|
|
- name: test create a subdomain in check mode
|
|
cs_domain: path=ROOT/{{ cs_resource_prefix }}_domain/{{ cs_resource_prefix }}_subdomain
|
|
register: dom
|
|
check_mode: true
|
|
- name: verify results of test create a domain in check mode
|
|
assert:
|
|
that:
|
|
- dom|changed
|
|
|
|
- name: test create a subdomain
|
|
cs_domain: path=ROOT/{{ cs_resource_prefix }}_domain/{{ cs_resource_prefix }}_subdomain
|
|
register: dom
|
|
- name: verify results of test create a domain
|
|
assert:
|
|
that:
|
|
- dom|changed
|
|
- dom.path == "ROOT/{{ cs_resource_prefix }}_domain/{{ cs_resource_prefix }}_subdomain"
|
|
- dom.name == "{{ cs_resource_prefix }}_subdomain"
|
|
|
|
- name: test create a subdomain idempotence
|
|
cs_domain: path=ROOT/{{ cs_resource_prefix }}_domain/{{ cs_resource_prefix }}_subdomain
|
|
register: dom
|
|
- name: verify results of test create a subdomain idempotence
|
|
assert:
|
|
that:
|
|
- not dom|changed
|
|
|
|
- name: test delete a subdomain in check mode
|
|
cs_domain: path=ROOT/{{ cs_resource_prefix }}_domain/{{ cs_resource_prefix }}_subdomain state=absent
|
|
register: dom
|
|
check_mode: true
|
|
- name: verify results of test delete a subdomain in check mode
|
|
assert:
|
|
that:
|
|
- dom|changed
|
|
- dom.path == "ROOT/{{ cs_resource_prefix }}_domain/{{ cs_resource_prefix }}_subdomain"
|
|
- dom.name == "{{ cs_resource_prefix }}_subdomain"
|
|
|
|
- name: test delete a subdomain
|
|
cs_domain: path=ROOT/{{ cs_resource_prefix }}_domain/{{ cs_resource_prefix }}_subdomain state=absent
|
|
register: dom
|
|
- name: verify results of test delete a subdomain
|
|
assert:
|
|
that:
|
|
- dom|changed
|
|
- dom.path == "ROOT/{{ cs_resource_prefix }}_domain/{{ cs_resource_prefix }}_subdomain"
|
|
- dom.name == "{{ cs_resource_prefix }}_subdomain"
|
|
|
|
- name: test delete a subdomain idempotence
|
|
cs_domain: path=ROOT/{{ cs_resource_prefix }}_domain/{{ cs_resource_prefix }}_subdomain state=absent
|
|
register: dom
|
|
- name: verify results of test delete a subdomain idempotence
|
|
assert:
|
|
that:
|
|
- not dom|changed
|
|
|
|
- name: test create a subdomain 2
|
|
cs_domain: path=ROOT/{{ cs_resource_prefix }}_domain/{{ cs_resource_prefix }}_subdomain
|
|
register: dom
|
|
- name: verify results of test create a subdomain 2
|
|
assert:
|
|
that:
|
|
- dom|changed
|
|
- dom.path == "ROOT/{{ cs_resource_prefix }}_domain/{{ cs_resource_prefix }}_subdomain"
|
|
- dom.name == "{{ cs_resource_prefix }}_subdomain"
|
|
|
|
- name: test delete a domain with clean up in check mode
|
|
cs_domain: path=ROOT/{{ cs_resource_prefix }}_domain state=absent clean_up=true
|
|
register: dom
|
|
check_mode: true
|
|
- name: verify results of test delete a domain with clean up in check mode
|
|
assert:
|
|
that:
|
|
- dom|changed
|
|
- dom.path == "ROOT/{{ cs_resource_prefix }}_domain"
|
|
- dom.name == "{{ cs_resource_prefix }}_domain"
|
|
|
|
- name: test delete a domain with clean up
|
|
cs_domain: path=ROOT/{{ cs_resource_prefix }}_domain state=absent clean_up=true
|
|
register: dom
|
|
- name: verify results of test delete a domain with clean up
|
|
assert:
|
|
that:
|
|
- dom|changed
|
|
- dom.path == "ROOT/{{ cs_resource_prefix }}_domain"
|
|
- dom.name == "{{ cs_resource_prefix }}_domain"
|
|
|
|
- name: test delete a domain with clean up idempotence
|
|
cs_domain: path=ROOT/{{ cs_resource_prefix }}_domain state=absent clean_up=true
|
|
register: dom
|
|
- name: verify results of test delete a domain with clean up idempotence
|
|
assert:
|
|
that:
|
|
- not dom|changed
|