mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 13:22:48 +00:00
New Memset module to request DNS reloads (#40390)
This commit is contained in:
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
|
||||
Reference in New Issue
Block a user