etcd_volume_test.py 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  1. import pytest
  2. from openshift_checks.etcd_volume import EtcdVolume
  3. from openshift_checks import OpenShiftCheckException
  4. @pytest.mark.parametrize('ansible_mounts,extra_words', [
  5. ([], ['none']), # empty ansible_mounts
  6. ([{'mount': '/mnt'}], ['/mnt']), # missing relevant mount paths
  7. ])
  8. def test_cannot_determine_available_disk(ansible_mounts, extra_words):
  9. task_vars = dict(
  10. ansible_mounts=ansible_mounts,
  11. )
  12. with pytest.raises(OpenShiftCheckException) as excinfo:
  13. EtcdVolume(fake_execute_module, task_vars).run()
  14. for word in ['Unable to determine mount point'] + extra_words:
  15. assert word in str(excinfo.value)
  16. @pytest.mark.parametrize('size_limit,ansible_mounts', [
  17. (
  18. # if no size limit is specified, expect max usage
  19. # limit to default to 90% of size_total
  20. None,
  21. [{
  22. 'mount': '/',
  23. 'size_available': 40 * 10**9,
  24. 'size_total': 80 * 10**9
  25. }],
  26. ),
  27. (
  28. 1,
  29. [{
  30. 'mount': '/',
  31. 'size_available': 30 * 10**9,
  32. 'size_total': 30 * 10**9,
  33. }],
  34. ),
  35. (
  36. 20000000000,
  37. [{
  38. 'mount': '/',
  39. 'size_available': 20 * 10**9,
  40. 'size_total': 40 * 10**9,
  41. }],
  42. ),
  43. (
  44. 5000000000,
  45. [{
  46. # not enough space on / ...
  47. 'mount': '/',
  48. 'size_available': 0,
  49. 'size_total': 0,
  50. }, {
  51. # not enough space on /var/lib ...
  52. 'mount': '/var/lib',
  53. 'size_available': 2 * 10**9,
  54. 'size_total': 21 * 10**9,
  55. }, {
  56. # ... but enough on /var/lib/etcd
  57. 'mount': '/var/lib/etcd',
  58. 'size_available': 36 * 10**9,
  59. 'size_total': 40 * 10**9
  60. }],
  61. )
  62. ])
  63. def test_succeeds_with_recommended_disk_space(size_limit, ansible_mounts):
  64. task_vars = dict(
  65. etcd_device_usage_threshold_percent=size_limit,
  66. ansible_mounts=ansible_mounts,
  67. )
  68. if task_vars["etcd_device_usage_threshold_percent"] is None:
  69. task_vars.pop("etcd_device_usage_threshold_percent")
  70. result = EtcdVolume(fake_execute_module, task_vars).run()
  71. assert not result.get('failed', False)
  72. @pytest.mark.parametrize('size_limit_percent,ansible_mounts,extra_words', [
  73. (
  74. # if no size limit is specified, expect max usage
  75. # limit to default to 90% of size_total
  76. None,
  77. [{
  78. 'mount': '/',
  79. 'size_available': 1 * 10**9,
  80. 'size_total': 100 * 10**9,
  81. }],
  82. ['99.0%'],
  83. ),
  84. (
  85. 70.0,
  86. [{
  87. 'mount': '/',
  88. 'size_available': 1 * 10**6,
  89. 'size_total': 5 * 10**9,
  90. }],
  91. ['100.0%'],
  92. ),
  93. (
  94. 40.0,
  95. [{
  96. 'mount': '/',
  97. 'size_available': 2 * 10**9,
  98. 'size_total': 6 * 10**9,
  99. }],
  100. ['66.7%'],
  101. ),
  102. (
  103. None,
  104. [{
  105. # enough space on /var ...
  106. 'mount': '/var',
  107. 'size_available': 20 * 10**9,
  108. 'size_total': 20 * 10**9,
  109. }, {
  110. # .. but not enough on /var/lib
  111. 'mount': '/var/lib',
  112. 'size_available': 1 * 10**9,
  113. 'size_total': 20 * 10**9,
  114. }],
  115. ['95.0%'],
  116. ),
  117. ])
  118. def test_fails_with_insufficient_disk_space(size_limit_percent, ansible_mounts, extra_words):
  119. task_vars = dict(
  120. etcd_device_usage_threshold_percent=size_limit_percent,
  121. ansible_mounts=ansible_mounts,
  122. )
  123. if task_vars["etcd_device_usage_threshold_percent"] is None:
  124. task_vars.pop("etcd_device_usage_threshold_percent")
  125. result = EtcdVolume(fake_execute_module, task_vars).run()
  126. assert result['failed']
  127. for word in extra_words:
  128. assert word in result['msg']
  129. def fake_execute_module(*args):
  130. raise AssertionError('this function should not be called')