diff options
author | Linda Wang <wangwulin@huawei.com> | 2017-03-08 02:31:57 +0000 |
---|---|---|
committer | Linda Wang <wangwulin@huawei.com> | 2017-03-08 09:06:15 +0000 |
commit | d3c6a95ea4b35c01b20d24c14acfaf4260d063a4 (patch) | |
tree | 404d9cdbd5434a9938e706dc41ce6aef6ecdd191 /functest/tests/unit/ci | |
parent | c31ad6a2bb181cce941c18e008efa0d44a7dc60a (diff) |
Bugfix: modify test_prepare_env to make verify job successful
Functest verify job failed due to that test_prepare_env.py mistook one
function of ft_utils.execute_command_raise.
Change-Id: Ib3b8ca807308bf5c6d250e7debb4c9e1e106e3d1
Signed-off-by: Linda Wang <wangwulin@huawei.com>
Diffstat (limited to 'functest/tests/unit/ci')
-rw-r--r-- | functest/tests/unit/ci/test_prepare_env.py | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/functest/tests/unit/ci/test_prepare_env.py b/functest/tests/unit/ci/test_prepare_env.py index 41b3f6a1..540501ff 100644 --- a/functest/tests/unit/ci/test_prepare_env.py +++ b/functest/tests/unit/ci/test_prepare_env.py @@ -236,8 +236,10 @@ class PrepareEnvTesting(unittest.TestCase): @mock.patch('functest.ci.prepare_env.os_utils.get_credentials_for_rally') @mock.patch('functest.ci.prepare_env.logger.info') + @mock.patch('functest.ci.prepare_env.ft_utils.execute_command_raise') @mock.patch('functest.ci.prepare_env.ft_utils.execute_command') - def test_install_rally(self, mock_exec, mock_logger_info, mock_os_utils): + def test_install_rally(self, mock_exec, mock_exec_raise, mock_logger_info, + mock_os_utils): mock_os_utils.return_value = self._get_rally_creds() @@ -252,12 +254,12 @@ class PrepareEnvTesting(unittest.TestCase): cmd = "rally deployment create --file=rally_conf.json --name=" cmd += CONST.rally_deployment_name error_msg = "Problem while creating Rally deployment" - mock_exec.assert_any_call(cmd, error_msg=error_msg) + mock_exec_raise.assert_any_call(cmd, error_msg=error_msg) cmd = "rally deployment check" error_msg = ("OpenStack not responding or " "faulty Rally deployment.") - mock_exec.assert_any_call(cmd, error_msg=error_msg) + mock_exec_raise.assert_any_call(cmd, error_msg=error_msg) cmd = "rally deployment list" error_msg = ("Problem while listing " |