oo_config_tests.py 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267
  1. # TODO: Temporarily disabled due to importing old code into openshift-ansible
  2. # repo. We will work on these over time.
  3. # pylint: disable=bad-continuation,missing-docstring,no-self-use,invalid-name
  4. import os
  5. import unittest
  6. import tempfile
  7. import shutil
  8. import yaml
  9. from six.moves import cStringIO
  10. from ooinstall.oo_config import OOConfig, Host, OOConfigInvalidHostError
  11. import ooinstall.openshift_ansible
  12. SAMPLE_CONFIG = """
  13. variant: openshift-enterprise
  14. variant_version: 3.3
  15. version: v2
  16. deployment:
  17. ansible_ssh_user: root
  18. hosts:
  19. - connect_to: master-private.example.com
  20. ip: 10.0.0.1
  21. hostname: master-private.example.com
  22. public_ip: 24.222.0.1
  23. public_hostname: master.example.com
  24. roles:
  25. - master
  26. - node
  27. - connect_to: node1-private.example.com
  28. ip: 10.0.0.2
  29. hostname: node1-private.example.com
  30. public_ip: 24.222.0.2
  31. public_hostname: node1.example.com
  32. roles:
  33. - node
  34. - connect_to: node2-private.example.com
  35. ip: 10.0.0.3
  36. hostname: node2-private.example.com
  37. public_ip: 24.222.0.3
  38. public_hostname: node2.example.com
  39. roles:
  40. - node
  41. roles:
  42. master:
  43. node:
  44. """
  45. CONFIG_INCOMPLETE_FACTS = """
  46. version: v2
  47. deployment:
  48. ansible_ssh_user: root
  49. hosts:
  50. - connect_to: 10.0.0.1
  51. ip: 10.0.0.1
  52. hostname: master-private.example.com
  53. public_ip: 24.222.0.1
  54. public_hostname: master.example.com
  55. roles:
  56. - master
  57. - connect_to: 10.0.0.2
  58. ip: 10.0.0.2
  59. hostname: 24.222.0.2
  60. public_ip: 24.222.0.2
  61. roles:
  62. - node
  63. - connect_to: 10.0.0.3
  64. ip: 10.0.0.3
  65. roles:
  66. - node
  67. roles:
  68. master:
  69. node:
  70. """
  71. CONFIG_BAD = """
  72. variant: openshift-enterprise
  73. version: v2
  74. deployment:
  75. ansible_ssh_user: root
  76. hosts:
  77. - connect_to: master-private.example.com
  78. ip: 10.0.0.1
  79. hostname: master-private.example.com
  80. public_ip: 24.222.0.1
  81. public_hostname: master.example.com
  82. roles:
  83. - master
  84. - node
  85. - ip: 10.0.0.2
  86. hostname: node1-private.example.com
  87. public_ip: 24.222.0.2
  88. public_hostname: node1.example.com
  89. roles:
  90. - node
  91. - connect_to: node2-private.example.com
  92. ip: 10.0.0.3
  93. hostname: node2-private.example.com
  94. public_ip: 24.222.0.3
  95. public_hostname: node2.example.com
  96. roles:
  97. - node
  98. roles:
  99. master:
  100. node:
  101. """
  102. class OOInstallFixture(unittest.TestCase):
  103. def setUp(self):
  104. self.tempfiles = []
  105. self.work_dir = tempfile.mkdtemp(prefix='ooconfigtests')
  106. self.tempfiles.append(self.work_dir)
  107. def tearDown(self):
  108. for path in self.tempfiles:
  109. if os.path.isdir(path):
  110. shutil.rmtree(path)
  111. else:
  112. os.remove(path)
  113. def write_config(self, path, config_str):
  114. """
  115. Write given config to a temporary file which will be cleaned
  116. up in teardown.
  117. Returns full path to the file.
  118. """
  119. cfg_file = open(path, 'w')
  120. cfg_file.write(config_str)
  121. cfg_file.close()
  122. return path
  123. class OOConfigTests(OOInstallFixture):
  124. def test_load_config(self):
  125. cfg_path = self.write_config(
  126. os.path.join(self.work_dir, 'ooinstall.conf'), SAMPLE_CONFIG)
  127. ooconfig = OOConfig(cfg_path)
  128. self.assertEquals(3, len(ooconfig.deployment.hosts))
  129. self.assertEquals("master-private.example.com", ooconfig.deployment.hosts[0].connect_to)
  130. self.assertEquals("10.0.0.1", ooconfig.deployment.hosts[0].ip)
  131. self.assertEquals("master-private.example.com", ooconfig.deployment.hosts[0].hostname)
  132. self.assertEquals(["10.0.0.1", "10.0.0.2", "10.0.0.3"],
  133. [host.ip for host in ooconfig.deployment.hosts])
  134. self.assertEquals('openshift-enterprise', ooconfig.settings['variant'])
  135. self.assertEquals('v2', ooconfig.settings['version'])
  136. def test_load_bad_config(self):
  137. cfg_path = self.write_config(
  138. os.path.join(self.work_dir, 'ooinstall.conf'), CONFIG_BAD)
  139. try:
  140. OOConfig(cfg_path)
  141. assert False
  142. except OOConfigInvalidHostError:
  143. assert True
  144. def test_load_complete_facts(self):
  145. cfg_path = self.write_config(
  146. os.path.join(self.work_dir, 'ooinstall.conf'), SAMPLE_CONFIG)
  147. ooconfig = OOConfig(cfg_path)
  148. missing_host_facts = ooconfig.calc_missing_facts()
  149. self.assertEquals(0, len(missing_host_facts))
  150. # Test missing optional facts the user must confirm:
  151. def test_load_host_incomplete_facts(self):
  152. cfg_path = self.write_config(
  153. os.path.join(self.work_dir, 'ooinstall.conf'), CONFIG_INCOMPLETE_FACTS)
  154. ooconfig = OOConfig(cfg_path)
  155. missing_host_facts = ooconfig.calc_missing_facts()
  156. self.assertEquals(2, len(missing_host_facts))
  157. self.assertEquals(1, len(missing_host_facts['10.0.0.2']))
  158. self.assertEquals(3, len(missing_host_facts['10.0.0.3']))
  159. def test_write_config(self):
  160. cfg_path = self.write_config(
  161. os.path.join(self.work_dir, 'ooinstall.conf'), SAMPLE_CONFIG)
  162. ooconfig = OOConfig(cfg_path)
  163. ooconfig.save_to_disk()
  164. f = open(cfg_path, 'r')
  165. written_config = yaml.safe_load(f.read())
  166. f.close()
  167. self.assertEquals(3, len(written_config['deployment']['hosts']))
  168. for h in written_config['deployment']['hosts']:
  169. self.assertTrue('ip' in h)
  170. self.assertTrue('public_ip' in h)
  171. self.assertTrue('hostname' in h)
  172. self.assertTrue('public_hostname' in h)
  173. self.assertTrue('ansible_ssh_user' in written_config['deployment'])
  174. self.assertTrue('variant' in written_config)
  175. self.assertEquals('v2', written_config['version'])
  176. # Some advanced settings should not get written out if they
  177. # were not specified by the user:
  178. self.assertFalse('ansible_inventory_directory' in written_config)
  179. class HostTests(OOInstallFixture):
  180. def test_load_host_no_ip_or_hostname(self):
  181. yaml_props = {
  182. 'public_ip': '192.168.0.1',
  183. 'public_hostname': 'a.example.com',
  184. 'master': True
  185. }
  186. self.assertRaises(OOConfigInvalidHostError, Host, **yaml_props)
  187. def test_load_host_no_master_or_node_specified(self):
  188. yaml_props = {
  189. 'ip': '192.168.0.1',
  190. 'hostname': 'a.example.com',
  191. 'public_ip': '192.168.0.1',
  192. 'public_hostname': 'a.example.com',
  193. }
  194. self.assertRaises(OOConfigInvalidHostError, Host, **yaml_props)
  195. def test_inventory_file_quotes_node_labels(self):
  196. """Verify a host entry wraps openshift_node_labels value in double quotes"""
  197. yaml_props = {
  198. 'ip': '192.168.0.1',
  199. 'hostname': 'a.example.com',
  200. 'connect_to': 'a-private.example.com',
  201. 'public_ip': '192.168.0.1',
  202. 'public_hostname': 'a.example.com',
  203. 'new_host': True,
  204. 'roles': ['node'],
  205. 'node_labels': {
  206. 'region': 'infra'
  207. },
  208. }
  209. new_node = Host(**yaml_props)
  210. inventory = cStringIO()
  211. # This is what the 'write_host' function generates. write_host
  212. # has no return value, it just writes directly to the file
  213. # 'inventory' which in this test-case is a StringIO object
  214. ooinstall.openshift_ansible.write_host(
  215. new_node,
  216. 'node',
  217. inventory,
  218. schedulable=True)
  219. # read the value of what was written to the inventory "file"
  220. legacy_inventory_line = inventory.getvalue()
  221. # Given the `yaml_props` above we should see a line like this:
  222. # openshift_node_labels="{'region': 'infra'}"
  223. # Quotes around the hash
  224. node_labels_expected = '''openshift_node_labels="{'region': 'infra'}"'''
  225. # No quotes around the hash
  226. node_labels_bad = '''openshift_node_labels={'region': 'infra'}'''
  227. # The good line is present in the written inventory line
  228. self.assertIn(node_labels_expected, legacy_inventory_line)
  229. # An unquoted version is not present
  230. self.assertNotIn(node_labels_bad, legacy_inventory_line)