test(todos): schémas Pydantic + 9 tests d'intégration todos (en échec)

Ajoute les schémas Pydantic TodoCreate/TodoUpdate/PostponeRequest/TodoResponse,
la fixture db_session dans conftest, et 9 tests d'intégration contre PostgreSQL
réel — tous en échec car les endpoints /api/todos/ n'existent pas encore.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-05-24 09:13:58 +02:00
parent 53bb8bd27a
commit 3591972014
3 changed files with 165 additions and 0 deletions
+50
View File
@@ -0,0 +1,50 @@
import uuid
from datetime import datetime
from pydantic import BaseModel, ConfigDict
class TodoCreate(BaseModel):
title: str
body: str | None = None
url: str | None = None
domain: str | None = None
category: str | None = None
tags: list[str] = []
status: str = "pending"
priority: str = "medium"
due_date: datetime | None = None
class TodoUpdate(BaseModel):
title: str | None = None
body: str | None = None
url: str | None = None
domain: str | None = None
category: str | None = None
tags: list[str] | None = None
status: str | None = None
priority: str | None = None
due_date: datetime | None = None
class PostponeRequest(BaseModel):
days: int # 1 ou 7
class TodoResponse(BaseModel):
model_config = ConfigDict(from_attributes=True)
id: uuid.UUID
title: str
body: str | None
url: str | None
domain: str | None
category: str | None
tags: list[str]
status: str
priority: str
due_date: datetime | None
postponed_count: int
created_at: datetime
updated_at: datetime | None
owner_id: uuid.UUID | None
+7
View File
@@ -1,9 +1,16 @@
import pytest
from httpx import AsyncClient, ASGITransport
from app.main import app
from app.core.database import AsyncSessionLocal
@pytest.fixture
async def client():
async with AsyncClient(transport=ASGITransport(app=app), base_url="http://test") as ac:
yield ac
@pytest.fixture
async def db_session():
async with AsyncSessionLocal() as session:
yield session
+108
View File
@@ -0,0 +1,108 @@
import pytest
from sqlalchemy import delete
from app.models.todos import TodoItem
@pytest.fixture(autouse=True)
async def cleanup(db_session):
yield
await db_session.execute(delete(TodoItem).where(TodoItem.title.like("TEST_%")))
await db_session.commit()
async def test_creer_todo(client):
resp = await client.post("/api/todos/", json={
"title": "TEST_tâche simple",
"domain": "informatique",
"priority": "high",
})
assert resp.status_code == 201
data = resp.json()
assert data["title"] == "TEST_tâche simple"
assert data["status"] == "pending"
assert data["postponed_count"] == 0
assert data["tags"] == []
async def test_lister_todos_filtre_status(client):
await client.post("/api/todos/", json={"title": "TEST_en cours", "status": "pending"})
await client.post("/api/todos/", json={"title": "TEST_terminée", "status": "done"})
resp = await client.get("/api/todos/?status=pending")
assert resp.status_code == 200
titres = [t["title"] for t in resp.json()]
assert "TEST_en cours" in titres
assert "TEST_terminée" not in titres
async def test_lister_todos_filtre_domaine(client):
await client.post("/api/todos/", json={"title": "TEST_info", "domain": "informatique"})
await client.post("/api/todos/", json={"title": "TEST_jardin", "domain": "jardin"})
resp = await client.get("/api/todos/?domain=informatique&status=")
assert resp.status_code == 200
titres = [t["title"] for t in resp.json()]
assert "TEST_info" in titres
assert "TEST_jardin" not in titres
async def test_mettre_a_jour_todo(client):
cr = await client.post("/api/todos/", json={"title": "TEST_avant"})
item_id = cr.json()["id"]
resp = await client.patch(f"/api/todos/{item_id}", json={"title": "TEST_après", "status": "done"})
assert resp.status_code == 200
assert resp.json()["title"] == "TEST_après"
assert resp.json()["status"] == "done"
assert resp.json()["updated_at"] is not None
async def test_mettre_a_jour_todo_inexistant(client):
resp = await client.patch(
"/api/todos/00000000-0000-0000-0000-000000000000",
json={"title": "TEST_ghost"},
)
assert resp.status_code == 404
async def test_supprimer_todo(client):
cr = await client.post("/api/todos/", json={"title": "TEST_à supprimer"})
item_id = cr.json()["id"]
resp = await client.delete(f"/api/todos/{item_id}")
assert resp.status_code == 204
resp2 = await client.patch(f"/api/todos/{item_id}", json={"title": "TEST_fantôme"})
assert resp2.status_code == 404
async def test_reporter_todo_1_jour(client):
due = "2026-06-01T10:00:00+00:00"
cr = await client.post("/api/todos/", json={"title": "TEST_reporter", "due_date": due})
item_id = cr.json()["id"]
resp = await client.post(f"/api/todos/{item_id}/postpone", json={"days": 1})
assert resp.status_code == 200
data = resp.json()
assert data["postponed_count"] == 1
assert data["due_date"].startswith("2026-06-02")
async def test_reporter_todo_1_semaine(client):
due = "2026-06-01T10:00:00+00:00"
cr = await client.post("/api/todos/", json={"title": "TEST_reporter7", "due_date": due})
item_id = cr.json()["id"]
resp = await client.post(f"/api/todos/{item_id}/postpone", json={"days": 7})
assert resp.status_code == 200
data = resp.json()
assert data["postponed_count"] == 1
assert data["due_date"].startswith("2026-06-08")
async def test_reporter_jours_invalides(client):
cr = await client.post("/api/todos/", json={"title": "TEST_invalide"})
item_id = cr.json()["id"]
resp = await client.post(f"/api/todos/{item_id}/postpone", json={"days": 3})
assert resp.status_code == 422