|
@@ -1,6 +1,6 @@
|
|
|
import pytest
|
|
|
|
|
|
-from openshift_checks import get_var, OpenShiftCheckException
|
|
|
+from openshift_checks import OpenShiftCheck, get_var, OpenShiftCheckException
|
|
|
|
|
|
|
|
|
# Fixtures
|
|
@@ -22,6 +22,41 @@ def missing_keys(request):
|
|
|
# Tests
|
|
|
|
|
|
|
|
|
+def test_OpenShiftCheck_init():
|
|
|
+ class TestCheck(OpenShiftCheck):
|
|
|
+ name = "test_check"
|
|
|
+ run = NotImplemented
|
|
|
+
|
|
|
+ # initialization requires at least one argument (apart from self)
|
|
|
+ with pytest.raises(TypeError) as excinfo:
|
|
|
+ TestCheck()
|
|
|
+ assert 'execute_module' in str(excinfo.value)
|
|
|
+ assert 'module_executor' in str(excinfo.value)
|
|
|
+
|
|
|
+ execute_module = object()
|
|
|
+
|
|
|
+ # initialize with positional argument
|
|
|
+ check = TestCheck(execute_module)
|
|
|
+ # new recommended name
|
|
|
+ assert check.execute_module == execute_module
|
|
|
+ # deprecated attribute name
|
|
|
+ assert check.module_executor == execute_module
|
|
|
+
|
|
|
+ # initialize with keyword argument, recommended name
|
|
|
+ check = TestCheck(execute_module=execute_module)
|
|
|
+ # new recommended name
|
|
|
+ assert check.execute_module == execute_module
|
|
|
+ # deprecated attribute name
|
|
|
+ assert check.module_executor == execute_module
|
|
|
+
|
|
|
+ # initialize with keyword argument, deprecated name
|
|
|
+ check = TestCheck(module_executor=execute_module)
|
|
|
+ # new recommended name
|
|
|
+ assert check.execute_module == execute_module
|
|
|
+ # deprecated attribute name
|
|
|
+ assert check.module_executor == execute_module
|
|
|
+
|
|
|
+
|
|
|
@pytest.mark.parametrize("keys,expected", [
|
|
|
(("foo",), 42),
|
|
|
(("bar", "baz"), "openshift"),
|