Commit b8e72116 by Matt Martz

Update rax_clb tests for fixes in the module

parent 7ba7e3bd
...@@ -17,16 +17,33 @@ ...@@ -17,16 +17,33 @@
assert: assert:
that: that:
- rax_clb|failed - rax_clb|failed
- rax_clb.msg == 'missing required arguments: name'
# ============================================================
# ============================================================
- name: Test rax_clb with name
rax_clb:
name: fail
ignore_errors: true
register: rax_clb
- name: Validate results of rax_clb with only creds
assert:
that:
- rax_clb|failed
- rax_clb.msg == 'No credentials supplied!' - rax_clb.msg == 'No credentials supplied!'
# ============================================================ # ============================================================
# ============================================================ # ============================================================
- name: Test rax_clb with credentials - name: Test rax_clb with name and credentials
rax_clb: rax_clb:
username: "{{ rackspace_username }}" username: "{{ rackspace_username }}"
api_key: "{{ rackspace_api_key }}" api_key: "{{ rackspace_api_key }}"
name: fail
ignore_errors: true ignore_errors: true
register: rax_clb register: rax_clb
...@@ -48,13 +65,11 @@ ...@@ -48,13 +65,11 @@
ignore_errors: true ignore_errors: true
register: rax_clb register: rax_clb
## This assertion is currently failing, due to the module not providing the correct name of the missing argument
- name: Validate rax_clb creds and region - name: Validate rax_clb creds and region
assert: assert:
that: that:
- rax_clb|failed - rax_clb|failed
- rax_clb.msg == 'name is required for rax_clb' - rax_clb.msg == 'missing required arguments: name'
ignore_errors: true
# ============================================================ # ============================================================
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment