-
-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
34 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
cloud/cs | ||
cs/group1 | ||
cs/group3 |
File renamed without changes.
62 changes: 31 additions & 31 deletions
62
...n/targets/cs_affinitygroup/tasks/main.yml → ...ion/targets/affinity_group/tasks/main.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,93 +1,93 @@ | ||
--- | ||
- name: setup | ||
cs_affinitygroup: | ||
ngine_io.cloudstack.affinity_group: | ||
name: "{{ cs_resource_prefix }}_ag" | ||
state: absent | ||
register: ag | ||
- name: verify setup | ||
assert: | ||
that: | ||
- ag is successful | ||
- ag is successful | ||
|
||
- name: test fail if missing name | ||
cs_affinitygroup: | ||
ngine_io.cloudstack.affinity_group: | ||
register: ag | ||
ignore_errors: true | ||
- name: verify results of fail if missing name | ||
assert: | ||
that: | ||
- ag is failed | ||
- "ag.msg == 'missing required arguments: name'" | ||
- ag is failed | ||
- "ag.msg == 'missing required arguments: name'" | ||
|
||
- name: test fail unknown affinity type | ||
cs_affinitygroup: | ||
ngine_io.cloudstack.affinity_group: | ||
name: "{{ cs_resource_prefix }}_ag" | ||
affinity_type: unexistent affinity type | ||
register: ag | ||
ignore_errors: true | ||
- name: verify test fail unknown affinity type | ||
assert: | ||
that: | ||
- ag is failed | ||
- "ag.msg == 'affinity group type not found: unexistent affinity type'" | ||
- ag is failed | ||
- "ag.msg == 'affinity group type not found: unexistent affinity type'" | ||
|
||
- name: test present affinity group in check mode | ||
cs_affinitygroup: name={{ cs_resource_prefix }}_ag | ||
ngine_io.cloudstack.affinity_group: name={{ cs_resource_prefix }}_ag | ||
register: ag | ||
check_mode: true | ||
- name: verify results of create affinity group in check mode | ||
assert: | ||
that: | ||
- ag is successful | ||
- ag is changed | ||
- ag is successful | ||
- ag is changed | ||
|
||
- name: test present affinity group | ||
cs_affinitygroup: name={{ cs_resource_prefix }}_ag | ||
ngine_io.cloudstack.affinity_group: name={{ cs_resource_prefix }}_ag | ||
register: ag | ||
- name: verify results of create affinity group | ||
assert: | ||
that: | ||
- ag is successful | ||
- ag is changed | ||
- ag.name == "{{ cs_resource_prefix }}_ag" | ||
- ag is successful | ||
- ag is changed | ||
- ag.name == cs_resource_prefix + "_ag" | ||
|
||
- name: test present affinity group is idempotence | ||
cs_affinitygroup: name={{ cs_resource_prefix }}_ag | ||
ngine_io.cloudstack.affinity_group: name={{ cs_resource_prefix }}_ag | ||
register: ag | ||
- name: verify results present affinity group is idempotence | ||
assert: | ||
that: | ||
- ag is successful | ||
- ag is not changed | ||
- ag.name == "{{ cs_resource_prefix }}_ag" | ||
- ag is successful | ||
- ag is not changed | ||
- ag.name == cs_resource_prefix + "_ag" | ||
|
||
- name: test absent affinity group in check mode | ||
cs_affinitygroup: name={{ cs_resource_prefix }}_ag state=absent | ||
ngine_io.cloudstack.affinity_group: name={{ cs_resource_prefix }}_ag state=absent | ||
register: ag | ||
check_mode: true | ||
- name: verify results of absent affinity group in check mode | ||
assert: | ||
that: | ||
- ag is successful | ||
- ag is changed | ||
- ag.name == "{{ cs_resource_prefix }}_ag" | ||
- ag is successful | ||
- ag is changed | ||
- ag.name == cs_resource_prefix + "_ag" | ||
|
||
- name: test absent affinity group | ||
cs_affinitygroup: name={{ cs_resource_prefix }}_ag state=absent | ||
ngine_io.cloudstack.affinity_group: name={{ cs_resource_prefix }}_ag state=absent | ||
register: ag | ||
- name: verify results of absent affinity group | ||
assert: | ||
that: | ||
- ag is successful | ||
- ag is changed | ||
- ag.name == "{{ cs_resource_prefix }}_ag" | ||
- ag is successful | ||
- ag is changed | ||
- ag.name == cs_resource_prefix + "_ag" | ||
|
||
- name: test absent affinity group is idempotence | ||
cs_affinitygroup: name={{ cs_resource_prefix }}_ag state=absent | ||
ngine_io.cloudstack.affinity_group: name={{ cs_resource_prefix }}_ag state=absent | ||
register: ag | ||
- name: verify results of absent affinity group is idempotence | ||
assert: | ||
that: | ||
- ag is successful | ||
- ag is not changed | ||
- ag.name is undefined | ||
- ag is successful | ||
- ag is not changed | ||
- ag.name is undefined |
This file was deleted.
Oops, something went wrong.