mirror of
https://github.com/ets-labs/python-dependency-injector.git
synced 2024-12-01 14:04:01 +03:00
Make cosmetic fixes to FastAPI + Redis example
This commit is contained in:
parent
a782c6e1bc
commit
cd02128823
|
@ -10,4 +10,3 @@ async def init_redis_pool(host: str, password: str) -> AsyncIterator[Redis]:
|
||||||
yield pool
|
yield pool
|
||||||
pool.close()
|
pool.close()
|
||||||
await pool.wait_closed()
|
await pool.wait_closed()
|
||||||
|
|
||||||
|
|
|
@ -1,25 +0,0 @@
|
||||||
from unittest import mock
|
|
||||||
|
|
||||||
import pytest
|
|
||||||
from httpx import AsyncClient
|
|
||||||
|
|
||||||
from fastapi_redis_example import app, container, Service
|
|
||||||
|
|
||||||
|
|
||||||
@pytest.fixture
|
|
||||||
def client(event_loop):
|
|
||||||
client = AsyncClient(app=app, base_url='http://test')
|
|
||||||
yield client
|
|
||||||
event_loop.run_until_complete(client.aclose())
|
|
||||||
|
|
||||||
|
|
||||||
@pytest.mark.asyncio
|
|
||||||
async def test_index(client):
|
|
||||||
service_mock = mock.AsyncMock(spec=Service)
|
|
||||||
service_mock.process.return_value = 'Foo'
|
|
||||||
|
|
||||||
with container.service.override(service_mock):
|
|
||||||
response = await client.get('/')
|
|
||||||
|
|
||||||
assert response.status_code == 200
|
|
||||||
assert response.json() == {'result': 'Foo'}
|
|
Loading…
Reference in New Issue
Block a user