curator_test.py 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. import pytest
  2. from openshift_checks.logging.curator import Curator, OpenShiftCheckException
  3. plain_curator_pod = {
  4. "metadata": {
  5. "labels": {"component": "curator", "deploymentconfig": "logging-curator"},
  6. "name": "logging-curator-1",
  7. },
  8. "status": {
  9. "containerStatuses": [{"ready": True}],
  10. "conditions": [{"status": "True", "type": "Ready"}],
  11. "podIP": "10.10.10.10",
  12. }
  13. }
  14. not_running_curator_pod = {
  15. "metadata": {
  16. "labels": {"component": "curator", "deploymentconfig": "logging-curator"},
  17. "name": "logging-curator-2",
  18. },
  19. "status": {
  20. "containerStatuses": [{"ready": False}],
  21. "conditions": [{"status": "False", "type": "Ready"}],
  22. "podIP": "10.10.10.10",
  23. }
  24. }
  25. def test_get_curator_pods():
  26. check = Curator()
  27. check.get_pods_for_component = lambda *_: [plain_curator_pod]
  28. result = check.run()
  29. assert "failed" not in result or not result["failed"]
  30. @pytest.mark.parametrize('pods, expect_error', [
  31. (
  32. [],
  33. 'MissingComponentPods',
  34. ),
  35. (
  36. [not_running_curator_pod],
  37. 'CuratorNotRunning',
  38. ),
  39. (
  40. [plain_curator_pod, plain_curator_pod],
  41. 'TooManyCurators',
  42. ),
  43. ])
  44. def test_get_curator_pods_fail(pods, expect_error):
  45. check = Curator()
  46. check.get_pods_for_component = lambda *_: pods
  47. with pytest.raises(OpenShiftCheckException) as excinfo:
  48. check.run()
  49. assert excinfo.value.name == expect_error