zz_failure_summary.py 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. '''
  2. Ansible callback plugin.
  3. '''
  4. from pprint import pformat
  5. from ansible.plugins.callback import CallbackBase
  6. from ansible import constants as C
  7. from ansible.utils.color import stringc
  8. class CallbackModule(CallbackBase):
  9. '''
  10. This callback plugin stores task results and summarizes failures.
  11. The file name is prefixed with `zz_` to make this plugin be loaded last by
  12. Ansible, thus making its output the last thing that users see.
  13. '''
  14. CALLBACK_VERSION = 2.0
  15. CALLBACK_TYPE = 'aggregate'
  16. CALLBACK_NAME = 'failure_summary'
  17. CALLBACK_NEEDS_WHITELIST = False
  18. def __init__(self):
  19. super(CallbackModule, self).__init__()
  20. self.__failures = []
  21. def v2_runner_on_failed(self, result, ignore_errors=False):
  22. super(CallbackModule, self).v2_runner_on_failed(result, ignore_errors)
  23. self.__failures.append(dict(result=result, ignore_errors=ignore_errors))
  24. def v2_playbook_on_stats(self, stats):
  25. super(CallbackModule, self).v2_playbook_on_stats(stats)
  26. # TODO: update condition to consider a host var or env var to
  27. # enable/disable the summary, so that we can control the output from a
  28. # play.
  29. if self.__failures:
  30. self._print_failure_summary()
  31. def _print_failure_summary(self):
  32. '''Print a summary of failed tasks (including ignored failures).'''
  33. self._display.display(u'\nFailure summary:\n')
  34. # TODO: group failures by host or by task. If grouped by host, it is
  35. # easy to see all problems of a given host. If grouped by task, it is
  36. # easy to see what hosts needs the same fix.
  37. width = len(str(len(self.__failures)))
  38. initial_indent_format = u' {{:>{width}}}. '.format(width=width)
  39. initial_indent_len = len(initial_indent_format.format(0))
  40. subsequent_indent = u' ' * initial_indent_len
  41. subsequent_extra_indent = u' ' * (initial_indent_len + 10)
  42. for i, failure in enumerate(self.__failures, 1):
  43. entries = _format_failure(failure)
  44. self._display.display(u'\n{}{}'.format(initial_indent_format.format(i), entries[0]))
  45. for entry in entries[1:]:
  46. entry = entry.replace(u'\n', u'\n' + subsequent_extra_indent)
  47. indented = u'{}{}'.format(subsequent_indent, entry)
  48. self._display.display(indented)
  49. # Reason: disable pylint protected-access because we need to access _*
  50. # attributes of a task result to implement this method.
  51. # Status: permanently disabled unless Ansible's API changes.
  52. # pylint: disable=protected-access
  53. def _format_failure(failure):
  54. '''Return a list of pretty-formatted text entries describing a failure, including
  55. relevant information about it. Expect that the list of text entries will be joined
  56. by a newline separator when output to the user.'''
  57. result = failure['result']
  58. host = result._host.get_name()
  59. play = _get_play(result._task)
  60. if play:
  61. play = play.get_name()
  62. task = result._task.get_name()
  63. msg = result._result.get('msg', u'???')
  64. fields = (
  65. (u'Host', host),
  66. (u'Play', play),
  67. (u'Task', task),
  68. (u'Message', stringc(msg, C.COLOR_ERROR)),
  69. )
  70. if 'checks' in result._result:
  71. fields += ((u'Details', _format_failed_checks(result._result['checks'])),)
  72. row_format = '{:10}{}'
  73. return [row_format.format(header + u':', body) for header, body in fields]
  74. def _format_failed_checks(checks):
  75. '''Return pretty-formatted text describing checks that failed.'''
  76. failed_check_msgs = []
  77. for check, body in checks.items():
  78. if body.get('failed', False): # only show the failed checks
  79. msg = body.get('msg', u"Failed without returning a message")
  80. failed_check_msgs.append('check "%s":\n%s' % (check, msg))
  81. if failed_check_msgs:
  82. return stringc("\n\n".join(failed_check_msgs), C.COLOR_ERROR)
  83. else: # something failed but no checks will admit to it, so dump everything
  84. return stringc(pformat(checks), C.COLOR_ERROR)
  85. # Reason: disable pylint protected-access because we need to access _*
  86. # attributes of obj to implement this function.
  87. # This is inspired by ansible.playbook.base.Base.dump_me.
  88. # Status: permanently disabled unless Ansible's API changes.
  89. # pylint: disable=protected-access
  90. def _get_play(obj):
  91. '''Given a task or block, recursively tries to find its parent play.'''
  92. if hasattr(obj, '_play'):
  93. return obj._play
  94. if getattr(obj, '_parent'):
  95. return _get_play(obj._parent)