summaryrefslogtreecommitdiffstats
path: root/Lib/test
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2014-01-23 16:40:59 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2014-01-23 16:40:59 (GMT)
commit421e49b5c15574264dadbf5f4020870ec0c78f51 (patch)
treeff8d643ab98377b7071b9ab02f12c2273354a738 /Lib/test
parent183e3477968c5b1b003fa18926fbbca7ab96ac36 (diff)
downloadcpython-421e49b5c15574264dadbf5f4020870ec0c78f51.zip
cpython-421e49b5c15574264dadbf5f4020870ec0c78f51.tar.gz
cpython-421e49b5c15574264dadbf5f4020870ec0c78f51.tar.bz2
asyncio: wait_for() now cancels the future on timeout. Patch written by Gustavo
Carneiro.
Diffstat (limited to 'Lib/test')
-rw-r--r--Lib/test/test_asyncio/test_tasks.py29
1 files changed, 14 insertions, 15 deletions
diff --git a/Lib/test/test_asyncio/test_tasks.py b/Lib/test/test_asyncio/test_tasks.py
index 79a25d2..3d08ad8 100644
--- a/Lib/test/test_asyncio/test_tasks.py
+++ b/Lib/test/test_asyncio/test_tasks.py
@@ -355,30 +355,32 @@ class TaskTests(unittest.TestCase):
when = yield 0
self.assertAlmostEqual(0.1, when)
when = yield 0.1
- self.assertAlmostEqual(0.4, when)
- yield 0.1
loop = test_utils.TestLoop(gen)
self.addCleanup(loop.close)
+ foo_running = None
+
@tasks.coroutine
def foo():
- yield from tasks.sleep(0.2, loop=loop)
+ nonlocal foo_running
+ foo_running = True
+ try:
+ yield from tasks.sleep(0.2, loop=loop)
+ finally:
+ foo_running = False
return 'done'
fut = tasks.Task(foo(), loop=loop)
with self.assertRaises(futures.TimeoutError):
loop.run_until_complete(tasks.wait_for(fut, 0.1, loop=loop))
-
- self.assertFalse(fut.done())
+ self.assertTrue(fut.done())
+ # it should have been cancelled due to the timeout
+ self.assertTrue(fut.cancelled())
self.assertAlmostEqual(0.1, loop.time())
+ self.assertEqual(foo_running, False)
- # wait for result
- res = loop.run_until_complete(
- tasks.wait_for(fut, 0.3, loop=loop))
- self.assertEqual(res, 'done')
- self.assertAlmostEqual(0.2, loop.time())
def test_wait_for_with_global_loop(self):
@@ -406,11 +408,8 @@ class TaskTests(unittest.TestCase):
events.set_event_loop(None)
self.assertAlmostEqual(0.01, loop.time())
- self.assertFalse(fut.done())
-
- # move forward to close generator
- loop.advance_time(10)
- loop.run_until_complete(fut)
+ self.assertTrue(fut.done())
+ self.assertTrue(fut.cancelled())
def test_wait(self):