memory_availability_test.py 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. import pytest
  2. from openshift_checks.memory_availability import MemoryAvailability
  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 MemoryAvailability(None, task_vars).is_active() == is_active
  18. @pytest.mark.parametrize('group_names,configured_min,ansible_memtotal_mb', [
  19. (
  20. ['oo_masters_to_config'],
  21. 0,
  22. 17200,
  23. ),
  24. (
  25. ['oo_nodes_to_config'],
  26. 0,
  27. 8200,
  28. ),
  29. (
  30. ['oo_nodes_to_config'],
  31. 1, # configure lower threshold
  32. 2000, # too low for recommended but not for configured
  33. ),
  34. (
  35. ['oo_nodes_to_config'],
  36. 2, # configure threshold where adjustment pushes it over
  37. 1900,
  38. ),
  39. (
  40. ['oo_etcd_to_config'],
  41. 0,
  42. 8200,
  43. ),
  44. (
  45. ['oo_masters_to_config', 'oo_nodes_to_config'],
  46. 0,
  47. 17000,
  48. ),
  49. ])
  50. def test_succeeds_with_recommended_memory(group_names, configured_min, ansible_memtotal_mb):
  51. task_vars = dict(
  52. group_names=group_names,
  53. openshift_check_min_host_memory_gb=configured_min,
  54. ansible_memtotal_mb=ansible_memtotal_mb,
  55. )
  56. result = MemoryAvailability(fake_execute_module, task_vars).run()
  57. assert not result.get('failed', False)
  58. @pytest.mark.parametrize('group_names,configured_min,ansible_memtotal_mb,extra_words', [
  59. (
  60. ['oo_masters_to_config'],
  61. 0,
  62. 0,
  63. ['0.0 GiB'],
  64. ),
  65. (
  66. ['oo_nodes_to_config'],
  67. 0,
  68. 100,
  69. ['0.1 GiB'],
  70. ),
  71. (
  72. ['oo_nodes_to_config'],
  73. 24, # configure higher threshold
  74. 20 * 1024, # enough to meet recommended but not configured
  75. ['20.0 GiB'],
  76. ),
  77. (
  78. ['oo_nodes_to_config'],
  79. 24, # configure higher threshold
  80. 22 * 1024, # not enough for adjustment to push over threshold
  81. ['22.0 GiB'],
  82. ),
  83. (
  84. ['oo_etcd_to_config'],
  85. 0,
  86. 6 * 1024,
  87. ['6.0 GiB'],
  88. ),
  89. (
  90. ['oo_etcd_to_config', 'oo_masters_to_config'],
  91. 0,
  92. 9 * 1024, # enough memory for etcd, not enough for a master
  93. ['9.0 GiB'],
  94. ),
  95. (
  96. ['oo_nodes_to_config', 'oo_masters_to_config'],
  97. 0,
  98. # enough memory for a node, not enough for a master
  99. 11 * 1024,
  100. ['11.0 GiB'],
  101. ),
  102. ])
  103. def test_fails_with_insufficient_memory(group_names, configured_min, ansible_memtotal_mb, extra_words):
  104. task_vars = dict(
  105. group_names=group_names,
  106. openshift_check_min_host_memory_gb=configured_min,
  107. ansible_memtotal_mb=ansible_memtotal_mb,
  108. )
  109. result = MemoryAvailability(fake_execute_module, task_vars).run()
  110. assert result.get('failed', False)
  111. for word in 'below recommended'.split() + extra_words:
  112. assert word in result['msg']
  113. def fake_execute_module(*args):
  114. raise AssertionError('this function should not be called')