kibana_test.py 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244
  1. import pytest
  2. import json
  3. try:
  4. import urllib2
  5. from urllib2 import HTTPError, URLError
  6. except ImportError:
  7. from urllib.error import HTTPError, URLError
  8. import urllib.request as urllib2
  9. from openshift_checks.logging.kibana import Kibana, OpenShiftCheckException
  10. plain_kibana_pod = {
  11. "metadata": {
  12. "labels": {"component": "kibana", "deploymentconfig": "logging-kibana"},
  13. "name": "logging-kibana-1",
  14. },
  15. "status": {
  16. "containerStatuses": [{"ready": True}, {"ready": True}],
  17. "conditions": [{"status": "True", "type": "Ready"}],
  18. }
  19. }
  20. not_running_kibana_pod = {
  21. "metadata": {
  22. "labels": {"component": "kibana", "deploymentconfig": "logging-kibana"},
  23. "name": "logging-kibana-2",
  24. },
  25. "status": {
  26. "containerStatuses": [{"ready": True}, {"ready": False}],
  27. "conditions": [{"status": "True", "type": "Ready"}],
  28. }
  29. }
  30. def test_check_kibana():
  31. # should run without exception:
  32. Kibana().check_kibana([plain_kibana_pod])
  33. @pytest.mark.parametrize('pods, expect_error', [
  34. (
  35. [],
  36. "MissingComponentPods",
  37. ),
  38. (
  39. [not_running_kibana_pod],
  40. "NoRunningPods",
  41. ),
  42. (
  43. [plain_kibana_pod, not_running_kibana_pod],
  44. "PodNotRunning",
  45. ),
  46. ])
  47. def test_check_kibana_error(pods, expect_error):
  48. with pytest.raises(OpenShiftCheckException) as excinfo:
  49. Kibana().check_kibana(pods)
  50. assert expect_error == excinfo.value.name
  51. @pytest.mark.parametrize('comment, route, expect_error', [
  52. (
  53. "No route returned",
  54. None,
  55. "no_route_exists",
  56. ),
  57. (
  58. "broken route response",
  59. {"status": {}},
  60. "get_route_failed",
  61. ),
  62. (
  63. "route with no ingress",
  64. {
  65. "metadata": {
  66. "labels": {"component": "kibana", "deploymentconfig": "logging-kibana"},
  67. "name": "logging-kibana",
  68. },
  69. "status": {
  70. "ingress": [],
  71. },
  72. "spec": {
  73. "host": "hostname",
  74. }
  75. },
  76. "route_not_accepted",
  77. ),
  78. (
  79. "route with no host",
  80. {
  81. "metadata": {
  82. "labels": {"component": "kibana", "deploymentconfig": "logging-kibana"},
  83. "name": "logging-kibana",
  84. },
  85. "status": {
  86. "ingress": [{
  87. "status": True,
  88. }],
  89. },
  90. "spec": {},
  91. },
  92. "route_missing_host",
  93. ),
  94. ])
  95. def test_get_kibana_url_error(comment, route, expect_error):
  96. check = Kibana()
  97. check.exec_oc = lambda *_: json.dumps(route) if route else ""
  98. with pytest.raises(OpenShiftCheckException) as excinfo:
  99. check._get_kibana_url()
  100. assert excinfo.value.name == expect_error
  101. @pytest.mark.parametrize('comment, route, expect_url', [
  102. (
  103. "test route that looks fine",
  104. {
  105. "metadata": {
  106. "labels": {"component": "kibana", "deploymentconfig": "logging-kibana"},
  107. "name": "logging-kibana",
  108. },
  109. "status": {
  110. "ingress": [{
  111. "status": True,
  112. }],
  113. },
  114. "spec": {
  115. "host": "hostname",
  116. },
  117. },
  118. "https://hostname/",
  119. ),
  120. ])
  121. def test_get_kibana_url(comment, route, expect_url):
  122. check = Kibana()
  123. check.exec_oc = lambda *_: json.dumps(route)
  124. assert expect_url == check._get_kibana_url()
  125. @pytest.mark.parametrize('exec_result, expect', [
  126. (
  127. 'urlopen error [Errno 111] Connection refused',
  128. 'FailedToConnectInternal',
  129. ),
  130. (
  131. 'urlopen error [Errno -2] Name or service not known',
  132. 'FailedToResolveInternal',
  133. ),
  134. (
  135. 'Status code was not [302]: HTTP Error 500: Server error',
  136. 'WrongReturnCodeInternal',
  137. ),
  138. (
  139. 'bork bork bork',
  140. 'MiscRouteErrorInternal',
  141. ),
  142. ])
  143. def test_verify_url_internal_failure(exec_result, expect):
  144. check = Kibana(execute_module=lambda *_: dict(failed=True, msg=exec_result))
  145. check._get_kibana_url = lambda: 'url'
  146. with pytest.raises(OpenShiftCheckException) as excinfo:
  147. check.check_kibana_route()
  148. assert expect == excinfo.value.name
  149. @pytest.mark.parametrize('lib_result, expect', [
  150. (
  151. HTTPError('url', 500, 'it broke', hdrs=None, fp=None),
  152. 'MiscRouteError',
  153. ),
  154. (
  155. URLError('urlopen error [Errno 111] Connection refused'),
  156. 'FailedToConnect',
  157. ),
  158. (
  159. URLError('urlopen error [Errno -2] Name or service not known'),
  160. 'FailedToResolve',
  161. ),
  162. (
  163. 302,
  164. 'WrongReturnCode',
  165. ),
  166. (
  167. 200,
  168. None,
  169. ),
  170. ])
  171. def test_verify_url_external_failure(lib_result, expect, monkeypatch):
  172. class _http_return:
  173. def __init__(self, code):
  174. self.code = code
  175. def getcode(self):
  176. return self.code
  177. def urlopen(url, context):
  178. if type(lib_result) is int:
  179. return _http_return(lib_result)
  180. raise lib_result
  181. monkeypatch.setattr(urllib2, 'urlopen', urlopen)
  182. check = Kibana()
  183. check._get_kibana_url = lambda: 'url'
  184. check._verify_url_internal = lambda url: None
  185. if not expect:
  186. check.check_kibana_route()
  187. return
  188. with pytest.raises(OpenShiftCheckException) as excinfo:
  189. check.check_kibana_route()
  190. assert expect == excinfo.value.name
  191. def test_verify_url_external_skip():
  192. check = Kibana(lambda *_: {}, dict(openshift_check_efk_kibana_external="false"))
  193. check._get_kibana_url = lambda: 'url'
  194. check.check_kibana_route()
  195. # this is kind of silly but it adds coverage for the run() method...
  196. def test_run():
  197. pods = ["foo"]
  198. ran = dict(check_kibana=False, check_route=False)
  199. def check_kibana(pod_list):
  200. ran["check_kibana"] = True
  201. assert pod_list == pods
  202. def check_kibana_route():
  203. ran["check_route"] = True
  204. check = Kibana()
  205. check.get_pods_for_component = lambda *_: pods
  206. check.check_kibana = check_kibana
  207. check.check_kibana_route = check_kibana_route
  208. check.run()
  209. assert ran["check_kibana"] and ran["check_route"]