def967a1a8
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>
58 lines
1.7 KiB
Python
58 lines
1.7 KiB
Python
from datetime import UTC, datetime, timedelta
|
|
|
|
import pytest
|
|
|
|
from backend.app.models import Artist, ImageRecord, Source
|
|
|
|
pytestmark = pytest.mark.integration
|
|
|
|
|
|
async def _img(db, n):
|
|
rec = ImageRecord(
|
|
path=f"/images/ap/{n}.jpg", sha256=f"ap{n:062d}",
|
|
size_bytes=1, mime="image/jpeg", width=1, height=1,
|
|
origin="imported_filesystem", integrity_status="unknown",
|
|
)
|
|
rec.created_at = datetime.now(UTC) - timedelta(minutes=n)
|
|
db.add(rec)
|
|
await db.flush()
|
|
return rec
|
|
|
|
|
|
async def _artist_source(db, name, slug):
|
|
a = Artist(name=name, slug=slug)
|
|
db.add(a)
|
|
await db.flush()
|
|
s = Source(artist_id=a.id, platform="patreon",
|
|
url=f"https://patreon.test/{slug}")
|
|
db.add(s)
|
|
await db.flush()
|
|
return a, s
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_scroll_artist_null_when_none(client, db):
|
|
rec = await _img(db, 1)
|
|
await db.commit()
|
|
resp = await client.get("/api/gallery/scroll?limit=10")
|
|
body = await resp.get_json()
|
|
item = next(i for i in body["images"] if i["id"] == rec.id)
|
|
assert item["artist"] is None
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_scroll_artist_via_artist_id(client, db):
|
|
# FC-2d-vii-c: the canonical resolution path is image_record.artist_id
|
|
# (covers folder-style images with no provenance too).
|
|
rec = await _img(db, 1)
|
|
a, _ = await _artist_source(db, "Folder", "folder")
|
|
rec.artist_id = a.id
|
|
await db.flush()
|
|
await db.commit()
|
|
|
|
resp = await client.get("/api/gallery/scroll?limit=10")
|
|
assert resp.status_code == 200
|
|
body = await resp.get_json()
|
|
item = next(i for i in body["images"] if i["id"] == rec.id)
|
|
assert item["artist"] == {"name": "Folder", "slug": "folder"}
|