Files
FabledCurator/tests/test_api_showcase.py
T
bvandeusen def967a1a8 refactor(dry-S1): hoist app/client test fixtures into conftest
Removed the app/client fixtures duplicated across 36 test files (two
variants: separate app + client(app), and a self-contained client() that
called create_app inline) and the now-unused create_app imports. Both
fixtures now live once in conftest.py. test_suggestions_bulk keeps its
import (builds the app inline in two tests); test_health drops its local
client + unused pytest_asyncio.

Net -415 lines.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-05-28 11:33:05 -04:00

28 lines
816 B
Python

import pytest
from backend.app.models import ImageRecord
pytestmark = pytest.mark.integration
@pytest.mark.asyncio
async def test_showcase_returns_images(client, db):
for i in range(8):
db.add(ImageRecord(
path=f"/images/sc/{i}.jpg", sha256=f"c{i:063d}",
size_bytes=1, mime="image/jpeg", width=10, height=10,
origin="imported_filesystem", integrity_status="unknown",
))
await db.flush()
await db.commit()
resp = await client.get("/api/showcase?limit=4")
assert resp.status_code == 200
body = await resp.get_json()
assert "images" in body and len(body["images"]) <= 4
@pytest.mark.asyncio
async def test_showcase_rejects_bad_limit(client):
resp = await client.get("/api/showcase?limit=oops")
assert resp.status_code == 400