microblog.pub/tests/conftest.py

37 lines
879 B
Python
Raw Normal View History

2022-06-22 20:11:22 +02:00
from typing import Generator
import pytest
from fastapi.testclient import TestClient
from app.database import Base
2022-06-29 20:43:17 +02:00
from app.database import async_engine
from app.database import async_session
2022-06-22 20:11:22 +02:00
from app.database import engine
from app.main import app
2022-07-24 20:27:58 +02:00
from tests.factories import _Session
2022-06-22 20:11:22 +02:00
2022-06-29 20:43:17 +02: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 20:11:22 +02:00
@pytest.fixture
def db() -> Generator:
Base.metadata.create_all(bind=engine)
try:
2022-07-24 20:27:58 +02:00
yield _Session
2022-07-10 15:29:51 +02:00
finally:
2022-07-24 20:27:58 +02:00
Base.metadata.drop_all(bind=engine)
2022-06-22 20:11:22 +02:00
@pytest.fixture
2022-07-24 20:27:58 +02:00
def client(db) -> Generator:
2022-06-22 20:11:22 +02:00
with TestClient(app) as c:
yield c