action_plugin_test.py 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253
  1. import pytest
  2. from ansible.playbook.play_context import PlayContext
  3. from openshift_health_check import ActionModule, resolve_checks
  4. from openshift_checks import OpenShiftCheckException
  5. def fake_check(name='fake_check', tags=None, is_active=True, run_return=None, run_exception=None):
  6. """Returns a new class that is compatible with OpenShiftCheck for testing."""
  7. _name, _tags = name, tags
  8. class FakeCheck(object):
  9. name = _name
  10. tags = _tags or []
  11. def __init__(self, execute_module=None):
  12. pass
  13. @classmethod
  14. def is_active(cls, task_vars):
  15. return is_active
  16. def run(self, tmp, task_vars):
  17. if run_exception is not None:
  18. raise run_exception
  19. return run_return
  20. return FakeCheck
  21. # Fixtures
  22. @pytest.fixture
  23. def plugin():
  24. task = FakeTask('openshift_health_check', {'checks': ['fake_check']})
  25. plugin = ActionModule(task, None, PlayContext(), None, None, None)
  26. return plugin
  27. class FakeTask(object):
  28. def __init__(self, action, args):
  29. self.action = action
  30. self.args = args
  31. self.async = 0
  32. @pytest.fixture
  33. def task_vars():
  34. return dict(openshift=dict(), ansible_host='unit-test-host')
  35. # Assertion helpers
  36. def failed(result, msg_has=None):
  37. if msg_has is not None:
  38. assert 'msg' in result
  39. for term in msg_has:
  40. assert term.lower() in result['msg'].lower()
  41. return result.get('failed', False)
  42. def changed(result):
  43. return result.get('changed', False)
  44. # tests whether task is skipped, not individual checks
  45. def skipped(result):
  46. return result.get('skipped', False)
  47. # Tests
  48. @pytest.mark.parametrize('task_vars', [
  49. None,
  50. {},
  51. ])
  52. def test_action_plugin_missing_openshift_facts(plugin, task_vars):
  53. result = plugin.run(tmp=None, task_vars=task_vars)
  54. assert failed(result, msg_has=['openshift_facts'])
  55. def test_action_plugin_cannot_load_checks_with_the_same_name(plugin, task_vars, monkeypatch):
  56. FakeCheck1 = fake_check('duplicate_name')
  57. FakeCheck2 = fake_check('duplicate_name')
  58. checks = [FakeCheck1, FakeCheck2]
  59. monkeypatch.setattr('openshift_checks.OpenShiftCheck.subclasses', classmethod(lambda cls: checks))
  60. result = plugin.run(tmp=None, task_vars=task_vars)
  61. assert failed(result, msg_has=['unique', 'duplicate_name', 'FakeCheck'])
  62. def test_action_plugin_skip_non_active_checks(plugin, task_vars, monkeypatch):
  63. checks = [fake_check(is_active=False)]
  64. monkeypatch.setattr('openshift_checks.OpenShiftCheck.subclasses', classmethod(lambda cls: checks))
  65. result = plugin.run(tmp=None, task_vars=task_vars)
  66. assert result['checks']['fake_check'] == dict(skipped=True, skipped_reason="Not active for this host")
  67. assert not failed(result)
  68. assert not changed(result)
  69. assert not skipped(result)
  70. def test_action_plugin_skip_disabled_checks(plugin, task_vars, monkeypatch):
  71. checks = [fake_check('fake_check', is_active=True)]
  72. monkeypatch.setattr('openshift_checks.OpenShiftCheck.subclasses', classmethod(lambda cls: checks))
  73. task_vars['openshift_disable_check'] = 'fake_check'
  74. result = plugin.run(tmp=None, task_vars=task_vars)
  75. assert result['checks']['fake_check'] == dict(skipped=True, skipped_reason="Disabled by user request")
  76. assert not failed(result)
  77. assert not changed(result)
  78. assert not skipped(result)
  79. def test_action_plugin_run_check_ok(plugin, task_vars, monkeypatch):
  80. check_return_value = {'ok': 'test'}
  81. check_class = fake_check(run_return=check_return_value)
  82. monkeypatch.setattr(plugin, 'load_known_checks', lambda: {'fake_check': check_class()})
  83. monkeypatch.setattr('openshift_health_check.resolve_checks', lambda *args: ['fake_check'])
  84. result = plugin.run(tmp=None, task_vars=task_vars)
  85. assert result['checks']['fake_check'] == check_return_value
  86. assert not failed(result)
  87. assert not changed(result)
  88. assert not skipped(result)
  89. def test_action_plugin_run_check_changed(plugin, task_vars, monkeypatch):
  90. check_return_value = {'ok': 'test', 'changed': True}
  91. check_class = fake_check(run_return=check_return_value)
  92. monkeypatch.setattr(plugin, 'load_known_checks', lambda: {'fake_check': check_class()})
  93. monkeypatch.setattr('openshift_health_check.resolve_checks', lambda *args: ['fake_check'])
  94. result = plugin.run(tmp=None, task_vars=task_vars)
  95. assert result['checks']['fake_check'] == check_return_value
  96. assert not failed(result)
  97. assert changed(result)
  98. assert not skipped(result)
  99. def test_action_plugin_run_check_fail(plugin, task_vars, monkeypatch):
  100. check_return_value = {'failed': True}
  101. check_class = fake_check(run_return=check_return_value)
  102. monkeypatch.setattr(plugin, 'load_known_checks', lambda: {'fake_check': check_class()})
  103. monkeypatch.setattr('openshift_health_check.resolve_checks', lambda *args: ['fake_check'])
  104. result = plugin.run(tmp=None, task_vars=task_vars)
  105. assert result['checks']['fake_check'] == check_return_value
  106. assert failed(result, msg_has=['failed'])
  107. assert not changed(result)
  108. assert not skipped(result)
  109. def test_action_plugin_run_check_exception(plugin, task_vars, monkeypatch):
  110. exception_msg = 'fake check has an exception'
  111. run_exception = OpenShiftCheckException(exception_msg)
  112. check_class = fake_check(run_exception=run_exception)
  113. monkeypatch.setattr(plugin, 'load_known_checks', lambda: {'fake_check': check_class()})
  114. monkeypatch.setattr('openshift_health_check.resolve_checks', lambda *args: ['fake_check'])
  115. result = plugin.run(tmp=None, task_vars=task_vars)
  116. assert failed(result['checks']['fake_check'], msg_has=exception_msg)
  117. assert failed(result, msg_has=['failed'])
  118. assert not changed(result)
  119. assert not skipped(result)
  120. def test_action_plugin_resolve_checks_exception(plugin, task_vars, monkeypatch):
  121. monkeypatch.setattr(plugin, 'load_known_checks', lambda: {})
  122. result = plugin.run(tmp=None, task_vars=task_vars)
  123. assert failed(result, msg_has=['unknown', 'name'])
  124. assert not changed(result)
  125. assert not skipped(result)
  126. @pytest.mark.parametrize('names,all_checks,expected', [
  127. ([], [], set()),
  128. (
  129. ['a', 'b'],
  130. [
  131. fake_check('a'),
  132. fake_check('b'),
  133. ],
  134. set(['a', 'b']),
  135. ),
  136. (
  137. ['a', 'b', '@group'],
  138. [
  139. fake_check('from_group_1', ['group', 'another_group']),
  140. fake_check('not_in_group', ['another_group']),
  141. fake_check('from_group_2', ['preflight', 'group']),
  142. fake_check('a'),
  143. fake_check('b'),
  144. ],
  145. set(['a', 'b', 'from_group_1', 'from_group_2']),
  146. ),
  147. ])
  148. def test_resolve_checks_ok(names, all_checks, expected):
  149. assert resolve_checks(names, all_checks) == expected
  150. @pytest.mark.parametrize('names,all_checks,words_in_exception,words_not_in_exception', [
  151. (
  152. ['testA', 'testB'],
  153. [],
  154. ['check', 'name', 'testA', 'testB'],
  155. ['tag', 'group', '@'],
  156. ),
  157. (
  158. ['@group'],
  159. [],
  160. ['tag', 'name', 'group'],
  161. ['check', '@'],
  162. ),
  163. (
  164. ['testA', 'testB', '@group'],
  165. [],
  166. ['check', 'name', 'testA', 'testB', 'tag', 'group'],
  167. ['@'],
  168. ),
  169. (
  170. ['testA', 'testB', '@group'],
  171. [
  172. fake_check('from_group_1', ['group', 'another_group']),
  173. fake_check('not_in_group', ['another_group']),
  174. fake_check('from_group_2', ['preflight', 'group']),
  175. ],
  176. ['check', 'name', 'testA', 'testB'],
  177. ['tag', 'group', '@'],
  178. ),
  179. ])
  180. def test_resolve_checks_failure(names, all_checks, words_in_exception, words_not_in_exception):
  181. with pytest.raises(Exception) as excinfo:
  182. resolve_checks(names, all_checks)
  183. for word in words_in_exception:
  184. assert word in str(excinfo.value)
  185. for word in words_not_in_exception:
  186. assert word not in str(excinfo.value)