add asyncio exception handler test

This commit is contained in:
Maximilian Hils 2022-03-15 19:59:51 +01:00
parent 5a4dbffbae
commit e22f8db526

View File

@ -1 +1,16 @@
# TODO: write tests
import asyncio
from mitmproxy.test.taddons import RecordingMaster
async def err():
raise RuntimeError
async def test_exception_handler():
m = RecordingMaster(None)
running = asyncio.create_task(m.run())
asyncio.create_task(err())
await m.await_log("Traceback", level="error")
m.shutdown()
await running