같은 상품 반복 검색 시 최저가를 스냅샷으로 적재 → 네이버/쿠팡/최종 3개 선 그래프.
배치 아님(조회된 상품만, 실제 검색 시각에 기록) — 트래픽/리소스 절약.
- price_history 테이블: product_code·triggered_at(X축)·naver/coupang/final 최저가+상세·outcome
- crud/price_history: record() + list_by_product(시각 오름차순)
- handler: AI 매칭 후 소스별 min + 전체 min 스냅샷 기록(_price_snapshot).
found/not_found 기록, 네거티브 캐시 히트·기술실패는 미기록
- API: GET /v1/lps/products/{product_code}/history → 그래프 데이터(시각 오름차순)
- tests: 스냅샷 계산/기록·조회/핸들러 기록규칙/API → 전체 54/54
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
80 lines
3.3 KiB
Python
80 lines
3.3 KiB
Python
"""LPS API 라우터 테스트 — 검색 적재/중복/상태조회/큐 통계 (ASGI 클라이언트 + 실 lps_db)."""
|
|
|
|
import pytest_asyncio
|
|
from sqlalchemy import text
|
|
|
|
|
|
@pytest_asyncio.fixture
|
|
async def clean_jobs(db_engine):
|
|
async with db_engine.begin() as conn:
|
|
await conn.execute(text("TRUNCATE job"))
|
|
|
|
|
|
async def test_search_enqueues_jobs(client, clean_jobs):
|
|
body = {"data": [
|
|
{"product_code": "P1", "product_name": "커피", "job_type": "new"},
|
|
{"product_code": "P2", "product_name": "무선마우스", "specification": "M170"},
|
|
]}
|
|
r = await client.post("/v1/lps/search", json=body)
|
|
assert r.status_code == 200
|
|
j = r.json()
|
|
assert j["accepted"] == 2
|
|
assert {i["product_code"] for i in j["items"]} == {"P1", "P2"}
|
|
assert all(i.get("job_id") for i in j["items"])
|
|
|
|
|
|
async def test_search_dedupes_active_product(client, clean_jobs):
|
|
body = {"data": [{"product_code": "P1", "product_name": "커피", "job_type": "new"}]}
|
|
await client.post("/v1/lps/search", json=body)
|
|
r2 = await client.post("/v1/lps/search", json=body) # 같은 product_code 재요청
|
|
item = r2.json()["items"][0]
|
|
assert item["duplicated"] is True
|
|
assert "job_id" not in item # None → RemoveNoneResponse 로 제거됨
|
|
assert r2.json()["accepted"] == 0
|
|
|
|
|
|
async def test_job_status_flow(client, clean_jobs):
|
|
jid = (await client.post("/v1/lps/search", json={"data": [{"product_code": "P9", "product_name": "커피"}]})).json()["items"][0]["job_id"]
|
|
r = await client.get(f"/v1/lps/jobs/{jid}")
|
|
body = r.json()
|
|
assert body["status"] == "PENDING" and body["attempts"] == 0
|
|
assert body["result"]["success"] is True
|
|
|
|
|
|
async def test_job_status_not_found(client, clean_jobs):
|
|
# 존재하지 않는(유효 UUID) 잡
|
|
r = await client.get("/v1/lps/jobs/00000000-0000-0000-0000-000000000000")
|
|
assert r.json()["result"]["success"] is False
|
|
assert r.json()["result"]["desc"] == "LPS_JOB_NOT_FOUND"
|
|
# 잘못된 형식의 id 도 not-found 처리
|
|
r2 = await client.get("/v1/lps/jobs/not-a-uuid")
|
|
assert r2.json()["result"]["desc"] == "LPS_JOB_NOT_FOUND"
|
|
|
|
|
|
async def test_price_history_endpoint(client, db_engine):
|
|
from crud.price_history import PriceHistory
|
|
async with db_engine.begin() as conn:
|
|
await conn.execute(text("TRUNCATE price_history"))
|
|
ph = PriceHistory()
|
|
await ph.record({"product_code": "GRAPH1", "outcome": "found", "final_lowest": 2500,
|
|
"final_source": "naver", "naver_lowest": 2500, "coupang_lowest": 2700, "matched_count": 2})
|
|
|
|
r = await client.get("/v1/lps/products/GRAPH1/history")
|
|
assert r.status_code == 200
|
|
body = r.json()
|
|
assert body["product_code"] == "GRAPH1"
|
|
assert len(body["points"]) == 1
|
|
pt = body["points"][0]
|
|
assert pt["final"] == 2500 and pt["naver"] == 2500 and pt["coupang"] == 2700 and pt["final_source"] == "naver"
|
|
assert "triggered_at" in pt
|
|
|
|
|
|
async def test_queue_stats(client, clean_jobs):
|
|
await client.post("/v1/lps/search", json={"data": [
|
|
{"product_code": "A", "product_name": "x"},
|
|
{"product_code": "B", "product_name": "y"},
|
|
]})
|
|
r = await client.get("/v1/lps/queue/stats")
|
|
counts = r.json()["counts"]
|
|
assert counts["PENDING"] == 2 and counts["DONE"] == 0 and counts["DEAD"] == 0
|