summaryrefslogtreecommitdiff
path: root/test/integration/targets/cs_instancegroup
diff options
context:
space:
mode:
authorRené Moser <mail@renemoser.net>2017-05-26 12:19:47 +0200
committerGitHub <noreply@github.com>2017-05-26 12:19:47 +0200
commitd5b04aa1f16bfef43799a89c57d3bcfa8bcfbd40 (patch)
tree83b1600c7e609e903417bcd1df3f4df7e647637e /test/integration/targets/cs_instancegroup
parent2af5556901f0847d835af60f58769a8dd94c4415 (diff)
downloadansible-d5b04aa1f16bfef43799a89c57d3bcfa8bcfbd40.tar.gz
cloudstack: add check mode tests (#24908)
* 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.
Diffstat (limited to 'test/integration/targets/cs_instancegroup')
-rw-r--r--test/integration/targets/cs_instancegroup/tasks/main.yml21
1 files changed, 21 insertions, 0 deletions
diff --git a/test/integration/targets/cs_instancegroup/tasks/main.yml b/test/integration/targets/cs_instancegroup/tasks/main.yml
index d0f3c2258c..c9296c100b 100644
--- a/test/integration/targets/cs_instancegroup/tasks/main.yml
+++ b/test/integration/targets/cs_instancegroup/tasks/main.yml
@@ -17,6 +17,16 @@
- ig|failed
- "ig.msg == 'missing required arguments: name'"
+- name: test present instance group in check mode
+ cs_instancegroup: name={{ cs_resource_prefix }}_ig
+ register: ig
+ check_mode: true
+- name: verify results of create instance group in check mode
+ assert:
+ that:
+ - ig|success
+ - ig|changed
+
- name: test present instance group
cs_instancegroup: name={{ cs_resource_prefix }}_ig
register: ig
@@ -37,6 +47,17 @@
- not ig|changed
- ig.name == "{{ cs_resource_prefix }}_ig"
+- name: test absent instance group in check mode
+ cs_instancegroup: name={{ cs_resource_prefix }}_ig state=absent
+ register: ig
+ check_mode: true
+- name: verify results of absent instance group in check mode
+ assert:
+ that:
+ - ig|success
+ - ig|changed
+ - ig.name == "{{ cs_resource_prefix }}_ig"
+
- name: test absent instance group
cs_instancegroup: name={{ cs_resource_prefix }}_ig state=absent
register: ig