ansible/test/integration/targets/memset_server_info/tasks/main.yml
Felix Fontein 7b40b569b2
Rename memset_*_facts to memset_*_info (#57030)
* Rename memset_*_facts to memset_*_info

* Add changelog.
2019-06-03 21:19:49 +02:00

25 lines
608 B
YAML

---
- name: query API with invalid API key
memset_server_info:
api_key: 'wa9aerahhie0eekee9iaphoorovooyia'
name: 'testyaa1'
ignore_errors: true
register: result
- name: check API response with invalid API key
assert:
that:
- "'Memset API returned a 403 response (ApiErrorForbidden, Bad api_key)' in result.msg"
- result is not successful
- name: request server infos
memset_server_info:
api_key: "{{ api_key }}"
name: 'testyaa1'
register: result
- name: check the request succeeded
assert:
that:
- result is not changed
- result is successful