disk_availability_test.py 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268
  1. import pytest
  2. from openshift_checks.disk_availability import DiskAvailability, OpenShiftCheckException
  3. @pytest.mark.parametrize('group_names,is_active', [
  4. (['oo_masters_to_config'], True),
  5. (['oo_nodes_to_config'], True),
  6. (['oo_etcd_to_config'], True),
  7. (['oo_masters_to_config', 'oo_nodes_to_config'], True),
  8. (['oo_masters_to_config', 'oo_etcd_to_config'], True),
  9. ([], False),
  10. (['lb'], False),
  11. (['nfs'], False),
  12. ])
  13. def test_is_active(group_names, is_active):
  14. task_vars = dict(
  15. group_names=group_names,
  16. )
  17. assert DiskAvailability(None, task_vars).is_active() == is_active
  18. @pytest.mark.parametrize('desc, ansible_mounts, expect_chunks', [
  19. (
  20. 'empty ansible_mounts',
  21. [],
  22. ['determine mount point', 'none'],
  23. ),
  24. (
  25. 'missing relevant mount paths',
  26. [{'mount': '/mnt'}],
  27. ['determine mount point', '/mnt'],
  28. ),
  29. (
  30. 'missing size_available',
  31. [{'mount': '/var'}, {'mount': '/usr'}, {'mount': '/tmp'}],
  32. ['missing', 'size_available'],
  33. ),
  34. ])
  35. def test_cannot_determine_available_disk(desc, ansible_mounts, expect_chunks):
  36. task_vars = dict(
  37. group_names=['oo_masters_to_config'],
  38. ansible_mounts=ansible_mounts,
  39. )
  40. with pytest.raises(OpenShiftCheckException) as excinfo:
  41. DiskAvailability(fake_execute_module, task_vars).run()
  42. for chunk in expect_chunks:
  43. assert chunk in str(excinfo.value)
  44. @pytest.mark.parametrize('group_names,configured_min,ansible_mounts', [
  45. (
  46. ['oo_masters_to_config'],
  47. 0,
  48. [{
  49. 'mount': '/',
  50. 'size_available': 40 * 10**9 + 1,
  51. }],
  52. ),
  53. (
  54. ['oo_nodes_to_config'],
  55. 0,
  56. [{
  57. 'mount': '/',
  58. 'size_available': 15 * 10**9 + 1,
  59. }],
  60. ),
  61. (
  62. ['oo_etcd_to_config'],
  63. 0,
  64. [{
  65. 'mount': '/',
  66. 'size_available': 20 * 10**9 + 1,
  67. }],
  68. ),
  69. (
  70. ['oo_etcd_to_config'],
  71. 1, # configure lower threshold
  72. [{
  73. 'mount': '/',
  74. 'size_available': 1 * 10**9 + 1, # way smaller than recommended
  75. }],
  76. ),
  77. (
  78. ['oo_etcd_to_config'],
  79. 0,
  80. [{
  81. # not enough space on / ...
  82. 'mount': '/',
  83. 'size_available': 2 * 10**9,
  84. }, {
  85. # ... but enough on /var
  86. 'mount': '/var',
  87. 'size_available': 20 * 10**9 + 1,
  88. }],
  89. ),
  90. (
  91. ['oo_masters_to_config'],
  92. 0,
  93. [{
  94. 'mount': '/',
  95. 'size_available': 2 * 10**9,
  96. }, { # not enough directly on /var
  97. 'mount': '/var',
  98. 'size_available': 10 * 10**9 + 1,
  99. }, {
  100. # but subdir mounts add up to enough
  101. 'mount': '/var/lib/docker',
  102. 'size_available': 20 * 10**9 + 1,
  103. }, {
  104. 'mount': '/var/lib/origin',
  105. 'size_available': 20 * 10**9 + 1,
  106. }],
  107. ),
  108. ])
  109. def test_succeeds_with_recommended_disk_space(group_names, configured_min, ansible_mounts):
  110. task_vars = dict(
  111. group_names=group_names,
  112. openshift_check_min_host_disk_gb=configured_min,
  113. ansible_mounts=ansible_mounts,
  114. )
  115. check = DiskAvailability(fake_execute_module, task_vars)
  116. check.run()
  117. assert not check.failures
  118. @pytest.mark.parametrize('name,group_names,configured_min,ansible_mounts,expect_chunks', [
  119. (
  120. 'test with no space available',
  121. ['oo_masters_to_config'],
  122. 0,
  123. [{
  124. 'mount': '/',
  125. 'size_available': 1,
  126. }],
  127. ['0.0 GB'],
  128. ),
  129. (
  130. 'test with a higher configured required value',
  131. ['oo_masters_to_config'],
  132. 100, # set a higher threshold
  133. [{
  134. 'mount': '/',
  135. 'size_available': 50 * 10**9, # would normally be enough...
  136. }],
  137. ['100.0 GB'],
  138. ),
  139. (
  140. 'test with 1GB available, but "0" GB space requirement',
  141. ['oo_nodes_to_config'],
  142. 0,
  143. [{
  144. 'mount': '/',
  145. 'size_available': 1 * 10**9,
  146. }],
  147. ['1.0 GB'],
  148. ),
  149. (
  150. 'test with no space available, but "0" GB space requirement',
  151. ['oo_etcd_to_config'],
  152. 0,
  153. [{
  154. 'mount': '/',
  155. 'size_available': 1,
  156. }],
  157. ['0.0 GB'],
  158. ),
  159. (
  160. 'test with enough space for a node, but not for a master',
  161. ['oo_nodes_to_config', 'oo_masters_to_config'],
  162. 0,
  163. [{
  164. 'mount': '/',
  165. 'size_available': 15 * 10**9 + 1,
  166. }],
  167. ['15.0 GB'],
  168. ),
  169. (
  170. 'test failure with enough space on "/", but not enough on "/var"',
  171. ['oo_etcd_to_config'],
  172. 0,
  173. [{
  174. # enough space on / ...
  175. 'mount': '/',
  176. 'size_available': 20 * 10**9 + 1,
  177. }, {
  178. # .. but not enough on /var
  179. 'mount': '/var',
  180. 'size_available': 0,
  181. }],
  182. ['0.0 GB'],
  183. ),
  184. ], ids=lambda argval: argval[0])
  185. def test_fails_with_insufficient_disk_space(name, group_names, configured_min, ansible_mounts, expect_chunks):
  186. task_vars = dict(
  187. group_names=group_names,
  188. openshift_check_min_host_disk_gb=configured_min,
  189. ansible_mounts=ansible_mounts,
  190. )
  191. check = DiskAvailability(fake_execute_module, task_vars)
  192. check.run()
  193. assert check.failures
  194. for chunk in 'below recommended'.split() + expect_chunks:
  195. assert chunk in str(check.failures[0])
  196. @pytest.mark.parametrize('name,group_names,context,ansible_mounts,failed,extra_words', [
  197. (
  198. 'test without enough space for master under "upgrade" context',
  199. ['oo_nodes_to_config', 'oo_masters_to_config'],
  200. "upgrade",
  201. [{
  202. 'mount': '/',
  203. 'size_available': 1 * 10**9 + 1,
  204. 'size_total': 21 * 10**9 + 1,
  205. }],
  206. True,
  207. ["1.0 GB"],
  208. ),
  209. (
  210. 'test with enough space for master under "upgrade" context',
  211. ['oo_nodes_to_config', 'oo_masters_to_config'],
  212. "upgrade",
  213. [{
  214. 'mount': '/',
  215. 'size_available': 10 * 10**9 + 1,
  216. 'size_total': 21 * 10**9 + 1,
  217. }],
  218. False,
  219. [],
  220. ),
  221. (
  222. 'test with not enough space for master, and non-upgrade context',
  223. ['oo_nodes_to_config', 'oo_masters_to_config'],
  224. "health",
  225. [{
  226. 'mount': '/',
  227. # not enough space for a master,
  228. # "health" context should not lower requirement
  229. 'size_available': 20 * 10**9 + 1,
  230. }],
  231. True,
  232. ["20.0 GB", "below minimum"],
  233. ),
  234. ], ids=lambda argval: argval[0])
  235. def test_min_required_space_changes_with_upgrade_context(name, group_names, context, ansible_mounts, failed, extra_words):
  236. task_vars = dict(
  237. r_openshift_health_checker_playbook_context=context,
  238. group_names=group_names,
  239. ansible_mounts=ansible_mounts,
  240. )
  241. check = DiskAvailability(fake_execute_module, task_vars)
  242. check.run()
  243. assert bool(check.failures) == failed
  244. for word in extra_words:
  245. assert word in str(check.failures[0])
  246. def fake_execute_module(*args):
  247. raise AssertionError('this function should not be called')