2018-10-29 13:27:03 +01:00
|
|
|
---
|
|
|
|
- name: query API with invalid API key
|
2019-06-03 21:19:49 +02:00
|
|
|
memset_memstore_info:
|
2018-10-29 13:27:03 +01:00
|
|
|
api_key: 'wa9aerahhie0eekee9iaphoorovooyia'
|
|
|
|
name: 'mstestyaa1'
|
|
|
|
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
|
|
|
|
|
2019-06-03 21:19:49 +02:00
|
|
|
- name: request memstore infos
|
|
|
|
memset_memstore_info:
|
2018-10-29 13:27:03 +01:00
|
|
|
api_key: "{{ api_key }}"
|
|
|
|
name: 'mstestyaa1'
|
|
|
|
register: result
|
|
|
|
|
|
|
|
- name: check the request succeeded
|
|
|
|
assert:
|
|
|
|
that:
|
|
|
|
- result is not changed
|
|
|
|
- result is successful
|