diff options
author | Cédric Ollivier <cedric.ollivier@orange.com> | 2018-11-28 22:37:17 +0100 |
---|---|---|
committer | Cédric Ollivier <cedric.ollivier@orange.com> | 2018-12-01 11:36:58 +0100 |
commit | eae8283aaadeb77884406ded028f2e414659c3b3 (patch) | |
tree | e83242479429433f05005dbb7c9e762b44c5b3f7 /xtesting/tests | |
parent | 0afe15823d98871a09ae88840a2d3538137299a8 (diff) |
Set shell=True in subprocess.check_call
It allows running multiple shell instructions (see third).
Change-Id: I132813c51d42f0fb4bc729d315c468d426f2fb3c
Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
(cherry picked from commit f99cef18b6dd3eff6703c4d748fae415fea78ae2)
Diffstat (limited to 'xtesting/tests')
-rw-r--r-- | xtesting/tests/unit/core/test_feature.py | 29 |
1 files changed, 14 insertions, 15 deletions
diff --git a/xtesting/tests/unit/core/test_feature.py b/xtesting/tests/unit/core/test_feature.py index a4ac5af7..47766cdd 100644 --- a/xtesting/tests/unit/core/test_feature.py +++ b/xtesting/tests/unit/core/test_feature.py @@ -10,6 +10,7 @@ # pylint: disable=missing-docstring import logging +import subprocess import unittest import mock @@ -84,33 +85,31 @@ class BashFeatureTesting(FeatureTestingBase): self.feature = feature.BashFeature( project_name=self._project_name, case_name=self._case_name) - @mock.patch('subprocess.Popen') + @mock.patch('subprocess.check_call') def test_run_no_cmd(self, mock_subproc): + delattr(FeatureTesting, "_cmd") self.assertEqual( self.feature.run(), testcase.TestCase.EX_RUN_ERROR) mock_subproc.assert_not_called() - @mock.patch('subprocess.Popen') + @mock.patch('subprocess.check_call', + side_effect=subprocess.CalledProcessError(0, '', '')) def test_run_ko(self, mock_subproc): + setattr(FeatureTesting, "_cmd", "run_bar_tests.py") with mock.patch('six.moves.builtins.open', mock.mock_open()) as mopen: - mock_obj = mock.Mock() - attrs = {'wait.return_value': 1} - mock_obj.configure_mock(**attrs) - - mock_subproc.return_value = mock_obj self._test_run(testcase.TestCase.EX_RUN_ERROR) - mopen.assert_called_once_with(self._output_file, "w+") + mopen.assert_called_once_with(self._output_file, "w+") + mock_subproc.assert_called_once_with( + self._cmd, shell=True, stderr=mock.ANY, stdout=mock.ANY) - @mock.patch('subprocess.Popen') + @mock.patch('subprocess.check_call') def test_run(self, mock_subproc): + setattr(FeatureTesting, "_cmd", "run_bar_tests.py") with mock.patch('six.moves.builtins.open', mock.mock_open()) as mopen: - mock_obj = mock.Mock() - attrs = {'wait.return_value': 0} - mock_obj.configure_mock(**attrs) - - mock_subproc.return_value = mock_obj self._test_run(testcase.TestCase.EX_OK) - mopen.assert_called_once_with(self._output_file, "w+") + mopen.assert_called_once_with(self._output_file, "w+") + mock_subproc.assert_called_once_with( + self._cmd, shell=True, stderr=mock.ANY, stdout=mock.ANY) if __name__ == "__main__": |