mirror of
https://github.com/python/cpython.git
synced 2025-09-27 10:50:04 +00:00
Issue #21119: asyncio now closes sockets on errors
Fix ResourceWarning: create_connection(), create_datagram_endpoint() and create_unix_server() methods of event loop now close the newly created socket on error.
This commit is contained in:
parent
b9b965f6dd
commit
223a624158
4 changed files with 50 additions and 0 deletions
|
@ -412,6 +412,10 @@ class BaseEventLoop(events.AbstractEventLoop):
|
||||||
if sock is not None:
|
if sock is not None:
|
||||||
sock.close()
|
sock.close()
|
||||||
exceptions.append(exc)
|
exceptions.append(exc)
|
||||||
|
except:
|
||||||
|
if sock is not None:
|
||||||
|
sock.close()
|
||||||
|
raise
|
||||||
else:
|
else:
|
||||||
break
|
break
|
||||||
else:
|
else:
|
||||||
|
@ -512,6 +516,10 @@ class BaseEventLoop(events.AbstractEventLoop):
|
||||||
if sock is not None:
|
if sock is not None:
|
||||||
sock.close()
|
sock.close()
|
||||||
exceptions.append(exc)
|
exceptions.append(exc)
|
||||||
|
except:
|
||||||
|
if sock is not None:
|
||||||
|
sock.close()
|
||||||
|
raise
|
||||||
else:
|
else:
|
||||||
break
|
break
|
||||||
else:
|
else:
|
||||||
|
|
|
@ -223,6 +223,9 @@ class _UnixSelectorEventLoop(selector_events.BaseSelectorEventLoop):
|
||||||
raise OSError(errno.EADDRINUSE, msg) from None
|
raise OSError(errno.EADDRINUSE, msg) from None
|
||||||
else:
|
else:
|
||||||
raise
|
raise
|
||||||
|
except:
|
||||||
|
sock.close()
|
||||||
|
raise
|
||||||
else:
|
else:
|
||||||
if sock is None:
|
if sock is None:
|
||||||
raise ValueError(
|
raise ValueError(
|
||||||
|
|
|
@ -583,6 +583,27 @@ class BaseEventLoopWithSelectorTests(unittest.TestCase):
|
||||||
|
|
||||||
self.assertEqual(str(cm.exception), 'Multiple exceptions: err1, err2')
|
self.assertEqual(str(cm.exception), 'Multiple exceptions: err1, err2')
|
||||||
|
|
||||||
|
@mock.patch('asyncio.base_events.socket')
|
||||||
|
def test_create_connection_timeout(self, m_socket):
|
||||||
|
# Ensure that the socket is closed on timeout
|
||||||
|
sock = mock.Mock()
|
||||||
|
m_socket.socket.return_value = sock
|
||||||
|
|
||||||
|
def getaddrinfo(*args, **kw):
|
||||||
|
fut = asyncio.Future(loop=self.loop)
|
||||||
|
addr = (socket.AF_INET, socket.SOCK_STREAM, 0, '',
|
||||||
|
('127.0.0.1', 80))
|
||||||
|
fut.set_result([addr])
|
||||||
|
return fut
|
||||||
|
self.loop.getaddrinfo = getaddrinfo
|
||||||
|
|
||||||
|
with mock.patch.object(self.loop, 'sock_connect',
|
||||||
|
side_effect=asyncio.TimeoutError):
|
||||||
|
coro = self.loop.create_connection(MyProto, '127.0.0.1', 80)
|
||||||
|
with self.assertRaises(asyncio.TimeoutError) as cm:
|
||||||
|
self.loop.run_until_complete(coro)
|
||||||
|
self.assertTrue(sock.close.called)
|
||||||
|
|
||||||
def test_create_connection_host_port_sock(self):
|
def test_create_connection_host_port_sock(self):
|
||||||
coro = self.loop.create_connection(
|
coro = self.loop.create_connection(
|
||||||
MyProto, 'example.com', 80, sock=object())
|
MyProto, 'example.com', 80, sock=object())
|
||||||
|
|
|
@ -256,6 +256,24 @@ class SelectorEventLoopUnixSocketTests(unittest.TestCase):
|
||||||
'A UNIX Domain Socket was expected'):
|
'A UNIX Domain Socket was expected'):
|
||||||
self.loop.run_until_complete(coro)
|
self.loop.run_until_complete(coro)
|
||||||
|
|
||||||
|
@mock.patch('asyncio.unix_events.socket')
|
||||||
|
def test_create_unix_server_bind_error(self, m_socket):
|
||||||
|
# Ensure that the socket is closed on any bind error
|
||||||
|
sock = mock.Mock()
|
||||||
|
m_socket.socket.return_value = sock
|
||||||
|
|
||||||
|
sock.bind.side_effect = OSError
|
||||||
|
coro = self.loop.create_unix_server(lambda: None, path="/test")
|
||||||
|
with self.assertRaises(OSError):
|
||||||
|
self.loop.run_until_complete(coro)
|
||||||
|
self.assertTrue(sock.close.called)
|
||||||
|
|
||||||
|
sock.bind.side_effect = MemoryError
|
||||||
|
coro = self.loop.create_unix_server(lambda: None, path="/test")
|
||||||
|
with self.assertRaises(MemoryError):
|
||||||
|
self.loop.run_until_complete(coro)
|
||||||
|
self.assertTrue(sock.close.called)
|
||||||
|
|
||||||
def test_create_unix_connection_path_sock(self):
|
def test_create_unix_connection_path_sock(self):
|
||||||
coro = self.loop.create_unix_connection(
|
coro = self.loop.create_unix_connection(
|
||||||
lambda: None, '/dev/null', sock=object())
|
lambda: None, '/dev/null', sock=object())
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue