diagnostics_test.py 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. import pytest
  2. from openshift_checks.diagnostics import DiagnosticCheck, OpenShiftCheckException
  3. @pytest.fixture()
  4. def task_vars():
  5. return dict(
  6. openshift=dict(
  7. common=dict(config_base="/etc/origin/")
  8. )
  9. )
  10. def test_module_succeeds(task_vars):
  11. check = DiagnosticCheck(lambda *_: {"result": "success"}, task_vars)
  12. check.is_first_master = lambda: True
  13. assert check.is_active()
  14. check.exec_diagnostic("spam")
  15. assert not check.failures
  16. def test_oc_not_there(task_vars):
  17. def exec_module(*_):
  18. return {"failed": True, "result": "[Errno 2] No such file or directory"}
  19. check = DiagnosticCheck(exec_module, task_vars)
  20. with pytest.raises(OpenShiftCheckException) as excinfo:
  21. check.exec_diagnostic("spam")
  22. assert excinfo.value.name == "OcNotFound"
  23. def test_module_fails(task_vars):
  24. def exec_module(*_):
  25. return {"failed": True, "result": "something broke"}
  26. check = DiagnosticCheck(exec_module, task_vars)
  27. check.exec_diagnostic("spam")
  28. assert check.failures and check.failures[0].name == "OcDiagFailed"
  29. def test_names_executed(task_vars):
  30. task_vars["openshift_check_diagnostics"] = diagnostics = "ConfigContexts,spam,,eggs"
  31. def exec_module(module, args, *_):
  32. assert "extra_args" in args
  33. assert args["extra_args"][0] in diagnostics
  34. return {"result": "success"}
  35. DiagnosticCheck(exec_module, task_vars).run()