6471e4653d
* Integration test cleanup for cloudscale modules This refactors the cleanup procedure for the integration tests of the cloudscale_server and cloudscale_volume modules to use an "always" section for cleanup. The cleanup code also deletes all resources which contain the test run prefix. This ensures that all resources are cleaned up regardless of the actual test result which is a prerequisite for running these tests in CI. * Move cloudscale_floating_ip tests from legacy to integration This also adds code to make sure that floating IPs are deleted even if a test run fails. This is unfortunately not possible for floatint IPv6 networks.
53 lines
1.2 KiB
YAML
53 lines
1.2 KiB
YAML
---
|
|
- name: Create two volumes with the same name
|
|
uri:
|
|
url: 'https://api.cloudscale.ch/v1/volumes'
|
|
method: POST
|
|
headers:
|
|
Authorization: 'Bearer {{ cloudscale_api_token }}'
|
|
body:
|
|
name: '{{ cloudscale_resource_prefix }}-duplicate'
|
|
size_gb: 50
|
|
body_format: json
|
|
status_code: 201
|
|
register: duplicate
|
|
with_sequence: count=2
|
|
|
|
- name: Try access to duplicate name
|
|
cloudscale_volume:
|
|
name: '{{ cloudscale_resource_prefix }}-duplicate'
|
|
size_gb: 10
|
|
register: vol
|
|
ignore_errors: True
|
|
- name: 'VERIFY: Try access to duplicate name'
|
|
assert:
|
|
that:
|
|
- vol is failed
|
|
|
|
- name: Fail volume creation with UUID
|
|
cloudscale_volume:
|
|
uuid: ea3b39a3-77a8-4d0b-881d-0bb00a1e7f48
|
|
size_gb: 10
|
|
register: vol
|
|
ignore_errors: True
|
|
- name: 'VERIFY: Fail volume creation with UUID'
|
|
assert:
|
|
that:
|
|
- vol is failed
|
|
|
|
- name: Create volume
|
|
cloudscale_volume:
|
|
name: '{{ cloudscale_resource_prefix }}-name-UUID'
|
|
size_gb: 50
|
|
register: vol
|
|
- name: Fail name and UUID
|
|
cloudscale_volume:
|
|
name: '{{ vol.name }}'
|
|
uuid: '{{ vol.uuid }}'
|
|
size_gb: 100
|
|
register: vol
|
|
ignore_errors: True
|
|
- name: 'VERIFY: Fail name and UUID'
|
|
assert:
|
|
that:
|
|
- vol is failed
|