Ensure handlers run when meta tasks are defined and add handler integration tests
Fixes #6678 Fixes #6670
This commit is contained in:
parent
3eecc039b9
commit
f9018a6f1d
7 changed files with 126 additions and 35 deletions
|
@ -611,8 +611,12 @@ class PlayBook(object):
|
||||||
|
|
||||||
for task in play.tasks():
|
for task in play.tasks():
|
||||||
|
|
||||||
# skip handlers until play is finished
|
|
||||||
if task.meta is not None:
|
if task.meta is not None:
|
||||||
|
# meta tasks can force handlers to run mid-play
|
||||||
|
if task.meta == 'flush_handlers':
|
||||||
|
self.run_handlers(play)
|
||||||
|
|
||||||
|
# skip calling the handler till the play is finished
|
||||||
continue
|
continue
|
||||||
|
|
||||||
# only run the task if the requested tags match
|
# only run the task if the requested tags match
|
||||||
|
@ -661,14 +665,20 @@ class PlayBook(object):
|
||||||
task_errors = True
|
task_errors = True
|
||||||
break
|
break
|
||||||
else:
|
else:
|
||||||
|
self.callbacks.on_no_hosts_remaining()
|
||||||
return False
|
return False
|
||||||
|
|
||||||
if task_errors and not self.force_handlers:
|
# lift restrictions after each play finishes
|
||||||
return False
|
|
||||||
else:
|
|
||||||
self.inventory.lift_also_restriction()
|
self.inventory.lift_also_restriction()
|
||||||
if not self.run_handlers(play):
|
|
||||||
|
if task_errors and not self.force_handlers:
|
||||||
|
# if there were failed tasks and handler execution
|
||||||
|
# is not forced, quit the play with an error
|
||||||
return False
|
return False
|
||||||
|
else:
|
||||||
|
# no errors, go ahead and execute all handlers
|
||||||
|
if not self.run_handlers(play):
|
||||||
|
return False
|
||||||
|
|
||||||
return True
|
return True
|
||||||
|
|
||||||
|
@ -679,38 +689,35 @@ class PlayBook(object):
|
||||||
for task in play.tasks():
|
for task in play.tasks():
|
||||||
if task.meta is not None:
|
if task.meta is not None:
|
||||||
|
|
||||||
# meta tasks are an internalism and are not valid for end-user playbook usage
|
fired_names = {}
|
||||||
# here a meta task is a placeholder that signals handlers should be run
|
for handler in play.handlers():
|
||||||
|
if len(handler.notified_by) > 0:
|
||||||
|
self.inventory.restrict_to(handler.notified_by)
|
||||||
|
|
||||||
if task.meta == 'flush_handlers':
|
# Resolve the variables first
|
||||||
fired_names = {}
|
handler_name = template(play.basedir, handler.name, handler.module_vars)
|
||||||
for handler in play.handlers():
|
if handler_name not in fired_names:
|
||||||
if len(handler.notified_by) > 0:
|
self._run_task(play, handler, True)
|
||||||
self.inventory.restrict_to(handler.notified_by)
|
# prevent duplicate handler includes from running more than once
|
||||||
|
fired_names[handler_name] = 1
|
||||||
|
|
||||||
# Resolve the variables first
|
host_list = self._trim_unavailable_hosts(play._play_hosts)
|
||||||
handler_name = template(play.basedir, handler.name, handler.module_vars)
|
if handler.any_errors_fatal and len(host_list) < hosts_count:
|
||||||
if handler_name not in fired_names:
|
play.max_fail_pct = 0
|
||||||
self._run_task(play, handler, True)
|
if (hosts_count - len(host_list)) > int((play.max_fail_pct)/100.0 * hosts_count):
|
||||||
# prevent duplicate handler includes from running more than once
|
host_list = None
|
||||||
fired_names[handler_name] = 1
|
if not host_list and not self.force_handlers:
|
||||||
|
self.callbacks.on_no_hosts_remaining()
|
||||||
|
return False
|
||||||
|
|
||||||
host_list = self._trim_unavailable_hosts(play._play_hosts)
|
self.inventory.lift_restriction()
|
||||||
if handler.any_errors_fatal and len(host_list) < hosts_count:
|
new_list = handler.notified_by[:]
|
||||||
play.max_fail_pct = 0
|
for host in handler.notified_by:
|
||||||
if (hosts_count - len(host_list)) > int((play.max_fail_pct)/100.0 * hosts_count):
|
if host in on_hosts:
|
||||||
host_list = None
|
while host in new_list:
|
||||||
if not host_list and not self.force_handlers:
|
new_list.remove(host)
|
||||||
self.callbacks.on_no_hosts_remaining()
|
handler.notified_by = new_list
|
||||||
return False
|
|
||||||
|
|
||||||
self.inventory.lift_restriction()
|
continue
|
||||||
new_list = handler.notified_by[:]
|
|
||||||
for host in handler.notified_by:
|
|
||||||
if host in on_hosts:
|
|
||||||
while host in new_list:
|
|
||||||
new_list.remove(host)
|
|
||||||
handler.notified_by = new_list
|
|
||||||
|
|
||||||
continue
|
|
||||||
return True
|
return True
|
||||||
|
|
|
@ -14,7 +14,7 @@ else
|
||||||
CREDENTIALS_ARG =
|
CREDENTIALS_ARG =
|
||||||
endif
|
endif
|
||||||
|
|
||||||
all: non_destructive destructive check_mode test_hash
|
all: non_destructive destructive check_mode test_hash test_handlers
|
||||||
|
|
||||||
non_destructive:
|
non_destructive:
|
||||||
ansible-playbook non_destructive.yml -i $(INVENTORY) -e @$(VARS_FILE) $(CREDENTIALS_ARG) -v $(TEST_FLAGS)
|
ansible-playbook non_destructive.yml -i $(INVENTORY) -e @$(VARS_FILE) $(CREDENTIALS_ARG) -v $(TEST_FLAGS)
|
||||||
|
@ -25,6 +25,9 @@ destructive:
|
||||||
check_mode:
|
check_mode:
|
||||||
ansible-playbook check_mode.yml -i $(INVENTORY) -e @$(VARS_FILE) $(CREDENTIALS_ARG) -v --check $(TEST_FLAGS)
|
ansible-playbook check_mode.yml -i $(INVENTORY) -e @$(VARS_FILE) $(CREDENTIALS_ARG) -v --check $(TEST_FLAGS)
|
||||||
|
|
||||||
|
test_handlers:
|
||||||
|
ansible-playbook test_handlers.yml -i inventory.handlers -e @$(VARS_FILE) $(CREDENTIALS_ARG) -v $(TEST_FLAGS)
|
||||||
|
|
||||||
test_hash:
|
test_hash:
|
||||||
ANSIBLE_HASH_BEHAVIOUR=replace ansible-playbook test_hash.yml -i $(INVENTORY) $(CREDENTIALS_ARG) -v -e '{"test_hash":{"extra_args":"this is an extra arg"}}'
|
ANSIBLE_HASH_BEHAVIOUR=replace ansible-playbook test_hash.yml -i $(INVENTORY) $(CREDENTIALS_ARG) -v -e '{"test_hash":{"extra_args":"this is an extra arg"}}'
|
||||||
ANSIBLE_HASH_BEHAVIOUR=merge ansible-playbook test_hash.yml -i $(INVENTORY) $(CREDENTIALS_ARG) -v -e '{"test_hash":{"extra_args":"this is an extra arg"}}'
|
ANSIBLE_HASH_BEHAVIOUR=merge ansible-playbook test_hash.yml -i $(INVENTORY) $(CREDENTIALS_ARG) -v -e '{"test_hash":{"extra_args":"this is an extra arg"}}'
|
||||||
|
|
6
test/integration/inventory.handlers
Normal file
6
test/integration/inventory.handlers
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
[testgroup]
|
||||||
|
A
|
||||||
|
B
|
||||||
|
C
|
||||||
|
D
|
||||||
|
E
|
|
@ -0,0 +1,7 @@
|
||||||
|
- name: set_handler_fact_1
|
||||||
|
set_fact:
|
||||||
|
handler1_called: True
|
||||||
|
|
||||||
|
- name: set_handler_fact_2
|
||||||
|
set_fact:
|
||||||
|
handler2_called: True
|
3
test/integration/roles/test_handlers_meta/meta/main.yml
Normal file
3
test/integration/roles/test_handlers_meta/meta/main.yml
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
dependencies:
|
||||||
|
- prepare_tests
|
||||||
|
|
41
test/integration/roles/test_handlers_meta/tasks/main.yml
Normal file
41
test/integration/roles/test_handlers_meta/tasks/main.yml
Normal file
|
@ -0,0 +1,41 @@
|
||||||
|
# test code for the async keyword
|
||||||
|
# (c) 2014, James Tanner <tanner.jc@gmail.com>
|
||||||
|
|
||||||
|
# This file is part of Ansible
|
||||||
|
#
|
||||||
|
# Ansible is free software: you can redistribute it and/or modify
|
||||||
|
# it under the terms of the GNU General Public License as published by
|
||||||
|
# the Free Software Foundation, either version 3 of the License, or
|
||||||
|
# (at your option) any later version.
|
||||||
|
#
|
||||||
|
# Ansible is distributed in the hope that it will be useful,
|
||||||
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
# GNU General Public License for more details.
|
||||||
|
#
|
||||||
|
# You should have received a copy of the GNU General Public License
|
||||||
|
# along with Ansible. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
- name: notify the first handler
|
||||||
|
shell: echo
|
||||||
|
notify:
|
||||||
|
- set_handler_fact_1
|
||||||
|
|
||||||
|
- name: force handler execution now
|
||||||
|
meta: "flush_handlers"
|
||||||
|
|
||||||
|
- name: assert handler1 ran and not handler2
|
||||||
|
assert:
|
||||||
|
that:
|
||||||
|
- "handler1_called is defined"
|
||||||
|
- "handler2_called is not defined"
|
||||||
|
|
||||||
|
- name: reset handler1_called
|
||||||
|
set_fact:
|
||||||
|
handler1_called: False
|
||||||
|
|
||||||
|
- name: notify the second handler
|
||||||
|
shell: echo
|
||||||
|
notify:
|
||||||
|
- set_handler_fact_2
|
||||||
|
|
24
test/integration/test_handlers.yml
Normal file
24
test/integration/test_handlers.yml
Normal file
|
@ -0,0 +1,24 @@
|
||||||
|
---
|
||||||
|
- name: run handlers
|
||||||
|
hosts: A
|
||||||
|
gather_facts: False
|
||||||
|
connection: local
|
||||||
|
roles:
|
||||||
|
- { role: test_handlers_meta }
|
||||||
|
|
||||||
|
- name: verify final handler was run
|
||||||
|
hosts: A
|
||||||
|
gather_facts: False
|
||||||
|
connection: local
|
||||||
|
tasks:
|
||||||
|
- name: verify handler2 ran
|
||||||
|
assert:
|
||||||
|
that:
|
||||||
|
- "not hostvars[inventory_hostname]['handler1_called']"
|
||||||
|
- "'handler2_called' in hostvars[inventory_hostname]"
|
||||||
|
|
||||||
|
#- hosts: testgroup
|
||||||
|
# gather_facts: False
|
||||||
|
# connection: local
|
||||||
|
# roles:
|
||||||
|
# - { role: test_handlers_meta }
|
Loading…
Reference in a new issue