ansible/test/legacy/roles/test_rax_cdb/tasks/main.yml
Matt Martz 4fe08441be Deprecate tests used as filters (#32361)
* Warn on tests used as filters

* Update docs, add aliases for tests that fit more gramatically with test syntax

* Fix rst formatting

* Add successful filter, alias of success

* Remove renamed_deprecation, it was overkill

* Make directory alias for is_dir

* Update tests to use proper jinja test syntax

* Update additional documentation, living outside of YAML files, to reflect proper jinja test syntax

* Add conversion script, porting guide updates, and changelog updates

* Update newly added uses of tests as filters

* No underscore variable

* Convert recent tests as filter changes to win_stat

* Fix some changes related to rebasing a few integration tests

* Make tests_as_filters_warning explicitly accept the name of the test, instead of inferring the name

* Add test for tests_as_filters_warning

* Update tests as filters in newly added/modified tests

* Address recent changes to several integration tests

* Address recent changes in cs_vpc
2017-11-27 17:58:08 -05:00

279 lines
7.4 KiB
YAML

# ============================================================
- name: Test rax_cdb with no args
rax_cdb:
ignore_errors: true
register: rax_cdb
- name: Validate results of rax_cdb with no args
assert:
that:
- rax_cdb is failed
- 'rax_cdb.msg == "missing required arguments: name"'
# ============================================================
# ============================================================
- name: Test rax_cdb with name
rax_cdb:
name: fail
ignore_errors: true
register: rax_cdb
- name: Validate results of rax_cdb with only creds
assert:
that:
- rax_cdb is failed
- rax_cdb.msg == 'No credentials supplied!'
# ============================================================
# ============================================================
- name: Test rax_cdb with name and credentials
rax_cdb:
username: "{{ rackspace_username }}"
api_key: "{{ rackspace_api_key }}"
name: fail
ignore_errors: true
register: rax_cdb
- name: Validate results of rax_cdb with only creds
assert:
that:
- rax_cdb is failed
- rax_cdb.msg.startswith('None is not a valid region')
# ============================================================
# ============================================================
- name: Test rax_cdb with creds and region
rax_cdb:
username: "{{ rackspace_username }}"
api_key: "{{ rackspace_api_key }}"
region: "{{ rackspace_region }}"
ignore_errors: true
register: rax_cdb
- name: Validate rax_cdb creds and region
assert:
that:
- rax_cdb is failed
- 'rax_cdb.msg == "missing required arguments: name"'
# ============================================================
# ============================================================
- name: Test rax_cdb with creds, region and name
rax_cdb:
username: "{{ rackspace_username }}"
api_key: "{{ rackspace_api_key }}"
region: "{{ rackspace_region }}"
name: "{{ resource_prefix }}-1"
wait: true
wait_timeout: "{{ rackspace_wait_timeout }}"
register: rax_cdb
- name: Validate rax_cdb with creds, region and name
assert:
that:
- rax_cdb is successful
- rax_cdb is changed
- rax_cdb.cdb.name == '{{ resource_prefix }}-1'
- rax_cdb.cdb.hostname
- rax_cdb.cdb.status == 'ACTIVE'
- name: "Delete integration 1"
rax_cdb:
username: "{{ rackspace_username }}"
api_key: "{{ rackspace_api_key }}"
region: "{{ rackspace_region }}"
name: "{{ resource_prefix }}-1"
state: absent
wait: true
wait_timeout: "{{ rackspace_wait_timeout }}"
register: rax_cdb
- name: "Validate delete integration 1"
assert:
that:
- rax_cdb is successful
- rax_cdb is changed
- rax_cdb.cdb.name == "{{ resource_prefix }}-1"
# ============================================================
# ============================================================
- name: Test rax_cdb idempotent test 1
rax_cdb:
username: "{{ rackspace_username }}"
api_key: "{{ rackspace_api_key }}"
region: "{{ rackspace_region }}"
name: "{{ resource_prefix }}-2"
wait: true
wait_timeout: "{{ rackspace_wait_timeout }}"
register: rax_cdb
- name: Validate rax_cdb idempotent test 1
assert:
that:
- rax_cdb is successful
- rax_cdb is changed
- rax_cdb.cdb.name == "{{ resource_prefix }}-2"
- rax_cdb.cdb.status == 'ACTIVE'
- name: Test rax_cdb idempotent test 2
rax_cdb:
username: "{{ rackspace_username }}"
api_key: "{{ rackspace_api_key }}"
region: "{{ rackspace_region }}"
name: "{{ resource_prefix }}-2"
wait: true
wait_timeout: "{{ rackspace_wait_timeout }}"
register: rax_cdb
- name: Validate rax_cdb idempotent test 2
assert:
that:
- rax_cdb is successful
- rax_cdb is not changed
- rax_cdb.cdb.name == "{{ resource_prefix }}-2"
- rax_cdb.cdb.status == 'ACTIVE'
- name: "Delete integration 2"
rax_cdb:
username: "{{ rackspace_username }}"
api_key: "{{ rackspace_api_key }}"
region: "{{ rackspace_region }}"
name: "{{ resource_prefix }}-2"
state: absent
wait: true
wait_timeout: "{{ rackspace_wait_timeout }}"
register: rax_cdb
- name: "Validate delete integration 2"
assert:
that:
- rax_cdb is changed
- rax_cdb.cdb.name == "{{ resource_prefix }}-2"
# ============================================================
# ============================================================
- name: Test rax_cdb resize volume 1
rax_cdb:
username: "{{ rackspace_username }}"
api_key: "{{ rackspace_api_key }}"
region: "{{ rackspace_region }}"
name: "{{ resource_prefix }}-3"
wait: true
wait_timeout: "{{ rackspace_wait_timeout }}"
register: rax_cdb
- name: Validate rax_cdb resize volume 1
assert:
that:
- rax_cdb is successful
- rax_cdb is changed
- rax_cdb.cdb.name == "{{ resource_prefix }}-3"
- rax_cdb.cdb.status == 'ACTIVE'
- name: Test rax_cdb resize volume 2
rax_cdb:
username: "{{ rackspace_username }}"
api_key: "{{ rackspace_api_key }}"
region: "{{ rackspace_region }}"
name: "{{ resource_prefix }}-3"
volume: 3
wait: true
wait_timeout: "{{ rackspace_wait_timeout }}"
register: rax_cdb
- name: Validate rax_cdb resize volume 2
assert:
that:
- rax_cdb is successful
- rax_cdb is changed
- rax_cdb.cdb.name == "{{ resource_prefix }}-3"
- rax_cdb.cdb.status == 'ACTIVE'
- name: "Delete integration 3"
rax_cdb:
username: "{{ rackspace_username }}"
api_key: "{{ rackspace_api_key }}"
region: "{{ rackspace_region }}"
name: "{{ resource_prefix }}-3"
state: absent
wait: true
wait_timeout: "{{ rackspace_wait_timeout }}"
register: rax_cdb
- name: "Validate delete integration 3"
assert:
that:
- rax_cdb is changed
- rax_cdb.cdb.name == "{{ resource_prefix }}-3"
# ============================================================
# ============================================================
- name: Test rax_cdb resize flavor 1
rax_cdb:
username: "{{ rackspace_username }}"
api_key: "{{ rackspace_api_key }}"
region: "{{ rackspace_region }}"
name: "{{ resource_prefix }}-4"
wait: true
wait_timeout: "{{ rackspace_wait_timeout }}"
register: rax_cdb
- name: Validate rax_cdb resize flavor 1
assert:
that:
- rax_cdb is successful
- rax_cdb is changed
- rax_cdb.cdb.name == "{{ resource_prefix }}-4"
- rax_cdb.cdb.status == 'ACTIVE'
- name: Test rax_cdb resize flavor 2
rax_cdb:
username: "{{ rackspace_username }}"
api_key: "{{ rackspace_api_key }}"
region: "{{ rackspace_region }}"
name: "{{ resource_prefix }}-4"
flavor: 2
wait: true
wait_timeout: "{{ rackspace_wait_timeout }}"
register: rax_cdb
- name: Validate rax_cdb resize flavor 2
assert:
that:
- rax_cdb is successful
- rax_cdb is changed
- rax_cdb.cdb.name == "{{ resource_prefix }}-4"
- rax_cdb.cdb.status == 'ACTIVE'
- name: "Delete integration 4"
rax_cdb:
username: "{{ rackspace_username }}"
api_key: "{{ rackspace_api_key }}"
region: "{{ rackspace_region }}"
name: "{{ resource_prefix }}-4"
state: absent
wait: true
wait_timeout: "{{ rackspace_wait_timeout }}"
register: rax_cdb
- name: "Validate delete integration 4"
assert:
that:
- rax_cdb is changed
- rax_cdb.cdb.name == "{{ resource_prefix }}-4"
# ============================================================