kibana_test.py 6.2 KB

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