File size: 5,743 Bytes
4949db9 | 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 | import json
import pytest
from human_eval.config import STATUS_COMPLETED
def _setup_user_and_video(app_db):
app_db.execute("INSERT INTO annotators (name) VALUES ('alice')")
app_db.execute(
"INSERT INTO videos (filename, dataset, prompt, physical_laws, import_hash) "
"""VALUES ('v.mp4', 'ds', 'test prompt', '["flow_dynamics", "boundary_interaction", "fluid_continuity"]', 'hash')"""
)
app_db.commit()
return 1, 1
class TestLogin:
def test_get_login_page(self, client):
resp = client.get("/")
assert resp.status_code == 200
def test_login_creates_annotator(self, client, app_db):
resp = client.post("/login", data={"username": "alice"}, follow_redirects=False)
assert resp.status_code == 302
row = app_db.execute("SELECT * FROM annotators WHERE name='alice'").fetchone()
assert row is not None
def test_login_empty_name_rejected(self, client):
resp = client.post("/login", data={"username": ""}, follow_redirects=True)
assert resp.status_code == 200
def _setup_comparison_group(app_db, video_id, annotator_id, group_id="test-group"):
"""Create a comparison group and a grouped assignment."""
app_db.execute(
"INSERT OR IGNORE INTO comparison_groups (id, prompt, physical_laws) "
"""VALUES (?, 'test prompt', '["flow_dynamics"]')""",
(group_id,),
)
app_db.execute(
"INSERT INTO assignments (video_id, annotator_id, status, expires_at, group_id) "
"VALUES (?, ?, 'assigned', datetime('now', '+24 hours'), ?)",
(video_id, annotator_id, group_id),
)
app_db.commit()
class TestTaskList:
def test_requires_login(self, client):
resp = client.get("/tasks")
assert resp.status_code == 302
def test_shows_assignments(self, client, app_db):
_setup_user_and_video(app_db)
with client.session_transaction() as sess:
sess["annotator_id"] = 1
sess["annotator_name"] = "alice"
_setup_comparison_group(app_db, 1, 1)
resp = client.get("/tasks", follow_redirects=True)
assert resp.status_code == 200
class TestStats:
def test_stats_returns_json(self, client, app_db):
with client.session_transaction() as sess:
sess["annotator_id"] = 1
sess["annotator_name"] = "alice"
resp = client.get("/api/stats")
assert resp.status_code == 200
data = resp.get_json()
assert "total_videos" in data
assert "coverage" in data
assert "per_annotator" in data
class TestEndToEnd:
def test_full_flow_comparison(self, client, app_db):
"""Login → create comparison group → rate group → verify annotations."""
# Insert two test videos (same prompt, different models)
app_db.execute(
"INSERT INTO videos (filename, dataset, prompt, physical_laws, import_hash) "
"""VALUES ('v1.mp4', 'model-a-wmb', 'water flows', '["flow_dynamics", "fluid_continuity"]', 'hash')"""
)
app_db.execute(
"INSERT INTO videos (filename, dataset, prompt, physical_laws, import_hash) "
"""VALUES ('v1.mp4', 'model-b-wmb', 'water flows', '["flow_dynamics", "fluid_continuity"]', 'hash')"""
)
app_db.commit()
# Login
resp = client.post("/login", data={"username": "tester"}, follow_redirects=True)
assert resp.status_code == 200
# Manually create a comparison group (auto-assign won't match test models)
group_id = "test-e2e-group"
app_db.execute(
"INSERT INTO comparison_groups (id, prompt, physical_laws) VALUES (?, ?, ?)",
(group_id, "water flows", '["flow_dynamics", "fluid_continuity"]'),
)
annotator_id = app_db.execute("SELECT id FROM annotators WHERE name='tester'").fetchone()["id"]
for vid in [1, 2]:
app_db.execute(
"INSERT INTO assignments (video_id, annotator_id, status, expires_at, group_id) "
"VALUES (?, ?, 'assigned', datetime('now', '+24 hours'), ?)",
(vid, annotator_id, group_id),
)
app_db.commit()
# Get rate group page
resp = client.get(f"/rate_group/{group_id}")
assert resp.status_code == 200
# Submit scores for both videos
assignments = app_db.execute(
"SELECT id FROM assignments WHERE group_id=? ORDER BY id",
(group_id,),
).fetchall()
scores = {}
for a in assignments:
aid = a["id"]
scores[f"v{aid}_SA"] = "4"
scores[f"v{aid}_PTV"] = "4"
scores[f"v{aid}_persistence"] = "3"
scores[f"v{aid}_flow_dynamics"] = "4"
scores[f"v{aid}_fluid_continuity"] = "2"
scores["action"] = "next"
resp = client.post(f"/rate_group/{group_id}", data=scores, follow_redirects=False)
assert resp.status_code == 200
resp_data = resp.get_json()
assert resp_data["ok"] is True
# Verify annotations created for both
for a in assignments:
ann = app_db.execute(
"SELECT * FROM annotations WHERE assignment_id=?", (a["id"],)
).fetchone()
assert ann is not None
parsed = json.loads(ann["scores_json"])
assert parsed["general"]["SA"] == 4
assert parsed["physical"]["flow_dynamics"] == 4
# Verify all assignments marked completed
statuses = app_db.execute(
"SELECT status FROM assignments WHERE group_id=?", (group_id,)
).fetchall()
assert all(r["status"] == STATUS_COMPLETED for r in statuses)
|