Skip to content

Commit

Permalink
tests: rename affinity_group
Browse files Browse the repository at this point in the history
  • Loading branch information
resmo committed Sep 27, 2024
1 parent 905284e commit c34527d
Show file tree
Hide file tree
Showing 4 changed files with 34 additions and 33 deletions.
3 changes: 3 additions & 0 deletions tests/integration/targets/affinity_group/aliases
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
cloud/cs
cs/group1
cs/group3
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
2 changes: 0 additions & 2 deletions tests/integration/targets/cs_affinitygroup/aliases

This file was deleted.

0 comments on commit c34527d

Please sign in to comment.