mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-24 22:00:22 -07:00
New Memset module to request DNS reloads (#40390)
This commit is contained in:
parent
08f670864a
commit
d95c572992
5 changed files with 221 additions and 4 deletions
1
test/integration/targets/memset_dns_reload/aliases
Normal file
1
test/integration/targets/memset_dns_reload/aliases
Normal file
|
@ -0,0 +1 @@
|
|||
unsupported
|
1
test/integration/targets/memset_dns_reload/meta/main.yml
Normal file
1
test/integration/targets/memset_dns_reload/meta/main.yml
Normal file
|
@ -0,0 +1 @@
|
|||
---
|
26
test/integration/targets/memset_dns_reload/tasks/main.yml
Normal file
26
test/integration/targets/memset_dns_reload/tasks/main.yml
Normal file
|
@ -0,0 +1,26 @@
|
|||
---
|
||||
- name: request reload with invalid API key
|
||||
local_action:
|
||||
module: memset_dns_reload
|
||||
api_key: "wa9aerahhie0eekee9iaphoorovooyia"
|
||||
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 reload and poll
|
||||
local_action:
|
||||
module: memset_dns_reload
|
||||
api_key: "{{ api_key }}"
|
||||
poll: true
|
||||
register: result
|
||||
|
||||
- name: check reload succeeded
|
||||
assert:
|
||||
that:
|
||||
- result is changed
|
||||
- result is successful
|
Loading…
Add table
Add a link
Reference in a new issue