mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-08 14:20:04 -07:00
Initial commit
This commit is contained in:
commit
aebc1b03fd
4861 changed files with 812621 additions and 0 deletions
1
tests/integration/targets/memset_server_info/aliases
Normal file
1
tests/integration/targets/memset_server_info/aliases
Normal file
|
@ -0,0 +1 @@
|
|||
unsupported
|
|
@ -0,0 +1 @@
|
|||
---
|
25
tests/integration/targets/memset_server_info/tasks/main.yml
Normal file
25
tests/integration/targets/memset_server_info/tasks/main.yml
Normal file
|
@ -0,0 +1,25 @@
|
|||
---
|
||||
- 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
|
Loading…
Add table
Add a link
Reference in a new issue