Exemplo n.º 1
0
 def test_run_all_the_args(self, mock_validate, mock_run):
     parser = argparse.ArgumentParser()
     lordoftheflies_ansible.add_args(parser)
     vault.add_args(parser)
     args = [
         "--lordoftheflies-config-path", "/path/to/config",
         "-ke", "ev_name1=ev_value1",
         "-ki", "/path/to/inventory",
         "-kl", "host1:host2",
         "-kt", "tag1,tag2",
     ]
     parsed_args = parser.parse_args(args)
     lordoftheflies_ansible.run(parsed_args, "command", "overcloud")
     expected_cmd = [
         ".", "/path/to/cwd/venvs/lordoftheflies-ansible/bin/activate", "&&",
         "lordoftheflies-ansible", "command",
         "--inventory", "/path/to/inventory",
         "--configdir", "/path/to/config",
         "--passwords", "/path/to/config/passwords.yml",
         "-e", "ev_name1=ev_value1",
         "--limit", "host1:host2",
         "--tags", "tag1,tag2",
     ]
     expected_cmd = " ".join(expected_cmd)
     mock_run.assert_called_once_with(expected_cmd, shell=True, quiet=False,
                                      env={})
Exemplo n.º 2
0
 def test_run_func_args(self, mock_validate, mock_run):
     parser = argparse.ArgumentParser()
     lordoftheflies_ansible.add_args(parser)
     vault.add_args(parser)
     args = [
         "--lordoftheflies-extra-vars", "ev_name1=ev_value1",
         "--lordoftheflies-tags", "tag1,tag2",
     ]
     parsed_args = parser.parse_args(args)
     kwargs = {
         "extra_vars": {"ev_name2": "ev_value2"},
         "tags": "tag3,tag4",
         "verbose_level": 1,
         "extra_args": ["--arg1", "--arg2"],
     }
     lordoftheflies_ansible.run(parsed_args, "command", "overcloud", **kwargs)
     expected_cmd = [
         ".", "/path/to/cwd/venvs/lordoftheflies-ansible/bin/activate", "&&",
         "lordoftheflies-ansible", "command",
         "-v",
         "--inventory", "/etc/lordoftheflies/inventory/overcloud",
         "-e", "ev_name1=ev_value1",
         "-e", "ev_name2='ev_value2'",
         "--tags", "tag1,tag2,tag3,tag4",
         "--arg1", "--arg2",
     ]
     expected_cmd = " ".join(expected_cmd)
     mock_run.assert_called_once_with(expected_cmd, shell=True, quiet=False,
                                      env={})
Exemplo n.º 3
0
 def test_run_failure(self, mock_validate, mock_run):
     parser = argparse.ArgumentParser()
     lordoftheflies_ansible.add_args(parser)
     vault.add_args(parser)
     parsed_args = parser.parse_args([])
     mock_run.side_effect = subprocess.CalledProcessError(1, "dummy")
     self.assertRaises(SystemExit,
                       lordoftheflies_ansible.run, parsed_args, "command",
                       "overcloud")
 def test_run(self, mock_validate, mock_run):
     parser = argparse.ArgumentParser()
     lordoftheflies_ansible.add_args(parser)
     vault.add_args(parser)
     parsed_args = parser.parse_args([])
     lordoftheflies_ansible.run(parsed_args, "command", "overcloud")
     expected_cmd = [
         ".", "/path/to/cwd/venvs/lordoftheflies-ansible/bin/activate", "&&",
         "lordoftheflies-ansible", "command",
         "--inventory", "/etc/lordoftheflies/inventory/overcloud",
     ]
     expected_cmd = " ".join(expected_cmd)
     mock_run.assert_called_once_with(expected_cmd, shell=True, quiet=False)
 def test_run_vault_password_helper(self, mock_vars, mock_run):
     mock_vars.return_value = []
     parser = argparse.ArgumentParser()
     mock_run.return_value = "/path/to/java_role-vault-password-helper"
     lordoftheflies_ansible.add_args(parser)
     vault.add_args(parser)
     mock_run.assert_called_once_with(
         ["which", "java_role-vault-password-helper"], check_output=True)
     mock_run.reset_mock()
     parsed_args = parser.parse_args([])
     lordoftheflies_ansible.run(parsed_args, "command", "overcloud")
     expected_cmd = [
         ".", "/path/to/cwd/venvs/lordoftheflies-ansible/bin/activate", "&&",
         "lordoftheflies-ansible", "command",
         "--key", "/path/to/java_role-vault-password-helper",
         "--inventory", "/etc/lordoftheflies/inventory/overcloud",
     ]
     expected_cmd = " ".join(expected_cmd)
     mock_run.assert_called_once_with(expected_cmd, shell=True, quiet=False)
Exemplo n.º 6
0
 def test_run_vault_password_file(self, mock_update, mock_validate,
                                  mock_run):
     parser = argparse.ArgumentParser()
     lordoftheflies_ansible.add_args(parser)
     vault.add_args(parser)
     args = [
         "--vault-password-file", "/path/to/vault/pw",
     ]
     parsed_args = parser.parse_args(args)
     lordoftheflies_ansible.run(parsed_args, "command", "overcloud")
     expected_cmd = [
         ".", "/path/to/cwd/venvs/lordoftheflies-ansible/bin/activate", "&&",
         "lordoftheflies-ansible", "command",
         "--key", "/path/to/vault/pw",
         "--inventory", "/etc/lordoftheflies/inventory/overcloud",
     ]
     expected_cmd = " ".join(expected_cmd)
     mock_run.assert_called_once_with(expected_cmd, shell=True, quiet=False,
                                      env={})
     mock_update.assert_called_once_with(mock.ANY, {})
Exemplo n.º 7
0
 def test_run_all_the_long_args(self, mock_ask, mock_validate, mock_run):
     parser = argparse.ArgumentParser()
     lordoftheflies_ansible.add_args(parser)
     vault.add_args(parser)
     mock_ask.return_value = "test-pass"
     args = [
         "--ask-vault-pass",
         "--lordoftheflies-config-path", "/path/to/config",
         "--lordoftheflies-extra-vars", "ev_name1=ev_value1",
         "--lordoftheflies-inventory", "/path/to/inventory",
         "--lordoftheflies-limit", "host1:host2",
         "--lordoftheflies-skip-tags", "tag3,tag4",
         "--lordoftheflies-tags", "tag1,tag2",
     ]
     parsed_args = parser.parse_args(args)
     mock_run.return_value = "/path/to/java_role-vault-password-helper"
     lordoftheflies_ansible.run(parsed_args, "command", "overcloud")
     expected_cmd = [
         ".", "/path/to/cwd/venvs/lordoftheflies-ansible/bin/activate", "&&",
         "lordoftheflies-ansible", "command",
         "--key", "/path/to/java_role-vault-password-helper",
         "--inventory", "/path/to/inventory",
         "--configdir", "/path/to/config",
         "--passwords", "/path/to/config/passwords.yml",
         "-e", "ev_name1=ev_value1",
         "--limit", "host1:host2",
         "--skip-tags", "tag3,tag4",
         "--tags", "tag1,tag2",
     ]
     expected_cmd = " ".join(expected_cmd)
     expected_env = {"JAVA_ROLE_VAULT_PASSWORD": "******"}
     expected_calls = [
         mock.call(["which", "java_role-vault-password-helper"],
                   check_output=True),
         mock.call(expected_cmd, shell=True, quiet=False, env=expected_env)
     ]
     self.assertEqual(expected_calls, mock_run.mock_calls)