-
-
Notifications
You must be signed in to change notification settings - Fork 31
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
3 changed files
with
160 additions
and
0 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/group2 | ||
cs/group3 |
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 @@ | ||
--- | ||
dependencies: | ||
- cs_common |
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,154 @@ | ||
--- | ||
- name: setup | ||
ngine_io.cloudstack.region: | ||
id: 2 | ||
state: absent | ||
register: region | ||
- name: verify setup | ||
assert: | ||
that: | ||
- region is successful | ||
|
||
- name: test fail if missing params | ||
ngine_io.cloudstack.region: | ||
register: region | ||
ignore_errors: true | ||
- name: verify results of fail if missing name | ||
assert: | ||
that: | ||
- region is failed | ||
- "region.msg.startswith('missing required arguments: ')" | ||
|
||
- name: test create region in check mode | ||
ngine_io.cloudstack.region: | ||
id: 2 | ||
name: geneva | ||
endpoint: https://cloud.gva.example.com | ||
register: region | ||
check_mode: true | ||
- name: verify test create region in check mode | ||
assert: | ||
that: | ||
- region is changed | ||
|
||
- name: test create region in check mode | ||
ngine_io.cloudstack.region: | ||
id: 2 | ||
name: geneva | ||
endpoint: https://cloud.gva.example.com | ||
register: region | ||
- name: verify test create region in check mode | ||
assert: | ||
that: | ||
- region is changed | ||
- region.name == 'geneva' | ||
- region.id == 2 | ||
- region.endpoint == 'https://cloud.gva.example.com' | ||
- region.gslb_service_enabled == true | ||
- region.portable_ip_service_enabled == false | ||
|
||
- name: test create region idempotence | ||
ngine_io.cloudstack.region: | ||
id: 2 | ||
name: geneva | ||
endpoint: https://cloud.gva.example.com | ||
register: region | ||
- name: verify test create region idempotence | ||
assert: | ||
that: | ||
- region is not changed | ||
- region.name == 'geneva' | ||
- region.id == 2 | ||
- region.endpoint == 'https://cloud.gva.example.com' | ||
- region.gslb_service_enabled == true | ||
- region.portable_ip_service_enabled == false | ||
|
||
- name: test update region in check mode | ||
ngine_io.cloudstack.region: | ||
id: 2 | ||
name: zuerich | ||
endpoint: https://cloud.zrh.example.com | ||
register: region | ||
check_mode: true | ||
- name: verify test update region in check mode | ||
assert: | ||
that: | ||
- region is changed | ||
- region.name == 'geneva' | ||
- region.id == 2 | ||
- region.endpoint == 'https://cloud.gva.example.com' | ||
- region.gslb_service_enabled == true | ||
- region.portable_ip_service_enabled == false | ||
|
||
- name: test update region | ||
ngine_io.cloudstack.region: | ||
id: 2 | ||
name: zuerich | ||
endpoint: https://cloud.zrh.example.com | ||
register: region | ||
- name: verify test update region | ||
assert: | ||
that: | ||
- region is changed | ||
- region.name == 'zuerich' | ||
- region.id == 2 | ||
- region.endpoint == 'https://cloud.zrh.example.com' | ||
- region.gslb_service_enabled == true | ||
- region.portable_ip_service_enabled == false | ||
|
||
- name: test update region idempotence | ||
ngine_io.cloudstack.region: | ||
id: 2 | ||
name: zuerich | ||
endpoint: https://cloud.zrh.example.com | ||
register: region | ||
- name: verify test update region idempotence | ||
assert: | ||
that: | ||
- region is not changed | ||
- region.name == 'zuerich' | ||
- region.id == 2 | ||
- region.endpoint == 'https://cloud.zrh.example.com' | ||
- region.gslb_service_enabled == true | ||
- region.portable_ip_service_enabled == false | ||
|
||
- name: test remove region in check mdoe | ||
ngine_io.cloudstack.region: | ||
id: 2 | ||
state: absent | ||
register: region | ||
check_mode: true | ||
- name: verify test remove region in check mode | ||
assert: | ||
that: | ||
- region is changed | ||
- region.name == 'zuerich' | ||
- region.id == 2 | ||
- region.endpoint == 'https://cloud.zrh.example.com' | ||
- region.gslb_service_enabled == true | ||
- region.portable_ip_service_enabled == false | ||
|
||
- name: test remove region | ||
ngine_io.cloudstack.region: | ||
id: 2 | ||
state: absent | ||
register: region | ||
- name: verify test remove region | ||
assert: | ||
that: | ||
- region is changed | ||
- region.name == 'zuerich' | ||
- region.id == 2 | ||
- region.endpoint == 'https://cloud.zrh.example.com' | ||
- region.gslb_service_enabled == true | ||
- region.portable_ip_service_enabled == false | ||
|
||
- name: test remove region idempotence | ||
ngine_io.cloudstack.region: | ||
id: 2 | ||
state: absent | ||
register: region | ||
- name: verify test remove region idempotence | ||
assert: | ||
that: | ||
- region is not changed |