kibana_test.py 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218
  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
  10. def canned_kibana(exec_oc=None):
  11. """Create a Kibana check object with canned exec_oc method"""
  12. check = Kibana("dummy") # fails if a module is actually invoked
  13. if exec_oc:
  14. check._exec_oc = exec_oc
  15. return check
  16. def assert_error(error, expect_error):
  17. if expect_error:
  18. assert error
  19. assert expect_error in error
  20. else:
  21. assert not error
  22. plain_kibana_pod = {
  23. "metadata": {
  24. "labels": {"component": "kibana", "deploymentconfig": "logging-kibana"},
  25. "name": "logging-kibana-1",
  26. },
  27. "status": {
  28. "containerStatuses": [{"ready": True}, {"ready": True}],
  29. "conditions": [{"status": "True", "type": "Ready"}],
  30. }
  31. }
  32. not_running_kibana_pod = {
  33. "metadata": {
  34. "labels": {"component": "kibana", "deploymentconfig": "logging-kibana"},
  35. "name": "logging-kibana-2",
  36. },
  37. "status": {
  38. "containerStatuses": [{"ready": True}, {"ready": False}],
  39. "conditions": [{"status": "True", "type": "Ready"}],
  40. }
  41. }
  42. @pytest.mark.parametrize('pods, expect_error', [
  43. (
  44. [],
  45. "There are no Kibana pods deployed",
  46. ),
  47. (
  48. [plain_kibana_pod],
  49. None,
  50. ),
  51. (
  52. [not_running_kibana_pod],
  53. "No Kibana pod is in a running state",
  54. ),
  55. (
  56. [plain_kibana_pod, not_running_kibana_pod],
  57. "The following Kibana pods are not currently in a running state",
  58. ),
  59. ])
  60. def test_check_kibana(pods, expect_error):
  61. check = canned_kibana()
  62. error = check.check_kibana(pods)
  63. assert_error(error, expect_error)
  64. @pytest.mark.parametrize('route, expect_url, expect_error', [
  65. (
  66. None,
  67. None,
  68. 'no_route_exists',
  69. ),
  70. # test route with no ingress
  71. (
  72. {
  73. "metadata": {
  74. "labels": {"component": "kibana", "deploymentconfig": "logging-kibana"},
  75. "name": "logging-kibana",
  76. },
  77. "status": {
  78. "ingress": [],
  79. },
  80. "spec": {
  81. "host": "hostname",
  82. }
  83. },
  84. None,
  85. 'route_not_accepted',
  86. ),
  87. # test route with no host
  88. (
  89. {
  90. "metadata": {
  91. "labels": {"component": "kibana", "deploymentconfig": "logging-kibana"},
  92. "name": "logging-kibana",
  93. },
  94. "status": {
  95. "ingress": [{
  96. "status": True,
  97. }],
  98. },
  99. "spec": {},
  100. },
  101. None,
  102. 'route_missing_host',
  103. ),
  104. # test route that looks fine
  105. (
  106. {
  107. "metadata": {
  108. "labels": {"component": "kibana", "deploymentconfig": "logging-kibana"},
  109. "name": "logging-kibana",
  110. },
  111. "status": {
  112. "ingress": [{
  113. "status": True,
  114. }],
  115. },
  116. "spec": {
  117. "host": "hostname",
  118. },
  119. },
  120. "https://hostname/",
  121. None,
  122. ),
  123. ])
  124. def test_get_kibana_url(route, expect_url, expect_error):
  125. check = canned_kibana(lambda cmd, args, task_vars: json.dumps(route) if route else "")
  126. url, error = check._get_kibana_url({})
  127. if expect_url:
  128. assert url == expect_url
  129. else:
  130. assert not url
  131. if expect_error:
  132. assert error == expect_error
  133. else:
  134. assert not error
  135. @pytest.mark.parametrize('exec_result, expect', [
  136. (
  137. 'urlopen error [Errno 111] Connection refused',
  138. 'at least one router routing to it?',
  139. ),
  140. (
  141. 'urlopen error [Errno -2] Name or service not known',
  142. 'DNS configured for the Kibana hostname?',
  143. ),
  144. (
  145. 'Status code was not [302]: HTTP Error 500: Server error',
  146. 'did not return the correct status code',
  147. ),
  148. (
  149. 'bork bork bork',
  150. 'bork bork bork', # should pass through
  151. ),
  152. ])
  153. def test_verify_url_internal_failure(exec_result, expect):
  154. check = Kibana(execute_module=lambda module_name, args, task_vars: dict(failed=True, msg=exec_result))
  155. check._get_kibana_url = lambda task_vars: ('url', None)
  156. error = check._check_kibana_route({})
  157. assert_error(error, expect)
  158. @pytest.mark.parametrize('lib_result, expect', [
  159. (
  160. HTTPError('url', 500, "it broke", hdrs=None, fp=None),
  161. 'it broke',
  162. ),
  163. (
  164. URLError('it broke'),
  165. 'it broke',
  166. ),
  167. (
  168. 302,
  169. 'returned the wrong error code',
  170. ),
  171. (
  172. 200,
  173. None,
  174. ),
  175. ])
  176. def test_verify_url_external_failure(lib_result, expect, monkeypatch):
  177. class _http_return:
  178. def __init__(self, code):
  179. self.code = code
  180. def getcode(self):
  181. return self.code
  182. def urlopen(url, context):
  183. if type(lib_result) is int:
  184. return _http_return(lib_result)
  185. raise lib_result
  186. monkeypatch.setattr(urllib2, 'urlopen', urlopen)
  187. check = canned_kibana()
  188. check._get_kibana_url = lambda task_vars: ('url', None)
  189. check._verify_url_internal = lambda url, task_vars: None
  190. error = check._check_kibana_route({})
  191. assert_error(error, expect)