summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_asyncio/test_events.py
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2014-12-04 22:07:47 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2014-12-04 22:07:47 (GMT)
commite80bf0d4a996b3ecda2c2f3cbab10037b9fdcd5e (patch)
tree44657f6e8bee097da3fa5c79db0092a0df6858a4 /Lib/test/test_asyncio/test_events.py
parentdd8224e6a483a45d7cf2e7be0fa7d818a3f04c80 (diff)
downloadcpython-e80bf0d4a996b3ecda2c2f3cbab10037b9fdcd5e.zip
cpython-e80bf0d4a996b3ecda2c2f3cbab10037b9fdcd5e.tar.gz
cpython-e80bf0d4a996b3ecda2c2f3cbab10037b9fdcd5e.tar.bz2
Closes #22922: More EventLoop methods fail if the loop is closed. Initial patch
written by Torsten Landschoff. create_task(), call_at(), call_soon(), call_soon_threadsafe() and run_in_executor() now raise an error if the event loop is closed.
Diffstat (limited to 'Lib/test/test_asyncio/test_events.py')
-rw-r--r--Lib/test/test_asyncio/test_events.py35
1 files changed, 34 insertions, 1 deletions
diff --git a/Lib/test/test_asyncio/test_events.py b/Lib/test/test_asyncio/test_events.py
index ea657fd..6644fbe 100644
--- a/Lib/test/test_asyncio/test_events.py
+++ b/Lib/test/test_asyncio/test_events.py
@@ -226,7 +226,8 @@ class EventLoopTestsMixin:
def tearDown(self):
# just in case if we have transport close callbacks
- test_utils.run_briefly(self.loop)
+ if not self.loop.is_closed():
+ test_utils.run_briefly(self.loop)
self.loop.close()
gc.collect()
@@ -1434,6 +1435,38 @@ class EventLoopTestsMixin:
with self.assertRaises(RuntimeError):
self.loop.run_until_complete(coro)
+ def test_close(self):
+ self.loop.close()
+
+ @asyncio.coroutine
+ def test():
+ pass
+
+ func = lambda: False
+ coro = test()
+ self.addCleanup(coro.close)
+
+ # operation blocked when the loop is closed
+ with self.assertRaises(RuntimeError):
+ self.loop.run_forever()
+ with self.assertRaises(RuntimeError):
+ fut = asyncio.Future(loop=self.loop)
+ self.loop.run_until_complete(fut)
+ with self.assertRaises(RuntimeError):
+ self.loop.call_soon(func)
+ with self.assertRaises(RuntimeError):
+ self.loop.call_soon_threadsafe(func)
+ with self.assertRaises(RuntimeError):
+ self.loop.call_later(1.0, func)
+ with self.assertRaises(RuntimeError):
+ self.loop.call_at(self.loop.time() + .0, func)
+ with self.assertRaises(RuntimeError):
+ self.loop.run_in_executor(None, func)
+ with self.assertRaises(RuntimeError):
+ self.loop.create_task(coro)
+ with self.assertRaises(RuntimeError):
+ self.loop.add_signal_handler(signal.SIGTERM, func)
+
class SubprocessTestsMixin: