Spaces:
Running
Running
File size: 13,219 Bytes
d5a6f3e 61d5f0d d5a6f3e 7106701 d5a6f3e 7106701 d5a6f3e 61d5f0d d5a6f3e 61d5f0d d5a6f3e 61d5f0d 3f58d41 61d5f0d 3f58d41 61d5f0d 3f58d41 61d5f0d 3f58d41 61d5f0d 3f58d41 61d5f0d d5a6f3e 61d5f0d d5a6f3e 61d5f0d d5a6f3e | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 | """
Integration tests: full HTTP request/response cycle via FastAPI TestClient.
Tests the complete pipeline: search β save β recommendations.
"""
import pytest
from unittest.mock import AsyncMock
from fastapi.testclient import TestClient
@pytest.fixture
def client(tmp_path, monkeypatch):
import app.config as cfg
import app.db as db_mod
db_path = str(tmp_path / "test.db")
monkeypatch.setattr(cfg, "DB_PATH", db_path)
monkeypatch.setattr(db_mod, "DB_PATH", db_path)
# Clear the user_state in-process cache between tests
import app.user_state as us
us._cache.clear()
# Clear qdrant client cache
from app.qdrant_svc import _client
_client.cache_clear()
from app.main import app
import asyncio
asyncio.get_event_loop().run_until_complete(db_mod.init_db())
with TestClient(app, raise_server_exceptions=True) as c:
yield c
# ββ Home page βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def test_home_returns_200(client):
"""New users are redirected to onboarding; following the redirect should show ResearchIT."""
resp = client.get("/", follow_redirects=False)
# Phase 5: new users are redirected to /onboarding
assert resp.status_code in (200, 302)
if resp.status_code == 302:
assert "/onboarding" in resp.headers.get("location", "")
# Follow the redirect
resp2 = client.get("/onboarding")
assert resp2.status_code == 200
assert "ResearchIT" in resp2.text
def test_home_sets_user_cookie(client):
resp = client.get("/", follow_redirects=True)
assert "arxiv_user_id" in resp.cookies
# ββ Search ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def test_search_empty_query_returns_page(client):
resp = client.get("/search?q=")
assert resp.status_code == 200
def test_search_htmx_returns_partial(client):
"""With HX-Request header, /search should return partial HTML (no <html> tag)."""
resp = client.get(
"/search?q=transformer+attention",
headers={"HX-Request": "true"},
)
assert resp.status_code == 200
# Partial should NOT contain the full base layout
assert "<html" not in resp.text.lower()
def test_search_real_query_returns_papers(client):
"""Real search against arXiv API β should find results."""
resp = client.get("/search?q=transformer+attention+mechanism")
assert resp.status_code == 200
# Should contain at least one arxiv ID pattern in the response
assert "arxiv.org/abs/" in resp.text
# ββ Save / not-interested events ββββββββββββββββββββββββββββββββββββββββββββββ
def test_save_paper_logs_interaction(client, tmp_path, monkeypatch):
import app.config as cfg
import app.db as db_mod
db_path = str(tmp_path / "test.db")
# Use cookie from previous request for consistent user_id
client.get("/") # sets cookie
user_id = client.cookies.get("arxiv_user_id")
resp = client.post(
"/api/papers/1706.03762/save",
data={"source": "search", "position": "0"},
)
assert resp.status_code == 200
# Response should contain the "Saved" state button
assert "Saved" in resp.text or "saved" in resp.text.lower()
def test_not_interested_returns_empty(client):
client.get("/")
resp = client.post(
"/api/papers/1706.03762/not-interested",
data={"source": "search"},
)
assert resp.status_code == 200
# Empty response so HTMX removes the card
assert resp.text.strip() == ""
def test_save_updates_user_state(client):
import app.user_state as us
client.get("/")
user_id = client.cookies.get("arxiv_user_id")
client.post("/api/papers/1706.03762/save", data={"source": "search"})
state = us.get_user_state(user_id)
assert "1706.03762" in state.positive_list
def test_not_interested_updates_user_state(client):
import app.user_state as us
client.get("/")
user_id = client.cookies.get("arxiv_user_id")
client.post("/api/papers/2302.11382/not-interested", data={"source": "search"})
state = us.get_user_state(user_id)
assert "2302.11382" in state.negative_list
# ββ Recommendations βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def test_recommendations_empty_for_new_user(client):
client.get("/")
resp = client.get("/api/recommendations")
assert resp.status_code == 200
# Should show empty state message
assert "No recommendations" in resp.text or "Save" in resp.text
def test_recommendations_after_save(client, monkeypatch):
"""
After saving a real paper, the recommendations endpoint should
return something (possibly recs or empty-recs if Qdrant lookup is slow).
"""
import app.qdrant_svc as qs
import app.db as db_mod
# Pre-seed the Qdrant map so recommend() can find the paper
import asyncio
asyncio.get_event_loop().run_until_complete(
db_mod.save_qdrant_id("0704.0002", 0)
)
# Mock recommend to return a known paper ID
async def fake_recommend(positive_arxiv_ids, negative_arxiv_ids, seen_arxiv_ids, limit):
return ["1706.03762"]
monkeypatch.setattr(qs, "recommend", fake_recommend)
# Also mock metadata fetch so we don't hit Turso DB in this test
import app.turso_svc as turso
import app.arxiv_svc as arxiv
async def fake_batch(ids):
return {
"1706.03762": {
"arxiv_id": "1706.03762",
"title": "Attention Is All You Need",
"abstract": "Transformers are great.",
"authors": '["Vaswani"]',
"category": "cs.CL",
"published": "2017-06-12",
"year": 2017,
}
}
monkeypatch.setattr(turso, "fetch_metadata_batch", fake_batch)
monkeypatch.setattr(arxiv, "fetch_metadata_batch", AsyncMock(return_value={}))
client.get("/")
client.post("/api/papers/0704.0002/save", data={"source": "search"})
resp = client.get("/api/recommendations")
assert resp.status_code == 200
assert "Attention Is All You Need" in resp.text
# ββ Full pipeline smoke test βββββββββββββββββββββββββββββββββββββββββββββββββββ
def test_quota_pipeline_preserves_minority_cluster(client, monkeypatch):
"""
Phase 4.1 end-to-end check: with 5+ saves forming 2 distinct interests,
the quota pipeline must surface papers from BOTH clusters in the final feed.
This is the exact failure mode RRF was causing.
"""
import numpy as np
import app.qdrant_svc as qs
import app.turso_svc as turso
import app.arxiv_svc as arxiv
import app.recommend.profiles as prof_mod
# Set up cookie
client.get("/")
# 5 saved papers, split into two topics (3 "NLP", 2 "RL") via embeddings
saved_ids = ["nlp_a", "nlp_b", "nlp_c", "rl_a", "rl_b"]
rng = np.random.RandomState(42)
nlp_center = rng.randn(1024).astype(np.float32)
nlp_center /= np.linalg.norm(nlp_center)
rl_center = rng.randn(1024).astype(np.float32)
rl_center /= np.linalg.norm(rl_center)
def _near(center):
v = center + rng.randn(1024).astype(np.float32) * 0.05
return (v / np.linalg.norm(v)).tolist()
saved_vectors = {
"nlp_a": _near(nlp_center),
"nlp_b": _near(nlp_center),
"nlp_c": _near(nlp_center),
"rl_a": _near(rl_center),
"rl_b": _near(rl_center),
}
# Candidate pool: 50 NLP-ish, 50 RL-ish
candidate_vectors = {}
nlp_candidates = [f"nlp_cand_{i}" for i in range(50)]
rl_candidates = [f"rl_cand_{i}" for i in range(50)]
for cid in nlp_candidates:
candidate_vectors[cid] = _near(nlp_center)
for cid in rl_candidates:
candidate_vectors[cid] = _near(rl_center)
async def fake_get_paper_vectors(ids):
combined = {**saved_vectors, **candidate_vectors}
return {aid: combined[aid] for aid in ids if aid in combined}
# search_by_vector_with_scores returns candidates with cosine scores,
# aligned with whichever centre the query is closer to
async def fake_search_by_vector_with_scores(query_vector, limit, exclude_ids=None):
qv = np.array(query_vector, dtype=np.float32)
qv /= np.linalg.norm(qv)
if float(qv @ nlp_center) > float(qv @ rl_center):
pool = nlp_candidates
center = nlp_center
else:
pool = rl_candidates
center = rl_center
exclude = exclude_ids or set()
results = []
for p in pool:
if p not in exclude:
# Compute realistic cosine score
pv = np.array(candidate_vectors[p], dtype=np.float32)
score = float(qv @ pv / (np.linalg.norm(qv) * np.linalg.norm(pv) + 1e-10))
results.append({"arxiv_id": p, "score": score})
return results[:limit]
monkeypatch.setattr(qs, "get_paper_vectors", fake_get_paper_vectors)
monkeypatch.setattr(qs, "search_by_vector_with_scores", fake_search_by_vector_with_scores)
# Skip EWMA short-term lookup β returns None
async def fake_load_profile(uid, kind):
return None
monkeypatch.setattr(prof_mod, "load_profile", fake_load_profile)
async def fake_interaction_count(uid, kind):
return 0
monkeypatch.setattr(prof_mod, "get_interaction_count", fake_interaction_count)
# Metadata: provide category so templates render
async def fake_meta(ids):
return {
aid: {
"arxiv_id": aid,
"title": f"Title {aid}",
"abstract": "...",
"authors": "[]",
"category": "cs.CL" if aid.startswith("nlp") else "cs.LG",
"published": "2024-01-01",
"year": 2024,
}
for aid in ids
}
monkeypatch.setattr(turso, "fetch_metadata_batch", fake_meta)
from unittest.mock import AsyncMock
monkeypatch.setattr(arxiv, "fetch_metadata_batch", AsyncMock(return_value={}))
# Save 5 papers to cross the MIN_PAPERS_FOR_CLUSTERING threshold
for aid in saved_ids:
client.post(f"/api/papers/{aid}/save", data={"source": "search"})
resp = client.get("/api/recommendations")
assert resp.status_code == 200
# The response should include recs from BOTH candidate pools (quota working)
has_nlp_rec = any(f"nlp_cand_{i}" in resp.text for i in range(50))
has_rl_rec = any(f"rl_cand_{i}" in resp.text for i in range(50))
assert has_nlp_rec, "No NLP cluster recs β dominant cluster failed to surface"
assert has_rl_rec, "Minority RL cluster starved β quota fusion is not working"
def test_full_pipeline_smoke(client, monkeypatch):
"""
1. User visits home β gets cookie
2. Searches for 'attention transformer'
3. Saves first result
4. Gets recommendations (mocked Qdrant + arXiv)
"""
import app.qdrant_svc as qs
import app.arxiv_svc as arxiv
saved_ids = []
# Step 1: Home
resp = client.get("/")
assert resp.status_code == 200
user_id = client.cookies.get("arxiv_user_id")
assert user_id
# Step 2: Search
resp = client.get("/search?q=attention+transformer")
assert resp.status_code == 200
# Extract any arxiv ID from the response HTML
import re
ids_found = re.findall(r'\[(\d{4}\.\d{4,5})\]', resp.text)
# Step 3: Save β use a known paper ID to avoid depending on search order
test_paper_id = "1706.03762"
resp = client.post(
f"/api/papers/{test_paper_id}/save",
data={"source": "search", "position": "0"},
)
assert resp.status_code == 200
# Step 4: Recommendations (mock to avoid full Qdrant integration here)
async def fake_rec(positive_arxiv_ids, negative_arxiv_ids, seen_arxiv_ids, limit):
return ["2302.11382"]
monkeypatch.setattr(qs, "recommend", fake_rec)
import app.turso_svc as turso
async def fake_meta(ids):
return {
"2302.11382": {
"arxiv_id": "2302.11382",
"title": "Principled Instructions Are All You Need",
"abstract": "Better prompts.",
"authors": '["Smith"]',
"category": "cs.CL",
"published": "2023-02-22",
"year": 2023,
}
}
monkeypatch.setattr(turso, "fetch_metadata_batch", fake_meta)
monkeypatch.setattr(arxiv, "fetch_metadata_batch", AsyncMock(return_value={}))
resp = client.get("/api/recommendations")
assert resp.status_code == 200
assert "Principled Instructions" in resp.text
|