summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2022-11-24 15:32:58 (GMT)
committerGitHub <noreply@github.com>2022-11-24 15:32:58 (GMT)
commit5d09d11aa0b89aeba187f4f520728ccaf4fc5ac1 (patch)
treef650a356b90872045f7548b4f20928c79fbfe968
parent8dbe08eb7c807f484fe9870f5b7f5ae2881fd966 (diff)
downloadcpython-5d09d11aa0b89aeba187f4f520728ccaf4fc5ac1.zip
cpython-5d09d11aa0b89aeba187f4f520728ccaf4fc5ac1.tar.gz
cpython-5d09d11aa0b89aeba187f4f520728ccaf4fc5ac1.tar.bz2
GH-79033: Fix asyncio.Server.wait_closed() (#98582)
It was a no-op when used as recommended (after close()). I had to debug one test (test__sock_sendfile_native_failure) -- the cleanup sequence for the test fixture was botched. Hopefully that's not a portend of problems in user code -- this has never worked so people may well be doing this wrong. :-( Co-authored-by: kumar aditya
-rw-r--r--Lib/asyncio/base_events.py2
-rw-r--r--Lib/test/test_asyncio/test_base_events.py2
-rw-r--r--Lib/test/test_asyncio/test_server.py27
-rw-r--r--Misc/NEWS.d/next/Library/2022-11-22-19-31-26.gh-issue-79033.MW6kHq.rst1
4 files changed, 30 insertions, 2 deletions
diff --git a/Lib/asyncio/base_events.py b/Lib/asyncio/base_events.py
index 91d32e3..f2f9375 100644
--- a/Lib/asyncio/base_events.py
+++ b/Lib/asyncio/base_events.py
@@ -377,7 +377,7 @@ class Server(events.AbstractServer):
self._serving_forever_fut = None
async def wait_closed(self):
- if self._sockets is None or self._waiters is None:
+ if self._waiters is None or self._active_count == 0:
return
waiter = self._loop.create_future()
self._waiters.append(waiter)
diff --git a/Lib/test/test_asyncio/test_base_events.py b/Lib/test/test_asyncio/test_base_events.py
index 2dcb20c..7421d18 100644
--- a/Lib/test/test_asyncio/test_base_events.py
+++ b/Lib/test/test_asyncio/test_base_events.py
@@ -2052,11 +2052,11 @@ class BaseLoopSockSendfileTests(test_utils.TestCase):
def cleanup():
server.close()
- self.run_loop(server.wait_closed())
sock.close()
if proto.transport is not None:
proto.transport.close()
self.run_loop(proto.wait_closed())
+ self.run_loop(server.wait_closed())
self.addCleanup(cleanup)
diff --git a/Lib/test/test_asyncio/test_server.py b/Lib/test/test_asyncio/test_server.py
index 860d62d..06d8b60 100644
--- a/Lib/test/test_asyncio/test_server.py
+++ b/Lib/test/test_asyncio/test_server.py
@@ -120,6 +120,33 @@ class SelectorStartServerTests(BaseStartServer, unittest.TestCase):
self.loop.run_until_complete(srv.serve_forever())
+class TestServer2(unittest.IsolatedAsyncioTestCase):
+
+ async def test_wait_closed(self):
+ async def serve(*args):
+ pass
+
+ srv = await asyncio.start_server(serve, socket_helper.HOSTv4, 0)
+
+ # active count = 0
+ task1 = asyncio.create_task(srv.wait_closed())
+ await asyncio.sleep(0)
+ self.assertTrue(task1.done())
+
+ # active count != 0
+ srv._attach()
+ task2 = asyncio.create_task(srv.wait_closed())
+ await asyncio.sleep(0)
+ self.assertFalse(task2.done())
+
+ srv.close()
+ await asyncio.sleep(0)
+ self.assertFalse(task2.done())
+
+ srv._detach()
+ await task2
+
+
@unittest.skipUnless(hasattr(asyncio, 'ProactorEventLoop'), 'Windows only')
class ProactorStartServerTests(BaseStartServer, unittest.TestCase):
diff --git a/Misc/NEWS.d/next/Library/2022-11-22-19-31-26.gh-issue-79033.MW6kHq.rst b/Misc/NEWS.d/next/Library/2022-11-22-19-31-26.gh-issue-79033.MW6kHq.rst
new file mode 100644
index 0000000..4b12fd9
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2022-11-22-19-31-26.gh-issue-79033.MW6kHq.rst
@@ -0,0 +1 @@
+Fix :func:`asyncio.Server.wait_closed` to actually do what the docs promise -- wait for all existing connections to complete, after closing the server.