Skip to content

Commit

Permalink
add region
Browse files Browse the repository at this point in the history
  • Loading branch information
resmo committed Nov 23, 2024
1 parent 94fac79 commit 4fd502a
Show file tree
Hide file tree
Showing 3 changed files with 160 additions and 0 deletions.
3 changes: 3 additions & 0 deletions tests/integration/targets/region/aliases
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
cloud/cs
cs/group2
cs/group3
3 changes: 3 additions & 0 deletions tests/integration/targets/region/meta/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
---
dependencies:
- cs_common
154 changes: 154 additions & 0 deletions tests/integration/targets/region/tasks/main.yml
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

0 comments on commit 4fd502a

Please sign in to comment.