fluentd_test.py 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. import pytest
  2. import json
  3. from openshift_checks.logging.fluentd import Fluentd, OpenShiftCheckExceptionList, OpenShiftCheckException
  4. def assert_error_in_list(expect_err, errorlist):
  5. assert any(err.name == expect_err for err in errorlist), "{} in {}".format(str(expect_err), str(errorlist))
  6. fluentd_pod_node1 = {
  7. "metadata": {
  8. "labels": {"component": "fluentd", "deploymentconfig": "logging-fluentd"},
  9. "name": "logging-fluentd-1",
  10. },
  11. "spec": {"host": "node1", "nodeName": "node1"},
  12. "status": {
  13. "containerStatuses": [{"ready": True}],
  14. "conditions": [{"status": "True", "type": "Ready"}],
  15. }
  16. }
  17. fluentd_pod_node2_down = {
  18. "metadata": {
  19. "labels": {"component": "fluentd", "deploymentconfig": "logging-fluentd"},
  20. "name": "logging-fluentd-2",
  21. },
  22. "spec": {"host": "node2", "nodeName": "node2"},
  23. "status": {
  24. "containerStatuses": [{"ready": False}],
  25. "conditions": [{"status": "False", "type": "Ready"}],
  26. }
  27. }
  28. fluentd_node1 = {
  29. "metadata": {
  30. "labels": {"logging-infra-fluentd": "true", "kubernetes.io/hostname": "node1"},
  31. "name": "node1",
  32. },
  33. "status": {"addresses": [{"type": "InternalIP", "address": "10.10.1.1"}]},
  34. }
  35. fluentd_node2 = {
  36. "metadata": {
  37. "labels": {"logging-infra-fluentd": "true", "kubernetes.io/hostname": "hostname"},
  38. "name": "node2",
  39. },
  40. "status": {"addresses": [{"type": "InternalIP", "address": "10.10.1.2"}]},
  41. }
  42. fluentd_node3_unlabeled = {
  43. "metadata": {
  44. "labels": {"kubernetes.io/hostname": "hostname"},
  45. "name": "node3",
  46. },
  47. "status": {"addresses": [{"type": "InternalIP", "address": "10.10.1.3"}]},
  48. }
  49. def test_get_fluentd_pods():
  50. check = Fluentd()
  51. check.exec_oc = lambda *_: json.dumps(dict(items=[fluentd_node1]))
  52. check.get_pods_for_component = lambda *_: [fluentd_pod_node1]
  53. assert not check.run()
  54. @pytest.mark.parametrize('pods, nodes, expect_error', [
  55. (
  56. [],
  57. [],
  58. 'NoNodesDefined',
  59. ),
  60. (
  61. [],
  62. [fluentd_node3_unlabeled],
  63. 'NoNodesLabeled',
  64. ),
  65. (
  66. [],
  67. [fluentd_node1, fluentd_node3_unlabeled],
  68. 'NodesUnlabeled',
  69. ),
  70. (
  71. [],
  72. [fluentd_node2],
  73. 'MissingFluentdPod',
  74. ),
  75. (
  76. [fluentd_pod_node1, fluentd_pod_node1],
  77. [fluentd_node1],
  78. 'TooManyFluentdPods',
  79. ),
  80. (
  81. [fluentd_pod_node2_down],
  82. [fluentd_node2],
  83. 'FluentdNotRunning',
  84. ),
  85. ])
  86. def test_get_fluentd_pods_errors(pods, nodes, expect_error):
  87. check = Fluentd()
  88. check.exec_oc = lambda *_: json.dumps(dict(items=nodes))
  89. with pytest.raises(OpenShiftCheckException) as excinfo:
  90. check.check_fluentd(pods)
  91. if isinstance(excinfo.value, OpenShiftCheckExceptionList):
  92. assert_error_in_list(expect_error, excinfo.value)
  93. else:
  94. assert expect_error == excinfo.value.name
  95. def test_bad_oc_node_list():
  96. check = Fluentd()
  97. check.exec_oc = lambda *_: "this isn't even json"
  98. with pytest.raises(OpenShiftCheckException) as excinfo:
  99. check.get_nodes_by_name()
  100. assert 'BadOcNodeList' == excinfo.value.name