diff options
author | Jesus Cea <jcea@jcea.es> | 2011-09-21 01:56:05 (GMT) |
---|---|---|
committer | Jesus Cea <jcea@jcea.es> | 2011-09-21 01:56:05 (GMT) |
commit | 41c98a3207db26bd28c92e0c5df0a4849b3b7d83 (patch) | |
tree | bfa859562727a8a5e94fb40cb50ed8363ae0eb9d /Lib | |
parent | c78fb33f81819cd8c7c1faac352b0b669703425e (diff) | |
parent | 4507e6456e6170f92e14d7ecb68f2617a3b48412 (diff) | |
download | cpython-41c98a3207db26bd28c92e0c5df0a4849b3b7d83.zip cpython-41c98a3207db26bd28c92e0c5df0a4849b3b7d83.tar.gz cpython-41c98a3207db26bd28c92e0c5df0a4849b3b7d83.tar.bz2 |
Close #13022: _multiprocessing.recvfd() doesn't check that file descriptor was actually received
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/test/test_multiprocessing.py | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/Lib/test/test_multiprocessing.py b/Lib/test/test_multiprocessing.py index c33fa7b..b211861 100644 --- a/Lib/test/test_multiprocessing.py +++ b/Lib/test/test_multiprocessing.py @@ -1689,6 +1689,23 @@ class _TestConnection(BaseTestCase): with open(test.support.TESTFN, "rb") as f: self.assertEqual(f.read(), b"bar") + @classmethod + def _send_data_without_fd(self, conn): + os.write(conn.fileno(), b"\0") + + @unittest.skipIf(sys.platform == "win32", "doesn't make sense on Windows") + def test_missing_fd_transfer(self): + # Check that exception is raised when received data is not + # accompanied by a file descriptor in ancillary data. + if self.TYPE != 'processes': + self.skipTest("only makes sense with processes") + conn, child_conn = self.Pipe(duplex=True) + + p = self.Process(target=self._send_data_without_fd, args=(child_conn,)) + p.daemon = True + p.start() + self.assertRaises(RuntimeError, reduction.recv_handle, conn) + p.join() class _TestListenerClient(BaseTestCase): |