curator_test.py 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. import pytest
  2. from openshift_checks.logging.curator import Curator
  3. def canned_curator(exec_oc=None):
  4. """Create a Curator check object with canned exec_oc method"""
  5. check = Curator("dummy") # fails if a module is actually invoked
  6. if exec_oc:
  7. check._exec_oc = exec_oc
  8. return check
  9. def assert_error(error, expect_error):
  10. if expect_error:
  11. assert error
  12. assert expect_error in error
  13. else:
  14. assert not error
  15. plain_curator_pod = {
  16. "metadata": {
  17. "labels": {"component": "curator", "deploymentconfig": "logging-curator"},
  18. "name": "logging-curator-1",
  19. },
  20. "status": {
  21. "containerStatuses": [{"ready": True}],
  22. "conditions": [{"status": "True", "type": "Ready"}],
  23. "podIP": "10.10.10.10",
  24. }
  25. }
  26. not_running_curator_pod = {
  27. "metadata": {
  28. "labels": {"component": "curator", "deploymentconfig": "logging-curator"},
  29. "name": "logging-curator-2",
  30. },
  31. "status": {
  32. "containerStatuses": [{"ready": False}],
  33. "conditions": [{"status": "False", "type": "Ready"}],
  34. "podIP": "10.10.10.10",
  35. }
  36. }
  37. @pytest.mark.parametrize('pods, expect_error', [
  38. (
  39. [],
  40. "no Curator pods",
  41. ),
  42. (
  43. [plain_curator_pod],
  44. None,
  45. ),
  46. (
  47. [not_running_curator_pod],
  48. "not currently in a running state",
  49. ),
  50. (
  51. [plain_curator_pod, plain_curator_pod],
  52. "more than one Curator pod",
  53. ),
  54. ])
  55. def test_get_curator_pods(pods, expect_error):
  56. check = canned_curator()
  57. error = check.check_curator(pods)
  58. assert_error(error, expect_error)