test_glusterfs_check_containerized.py 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  1. import os
  2. import sys
  3. import pytest
  4. try:
  5. # python3, mock is built in.
  6. from unittest.mock import patch
  7. except ImportError:
  8. # In python2, mock is installed via pip.
  9. from mock import patch
  10. MODULE_PATH = os.path.realpath(os.path.join(__file__, os.pardir, os.pardir, 'library'))
  11. sys.path.insert(1, MODULE_PATH)
  12. import glusterfs_check_containerized # noqa
  13. NODE_LIST_STD_OUT_1 = ("""
  14. NAME STATUS ROLES AGE VERSION
  15. fedora1.openshift.io Ready compute,infra,master 1d v1.11.0+d4cacc0
  16. fedora2.openshift.io Ready infra 1d v1.11.0+d4cacc0
  17. fedora3.openshift.io Ready infra 1d v1.11.0+d4cacc0
  18. """)
  19. NODE_LIST_STD_OUT_2 = ("""
  20. NAME STATUS ROLES AGE VERSION
  21. fedora1.openshift.io Ready compute,infra,master 1d v1.11.0+d4cacc0
  22. fedora2.openshift.io NotReady infra 1d v1.11.0+d4cacc0
  23. fedora3.openshift.io Ready infra 1d v1.11.0+d4cacc0
  24. """)
  25. NODE_LIST_STD_OUT_3 = ("""
  26. NAME STATUS ROLES AGE VERSION
  27. fedora1.openshift.io Ready compute,infra,master 1d v1.11.0+d4cacc0
  28. fedora2.openshift.io NotReady infra 1d v1.11.0+d4cacc0
  29. fedora3.openshift.io Invalid infra 1d v1.11.0+d4cacc0
  30. """)
  31. POD_SELECT_STD_OUT = ("""NAME READY STATUS RESTARTS AGE IP NODE
  32. glusterblock-storage-provisioner-dc-1-ks5zt 1/1 Running 0 1d 10.130.0.5 fedora3.openshift.io
  33. glusterfs-storage-fzdn2 1/1 Running 0 1d 192.168.124.175 fedora1.openshift.io
  34. glusterfs-storage-mp9nk 1/1 Running 4 1d 192.168.124.233 fedora2.openshift.io
  35. glusterfs-storage-t9c6d 1/1 Running 0 1d 192.168.124.50 fedora3.openshift.io
  36. heketi-storage-1-rgj8b 1/1 Running 0 1d 10.130.0.4 fedora3.openshift.io""")
  37. # Need to ensure we have extra empty lines in this output;
  38. # thus the quotes are one line above and below the text.
  39. VOLUME_LIST_STDOUT = ("""
  40. heketidbstorage
  41. volume1
  42. """)
  43. VOLUME_HEAL_INFO_GOOD = ("""
  44. Brick 192.168.124.233:/var/lib/heketi/mounts/vg_936ddf24061d55788f50496757d2f3b2/brick_9df1b6229025ea45521ab1b370d24a06/brick
  45. Status: Connected
  46. Number of entries: 0
  47. Brick 192.168.124.175:/var/lib/heketi/mounts/vg_95975e77a6dc7a8e45586eac556b0f24/brick_172b6be6704a3d9f706535038f7f2e52/brick
  48. Status: Connected
  49. Number of entries: 0
  50. Brick 192.168.124.50:/var/lib/heketi/mounts/vg_6523756fe1becfefd3224d3082373344/brick_359e4cf44cd1b82674f7d931cb5c481e/brick
  51. Status: Connected
  52. Number of entries: 0
  53. """)
  54. VOLUME_HEAL_INFO_BAD = ("""
  55. Brick 192.168.124.233:/var/lib/heketi/mounts/vg_936ddf24061d55788f50496757d2f3b2/brick_9df1b6229025ea45521ab1b370d24a06/brick
  56. Status: Connected
  57. Number of entries: 0
  58. Brick 192.168.124.175:/var/lib/heketi/mounts/vg_95975e77a6dc7a8e45586eac556b0f24/brick_172b6be6704a3d9f706535038f7f2e52/brick
  59. Status: Connected
  60. Number of entries: 0
  61. Brick 192.168.124.50:/var/lib/heketi/mounts/vg_6523756fe1becfefd3224d3082373344/brick_359e4cf44cd1b82674f7d931cb5c481e/brick
  62. Status: Connected
  63. Number of entries: -
  64. """)
  65. class DummyModule(object):
  66. def exit_json(*args, **kwargs):
  67. return 0
  68. def fail_json(*args, **kwargs):
  69. raise Exception(kwargs['msg'])
  70. def test_get_valid_nodes():
  71. with patch('glusterfs_check_containerized.call_or_fail') as call_mock:
  72. module = DummyModule()
  73. oc_exec = []
  74. exclude_node = "fedora1.openshift.io"
  75. call_mock.return_value = NODE_LIST_STD_OUT_1
  76. valid_nodes = glusterfs_check_containerized.get_valid_nodes(module, oc_exec, exclude_node)
  77. assert valid_nodes == ['fedora2.openshift.io', 'fedora3.openshift.io']
  78. call_mock.return_value = NODE_LIST_STD_OUT_2
  79. valid_nodes = glusterfs_check_containerized.get_valid_nodes(module, oc_exec, exclude_node)
  80. assert valid_nodes == ['fedora3.openshift.io']
  81. call_mock.return_value = NODE_LIST_STD_OUT_3
  82. with pytest.raises(Exception) as err:
  83. valid_nodes = glusterfs_check_containerized.get_valid_nodes(module, oc_exec, exclude_node)
  84. assert 'Exception: Unable to find suitable node in get nodes output' in str(err)
  85. def test_select_pod():
  86. with patch('glusterfs_check_containerized.call_or_fail') as call_mock:
  87. module = DummyModule()
  88. oc_exec = []
  89. cluster_name = "storage"
  90. valid_nodes = ["fedora2.openshift.io", "fedora3.openshift.io"]
  91. call_mock.return_value = POD_SELECT_STD_OUT
  92. # Should select first valid podname in call_or_fail output.
  93. pod_name = glusterfs_check_containerized.select_pod(module, oc_exec, cluster_name, valid_nodes)
  94. assert pod_name == 'glusterfs-storage-mp9nk'
  95. with pytest.raises(Exception) as err:
  96. pod_name = glusterfs_check_containerized.select_pod(module, oc_exec, "does not exist", valid_nodes)
  97. assert 'Exception: Unable to find suitable pod in get pods output' in str(err)
  98. def test_get_volume_list():
  99. with patch('glusterfs_check_containerized.call_or_fail') as call_mock:
  100. module = DummyModule()
  101. oc_exec = []
  102. pod_name = ''
  103. call_mock.return_value = VOLUME_LIST_STDOUT
  104. volume_list = glusterfs_check_containerized.get_volume_list(module, oc_exec, pod_name)
  105. assert volume_list == ['heketidbstorage', 'volume1']
  106. def test_check_volume_health_info():
  107. with patch('glusterfs_check_containerized.call_or_fail') as call_mock:
  108. module = DummyModule()
  109. oc_exec = []
  110. pod_name = ''
  111. volume = 'somevolume'
  112. call_mock.return_value = VOLUME_HEAL_INFO_GOOD
  113. # this should just complete quietly.
  114. glusterfs_check_containerized.check_volume_health_info(module, oc_exec, pod_name, volume)
  115. call_mock.return_value = VOLUME_HEAL_INFO_BAD
  116. expected_error = 'volume {} is not ready'.format(volume)
  117. with pytest.raises(Exception) as err:
  118. glusterfs_check_containerized.check_volume_health_info(module, oc_exec, pod_name, volume)
  119. assert expected_error in str(err)
  120. if __name__ == '__main__':
  121. test_get_valid_nodes()
  122. test_select_pod()
  123. test_get_volume_list()
  124. test_check_volume_health_info()