我已经尝试了所有我能找到的东西,但我无法让异步测试工作。
我开始RuntimeError: This event loop is already running
运行TestClient
(根据文档这很有意义),但我开始httpx.ConnectError: [Errno 8] nodename nor servname provided, or not known
使用httpx AsyncClient
.
我有一个简单的测试:
@pytest.fixture(scope="module")
async def async_client() -> Generator:
async with AsyncClient(app=app, base_url='http://0.0.0.0') as client:
yield client
@pytest.mark.asyncio@mock.patch('apps.core.views.requests.get', new=mocked_get_request)
async def test_get_non_json_response(async_client: AsyncClient):
response = await async_client.get("/mymedia")
assertEqual(response.json()['error']['message']['message'], 'Not json')
在哪里 /media
:
@app.get('/mymedia')
async def my_media(request: Request, cache: RedisCacheBackend = Depends(redis_cache)):
return await my_media_ep(request, cache=cache)
my_media_ep
是一个带有多个异步 api 调用的长函数。
我也按照Async Tests docs中的建议进行了尝试,但得到了同样的错误。
有什么建议或例子吗?