Files
FabledCurator/tests/test_api_aliases.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

40 lines
1.0 KiB
Python

import pytest
from backend.app.models import TagKind
from backend.app.services.tag_service import TagService
pytestmark = pytest.mark.integration
@pytest.mark.asyncio
async def test_create_list_delete(client, db):
tag = await TagService(db).find_or_create("Canon", TagKind.character)
await db.commit()
resp = await client.post(
"/api/aliases",
json={
"alias_string": "model_name",
"alias_category": "character",
"canonical_tag_id": tag.id,
},
)
assert resp.status_code == 201
resp = await client.get("/api/aliases")
body = await resp.get_json()
assert any(
a["alias_string"] == "model_name"
and a["canonical_tag_name"] == "Canon"
for a in body
)
resp = await client.delete("/api/aliases/model_name/character")
assert resp.status_code == 204
@pytest.mark.asyncio
async def test_create_requires_fields(client):
resp = await client.post("/api/aliases", json={"alias_string": "x"})
assert resp.status_code == 400