microblog.pub/tests/conftest.py

37 lines
879 B
Python
Raw Normal View History

2022-06-22 13:11:22 -05:00
from typing import Generator
import pytest
from fastapi.testclient import TestClient
from app.database import Base
2022-06-29 13:43:17 -05:00
from app.database import async_engine
from app.database import async_session
2022-06-22 13:11:22 -05:00
from app.database import engine
from app.main import app
2022-07-24 13:27:58 -05:00
from tests.factories import _Session
2022-06-22 13:11:22 -05:00
2022-06-29 13:43:17 -05:00
@pytest.fixture
async def async_db_session():
async with async_session() as session:
async with async_engine.begin() as conn:
await conn.run_sync(Base.metadata.create_all)
yield session
async with async_engine.begin() as conn:
await conn.run_sync(Base.metadata.drop_all)
2022-06-22 13:11:22 -05:00
@pytest.fixture
def db() -> Generator:
Base.metadata.create_all(bind=engine)
try:
2022-07-24 13:27:58 -05:00
yield _Session
2022-07-10 08:29:51 -05:00
finally:
2022-07-24 13:27:58 -05:00
Base.metadata.drop_all(bind=engine)
2022-06-22 13:11:22 -05:00
@pytest.fixture
2022-07-24 13:27:58 -05:00
def client(db) -> Generator:
2022-06-22 13:11:22 -05:00
with TestClient(app) as c:
yield c