Skip to content

[asyncio] bpo-30423: add regression test for orphan future causes "RuntimeError: Event loop stopped before Future completed." #3295

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 6 commits into from
Nov 1, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions Lib/test/test_asyncio/test_base_events.py
Original file line number Diff line number Diff line change
Expand Up @@ -529,6 +529,22 @@ def test_run_until_complete_loop(self):
self.assertRaises(ValueError,
other_loop.run_until_complete, task)

def test_run_until_complete_loop_orphan_future_close_loop(self):
async def foo(sec=0):
await asyncio.sleep(sec)

self.loop.close()
loop = asyncio.new_event_loop()
asyncio.set_event_loop(loop)
try:
with mock.patch('asyncio.base_events.BaseEventLoop.run_forever',
side_effect=Exception):
loop.run_until_complete(foo())
except:
pass
loop.run_until_complete(foo(0.1))
loop.close()

def test_subprocess_exec_invalid_args(self):
args = [sys.executable, '-c', 'pass']

Expand Down