summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/handlers/test_flush_in_rescue_always.yml
diff options
context:
space:
mode:
Diffstat (limited to 'test/integration/targets/handlers/test_flush_in_rescue_always.yml')
-rw-r--r--test/integration/targets/handlers/test_flush_in_rescue_always.yml35
1 files changed, 35 insertions, 0 deletions
diff --git a/test/integration/targets/handlers/test_flush_in_rescue_always.yml b/test/integration/targets/handlers/test_flush_in_rescue_always.yml
new file mode 100644
index 0000000..7257a42
--- /dev/null
+++ b/test/integration/targets/handlers/test_flush_in_rescue_always.yml
@@ -0,0 +1,35 @@
+- hosts: A,B
+ gather_facts: false
+ tasks:
+ - block:
+ - name: EXPECTED_FAILURE
+ fail:
+ when: inventory_hostname == 'A'
+ rescue:
+ - command: echo
+ notify: handler_rescue
+
+ - meta: flush_handlers
+
+ - set_fact:
+ was_in_rescue: true
+
+ - name: EXPECTED_FAILURE
+ fail:
+ always:
+ - assert:
+ that:
+ - hostvars['A']['was_in_rescue']|default(false)
+ success_msg: lockstep works
+
+ - command: echo
+ notify: handler_always
+
+ - meta: flush_handlers
+ handlers:
+ - name: handler_rescue
+ debug:
+ msg: handler ran in rescue
+ - name: handler_always
+ debug:
+ msg: handler ran in always