mirror of
https://github.com/python/cpython.git
synced 2026-01-06 15:32:22 +00:00
bpo-31178: Mock os.waitpid() in test_subprocess (#3896)
Fix test_exception_errpipe_bad_data() and test_exception_errpipe_normal() of test_subprocess: mock os.waitpid() to avoid calling the real os.waitpid(0, 0) which is an unexpected side effect of the test.
This commit is contained in:
parent
c1c47c166b
commit
11045c9d8a
1 changed files with 8 additions and 4 deletions
|
|
@ -1559,8 +1559,10 @@ def proper_error(*args):
|
|||
|
||||
fork_exec.side_effect = proper_error
|
||||
|
||||
with self.assertRaises(IsADirectoryError):
|
||||
self.PopenNoDestructor(["non_existent_command"])
|
||||
with mock.patch("subprocess.os.waitpid",
|
||||
side_effect=ChildProcessError):
|
||||
with self.assertRaises(IsADirectoryError):
|
||||
self.PopenNoDestructor(["non_existent_command"])
|
||||
|
||||
@mock.patch("subprocess._posixsubprocess.fork_exec")
|
||||
def test_exception_errpipe_bad_data(self, fork_exec):
|
||||
|
|
@ -1577,8 +1579,10 @@ def bad_error(*args):
|
|||
|
||||
fork_exec.side_effect = bad_error
|
||||
|
||||
with self.assertRaises(subprocess.SubprocessError) as e:
|
||||
self.PopenNoDestructor(["non_existent_command"])
|
||||
with mock.patch("subprocess.os.waitpid",
|
||||
side_effect=ChildProcessError):
|
||||
with self.assertRaises(subprocess.SubprocessError) as e:
|
||||
self.PopenNoDestructor(["non_existent_command"])
|
||||
|
||||
self.assertIn(repr(error_data), str(e.exception))
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue