fixture.py 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233
  1. # pylint: disable=missing-docstring
  2. import os
  3. import yaml
  4. import ooinstall.cli_installer as cli
  5. from test.oo_config_tests import OOInstallFixture
  6. from click.testing import CliRunner
  7. # Substitute in a product name before use:
  8. SAMPLE_CONFIG = """
  9. variant: %s
  10. ansible_ssh_user: root
  11. master_routingconfig_subdomain: example.com
  12. hosts:
  13. - connect_to: 10.0.0.1
  14. ip: 10.0.0.1
  15. hostname: master-private.example.com
  16. public_ip: 24.222.0.1
  17. public_hostname: master.example.com
  18. master: true
  19. node: true
  20. - connect_to: 10.0.0.2
  21. ip: 10.0.0.2
  22. hostname: node1-private.example.com
  23. public_ip: 24.222.0.2
  24. public_hostname: node1.example.com
  25. node: true
  26. - connect_to: 10.0.0.3
  27. ip: 10.0.0.3
  28. hostname: node2-private.example.com
  29. public_ip: 24.222.0.3
  30. public_hostname: node2.example.com
  31. node: true
  32. """
  33. def read_yaml(config_file_path):
  34. cfg_f = open(config_file_path, 'r')
  35. config = yaml.safe_load(cfg_f.read())
  36. cfg_f.close()
  37. return config
  38. class OOCliFixture(OOInstallFixture):
  39. def setUp(self):
  40. OOInstallFixture.setUp(self)
  41. self.runner = CliRunner()
  42. # Add any arguments you would like to test here, the defaults ensure
  43. # we only do unattended invocations here, and using temporary files/dirs.
  44. self.cli_args = ["-a", self.work_dir]
  45. def run_cli(self):
  46. return self.runner.invoke(cli.cli, self.cli_args)
  47. def assert_result(self, result, exit_code):
  48. if result.exit_code != exit_code:
  49. print "Unexpected result from CLI execution"
  50. print "Exit code: %s" % result.exit_code
  51. print "Exception: %s" % result.exception
  52. print result.exc_info
  53. import traceback
  54. traceback.print_exception(*result.exc_info)
  55. print "Output:\n%s" % result.output
  56. self.fail("Exception during CLI execution")
  57. def _verify_load_facts(self, load_facts_mock):
  58. """ Check that we ran load facts with expected inputs. """
  59. load_facts_args = load_facts_mock.call_args[0]
  60. self.assertEquals(os.path.join(self.work_dir, ".ansible/hosts"),
  61. load_facts_args[0])
  62. self.assertEquals(os.path.join(self.work_dir,
  63. "playbooks/byo/openshift_facts.yml"),
  64. load_facts_args[1])
  65. env_vars = load_facts_args[2]
  66. self.assertEquals(os.path.join(self.work_dir,
  67. '.ansible/callback_facts.yaml'),
  68. env_vars['OO_INSTALL_CALLBACK_FACTS_YAML'])
  69. self.assertEqual('/tmp/ansible.log', env_vars['ANSIBLE_LOG_PATH'])
  70. def _verify_run_playbook(self, run_playbook_mock, exp_hosts_len, exp_hosts_to_run_on_len):
  71. """ Check that we ran playbook with expected inputs. """
  72. hosts = run_playbook_mock.call_args[0][0]
  73. hosts_to_run_on = run_playbook_mock.call_args[0][1]
  74. self.assertEquals(exp_hosts_len, len(hosts))
  75. self.assertEquals(exp_hosts_to_run_on_len, len(hosts_to_run_on))
  76. def _verify_config_hosts(self, written_config, host_count):
  77. self.assertEquals(host_count, len(written_config['hosts']))
  78. for host in written_config['hosts']:
  79. self.assertTrue('hostname' in host)
  80. self.assertTrue('public_hostname' in host)
  81. if 'preconfigured' not in host:
  82. self.assertTrue(host['node'])
  83. self.assertTrue('ip' in host)
  84. self.assertTrue('public_ip' in host)
  85. #pylint: disable=too-many-arguments
  86. def _verify_get_hosts_to_run_on(self, mock_facts, load_facts_mock,
  87. run_playbook_mock, cli_input,
  88. exp_hosts_len=None, exp_hosts_to_run_on_len=None,
  89. force=None):
  90. """
  91. Tests cli_installer.py:get_hosts_to_run_on. That method has quite a
  92. few subtle branches in the logic. The goal with this method is simply
  93. to handle all the messy stuff here and allow the main test cases to be
  94. easily read. The basic idea is to modify mock_facts to return a
  95. version indicating OpenShift is already installed on particular hosts.
  96. """
  97. load_facts_mock.return_value = (mock_facts, 0)
  98. run_playbook_mock.return_value = 0
  99. if cli_input:
  100. self.cli_args.append("install")
  101. result = self.runner.invoke(cli.cli,
  102. self.cli_args,
  103. input=cli_input)
  104. else:
  105. config_file = self.write_config(
  106. os.path.join(self.work_dir,
  107. 'ooinstall.conf'), SAMPLE_CONFIG % 'openshift-enterprise')
  108. self.cli_args.extend(["-c", config_file, "install"])
  109. if force:
  110. self.cli_args.append("--force")
  111. result = self.runner.invoke(cli.cli, self.cli_args)
  112. written_config = read_yaml(config_file)
  113. self._verify_config_hosts(written_config, exp_hosts_len)
  114. self.assert_result(result, 0)
  115. self._verify_load_facts(load_facts_mock)
  116. self._verify_run_playbook(run_playbook_mock, exp_hosts_len, exp_hosts_to_run_on_len)
  117. # Make sure we ran on the expected masters and nodes:
  118. hosts = run_playbook_mock.call_args[0][0]
  119. hosts_to_run_on = run_playbook_mock.call_args[0][1]
  120. self.assertEquals(exp_hosts_len, len(hosts))
  121. self.assertEquals(exp_hosts_to_run_on_len, len(hosts_to_run_on))
  122. #pylint: disable=too-many-arguments,too-many-branches,too-many-statements
  123. def build_input(ssh_user=None, hosts=None, variant_num=None,
  124. add_nodes=None, confirm_facts=None, schedulable_masters_ok=None,
  125. master_lb=None):
  126. """
  127. Build an input string simulating a user entering values in an interactive
  128. attended install.
  129. This is intended to give us one place to update when the CLI prompts change.
  130. We should aim to keep this dependent on optional keyword arguments with
  131. sensible defaults to keep things from getting too fragile.
  132. """
  133. inputs = [
  134. 'y', # let's proceed
  135. ]
  136. if ssh_user:
  137. inputs.append(ssh_user)
  138. if variant_num:
  139. inputs.append(str(variant_num)) # Choose variant + version
  140. num_masters = 0
  141. if hosts:
  142. i = 0
  143. for (host, is_master, is_containerized) in hosts:
  144. inputs.append(host)
  145. if is_master:
  146. inputs.append('y')
  147. num_masters += 1
  148. else:
  149. inputs.append('n')
  150. if is_containerized:
  151. inputs.append('container')
  152. else:
  153. inputs.append('rpm')
  154. #inputs.append('rpm')
  155. # We should not be prompted to add more hosts if we're currently at
  156. # 2 masters, this is an invalid HA configuration, so this question
  157. # will not be asked, and the user must enter the next host:
  158. if num_masters != 2:
  159. if i < len(hosts) - 1:
  160. if num_masters >= 1:
  161. inputs.append('y') # Add more hosts
  162. else:
  163. inputs.append('n') # Done adding hosts
  164. i += 1
  165. # You can pass a single master_lb or a list if you intend for one to get rejected:
  166. if master_lb:
  167. if isinstance(master_lb[0], list) or isinstance(master_lb[0], tuple):
  168. inputs.extend(master_lb[0])
  169. else:
  170. inputs.append(master_lb[0])
  171. inputs.append('y' if master_lb[1] else 'n')
  172. inputs.append('example.com')
  173. # TODO: support option 2, fresh install
  174. if add_nodes:
  175. if schedulable_masters_ok:
  176. inputs.append('y')
  177. inputs.append('1') # Add more nodes
  178. i = 0
  179. for (host, is_master, is_containerized) in add_nodes:
  180. inputs.append(host)
  181. if is_containerized:
  182. inputs.append('container')
  183. else:
  184. inputs.append('rpm')
  185. #inputs.append('rpm')
  186. if i < len(add_nodes) - 1:
  187. inputs.append('y') # Add more hosts
  188. else:
  189. inputs.append('n') # Done adding hosts
  190. i += 1
  191. if add_nodes is None:
  192. total_hosts = hosts
  193. else:
  194. total_hosts = hosts + add_nodes
  195. if total_hosts is not None and num_masters == len(total_hosts):
  196. inputs.append('y')
  197. inputs.extend([
  198. confirm_facts,
  199. 'y', # lets do this
  200. ])
  201. return '\n'.join(inputs)