openshift_check_test.py 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  1. import pytest
  2. from openshift_checks import OpenShiftCheck, OpenShiftCheckException
  3. from openshift_checks import load_checks
  4. # Fixtures
  5. @pytest.fixture()
  6. def task_vars():
  7. return dict(foo=42, bar=dict(baz="openshift"))
  8. @pytest.fixture(params=[
  9. ("notfound",),
  10. ("multiple", "keys", "not", "in", "task_vars"),
  11. ])
  12. def missing_keys(request):
  13. return request.param
  14. # Tests
  15. def test_OpenShiftCheck_init():
  16. class TestCheck(OpenShiftCheck):
  17. name = "test_check"
  18. run = NotImplemented
  19. # execute_module required at init if it will be used
  20. with pytest.raises(RuntimeError) as excinfo:
  21. TestCheck().execute_module("foo")
  22. assert 'execute_module' in str(excinfo.value)
  23. execute_module = object()
  24. # initialize with positional argument
  25. check = TestCheck(execute_module)
  26. assert check._execute_module == execute_module
  27. # initialize with keyword argument
  28. check = TestCheck(execute_module=execute_module)
  29. assert check._execute_module == execute_module
  30. assert check.task_vars == {}
  31. assert check.tmp is None
  32. def test_subclasses():
  33. """OpenShiftCheck.subclasses should find all subclasses recursively."""
  34. class TestCheck1(OpenShiftCheck):
  35. pass
  36. class TestCheck2(OpenShiftCheck):
  37. pass
  38. class TestCheck1A(TestCheck1):
  39. pass
  40. local_subclasses = set([TestCheck1, TestCheck1A, TestCheck2])
  41. known_subclasses = set(OpenShiftCheck.subclasses())
  42. assert local_subclasses - known_subclasses == set(), "local_subclasses should be a subset of known_subclasses"
  43. def test_load_checks():
  44. """Loading checks should load and return Python modules."""
  45. modules = load_checks()
  46. assert modules
  47. def dummy_check(task_vars):
  48. class TestCheck(OpenShiftCheck):
  49. name = "dummy"
  50. run = NotImplemented
  51. return TestCheck(task_vars=task_vars)
  52. @pytest.mark.parametrize("keys,expected", [
  53. (("foo",), 42),
  54. (("bar", "baz"), "openshift"),
  55. (("bar.baz",), "openshift"),
  56. ])
  57. def test_get_var_ok(task_vars, keys, expected):
  58. assert dummy_check(task_vars).get_var(*keys) == expected
  59. def test_get_var_error(task_vars, missing_keys):
  60. with pytest.raises(OpenShiftCheckException):
  61. dummy_check(task_vars).get_var(*missing_keys)
  62. def test_get_var_default(task_vars, missing_keys):
  63. default = object()
  64. assert dummy_check(task_vars).get_var(*missing_keys, default=default) == default
  65. @pytest.mark.parametrize("keys, convert, expected", [
  66. (("foo",), str, "42"),
  67. (("foo",), float, 42.0),
  68. (("bar", "baz"), bool, False),
  69. ])
  70. def test_get_var_convert(task_vars, keys, convert, expected):
  71. assert dummy_check(task_vars).get_var(*keys, convert=convert) == expected
  72. def convert_oscexc(_):
  73. raise OpenShiftCheckException("known failure")
  74. def convert_exc(_):
  75. raise Exception("failure unknown")
  76. @pytest.mark.parametrize("keys, convert, expect_text", [
  77. (("bar", "baz"), int, "Cannot convert"),
  78. (("bar.baz",), float, "Cannot convert"),
  79. (("foo",), "bogus", "TypeError"),
  80. (("foo",), lambda a, b: 1, "TypeError"),
  81. (("foo",), lambda a: 1 / 0, "ZeroDivisionError"),
  82. (("foo",), convert_oscexc, "known failure"),
  83. (("foo",), convert_exc, "failure unknown"),
  84. ])
  85. def test_get_var_convert_error(task_vars, keys, convert, expect_text):
  86. with pytest.raises(OpenShiftCheckException) as excinfo:
  87. dummy_check(task_vars).get_var(*keys, convert=convert)
  88. assert expect_text in str(excinfo.value)
  89. def test_register(task_vars):
  90. check = dummy_check(task_vars)
  91. check.register_failure(OpenShiftCheckException("spam"))
  92. assert "spam" in str(check.failures[0])
  93. with pytest.raises(OpenShiftCheckException) as excinfo:
  94. check.register_file("spam") # no file contents specified
  95. assert "not specified" in str(excinfo.value)
  96. # normally execute_module registers the result file; test disabling that
  97. check._execute_module = lambda *args, **_: dict()
  98. check.execute_module("eggs", module_args={}, register=False)
  99. assert not check.files_to_save