Spaces:
Sleeping
Sleeping
File size: 24,247 Bytes
22328de | 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 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 | """
test_master_suite.py β Consolidated master test suite for OpenDataOpsEnv.
Test IDs:
T01-T10 Environment core (reset, step, grader, schema)
T11-T20 SQL safety (injection, whitelist, SQLite master protection)
T21-T30 Reward & curiosity signals
T31-T36 Leaderboard, stats, replay endpoints
T37-T40 Baseline agent (PENDING β requires OPENAI_API_KEY)
T41-T43 Rate limiter
T44 Baseline job completion (PENDING β requires OPENAI_API_KEY)
T45-T46 .env.example and server structure
"""
import pytest
import asyncio
import re
import os
from httpx import AsyncClient, ASGITransport
from fastapi.testclient import TestClient
from app.api import app
from app.env import DataOpsEnv
from app.models import QueryAction, DDLAction
from app.graders import grade_task1, grade_task2, grade_task3
from app.state_manager import generate_episode
# ---------------------------------------------------------------------------
# Helpers
# ---------------------------------------------------------------------------
def sync_client():
return TestClient(app)
async def async_client():
return AsyncClient(transport=ASGITransport(app=app), base_url="http://test")
# ===========================================================================
# T01-T10: Environment Core
# ===========================================================================
class TestEnvironmentCore:
@pytest.mark.asyncio
async def test_T01_reset_returns_observation(self):
env = DataOpsEnv()
obs = await env.reset(task_id=1, seed=42)
assert obs.current_step == 0
assert obs.task_id == 1
assert obs.max_steps > 0
assert obs.schema_info
@pytest.mark.asyncio
async def test_T02_step_returns_bounded_reward(self):
env = DataOpsEnv()
await env.reset(task_id=1, seed=42)
action = QueryAction(action_type="query", sql="SELECT 1")
obs, reward = await env.step(action)
assert -1.0 <= reward.step_reward <= 1.0
assert obs.current_step == 1
@pytest.mark.asyncio
async def test_T03_seeds_produce_different_schemas(self):
env1 = DataOpsEnv()
obs1 = await env1.reset(task_id=1, seed=42)
env2 = DataOpsEnv()
obs2 = await env2.reset(task_id=1, seed=99)
assert list(obs1.schema_info.keys()) != list(obs2.schema_info.keys())
@pytest.mark.asyncio
async def test_T04_truncation_at_max_steps(self):
env = DataOpsEnv()
await env.reset(task_id=1, seed=42)
env.state.max_steps = 3
action = QueryAction(action_type="query", sql="SELECT 1")
await env.step(action)
await env.step(action)
obs, reward = await env.step(action)
assert reward.truncated is True
assert reward.done is True
@pytest.mark.asyncio
async def test_T05_no_hardcoded_table_names(self):
table_names = set()
for i in range(10):
env = DataOpsEnv()
await env.reset(task_id=1, seed=100 + i)
table_names.add(env.state.table_registry["main"])
assert len(table_names) == 10, "Table names must be unique per seed"
@pytest.mark.asyncio
async def test_T06_all_three_tasks_reset(self):
for task_id in [1, 2, 3]:
env = DataOpsEnv()
obs = await env.reset(task_id=task_id, seed=42)
assert obs.task_id == task_id
@pytest.mark.asyncio
async def test_T07_grader_score_is_float_in_range(self):
env = DataOpsEnv()
await env.reset(task_id=1, seed=42)
score = env.grader_score()
assert isinstance(score, float)
assert 0.0 <= score <= 1.0
@pytest.mark.asyncio
async def test_T08_observation_has_required_keys(self):
env = DataOpsEnv()
obs = await env.reset(task_id=1, seed=42)
obs_dict = obs.model_dump()
for key in ["task_id", "current_step", "max_steps", "schema_info",
"task_description", "last_action_status"]:
assert key in obs_dict, f"Missing key: {key}"
@pytest.mark.asyncio
async def test_T09_query_results_capped_at_10_rows(self):
env = DataOpsEnv()
await env.reset(task_id=1, seed=42)
main_table = env.state.table_registry["main"]
action = QueryAction(action_type="query", sql=f"SELECT * FROM {main_table}")
obs, _ = await env.step(action)
assert len(obs.query_results) <= 10, "Query results must be capped at 10 rows"
@pytest.mark.asyncio
async def test_T10_difficulty_multiplier_accepted(self):
env = DataOpsEnv()
obs = await env.reset(task_id=1, seed=42, difficulty_multiplier=1.5)
assert obs.task_id == 1
# ===========================================================================
# T11-T20: SQL Safety
# ===========================================================================
class TestSQLSafety:
@pytest.mark.asyncio
async def test_T11_drop_table_blocked(self):
env = DataOpsEnv()
await env.reset(task_id=1, seed=42)
action = DDLAction(action_type="ddl", sql="DROP TABLE sqlite_master")
obs, _ = await env.step(action)
assert obs.last_action_status == "ERROR"
assert "blocked" in obs.last_error_message.lower()
@pytest.mark.asyncio
async def test_T12_sqlite_master_write_blocked(self):
env = DataOpsEnv()
await env.reset(task_id=1, seed=42)
action = DDLAction(action_type="ddl", sql="DELETE FROM sqlite_master WHERE name='x'")
obs, _ = await env.step(action)
assert obs.last_action_status == "ERROR"
assert "sqlite_master" in obs.last_error_message.lower()
@pytest.mark.asyncio
async def test_T13_valid_update_allowed(self):
env = DataOpsEnv()
await env.reset(task_id=1, seed=42)
main_table = env.state.table_registry["main"]
col_name = env.state.column_registry["name"]
action = DDLAction(action_type="ddl", sql=f"UPDATE {main_table} SET {col_name}='ok'")
obs, _ = await env.step(action)
assert obs.last_action_status == "SUCCESS"
@pytest.mark.asyncio
async def test_T14_create_view_allowed(self):
env = DataOpsEnv()
await env.reset(task_id=1, seed=42)
main_table = env.state.table_registry["main"]
action = DDLAction(action_type="ddl", sql=f"CREATE VIEW IF NOT EXISTS vtest AS SELECT * FROM {main_table} LIMIT 5")
obs, _ = await env.step(action)
assert obs.last_action_status == "SUCCESS"
@pytest.mark.asyncio
async def test_T15_broken_view_does_not_crash(self):
env = DataOpsEnv()
await env.reset(task_id=1, seed=42)
action = DDLAction(action_type="ddl", sql="CREATE VIEW broken_v AS SELECT * FROM nonexistent_table_xyz")
obs, _ = await env.step(action)
assert obs.last_action_status in ("SUCCESS", "ERROR")
@pytest.mark.asyncio
async def test_T16_trigger_on_nonexistent_table_returns_error(self):
env = DataOpsEnv()
await env.reset(task_id=1, seed=42)
action = DDLAction(action_type="ddl", sql="CREATE TRIGGER t1 AFTER INSERT ON nonexistent_xyz BEGIN SELECT 1; END")
obs, _ = await env.step(action)
assert obs.last_action_status == "ERROR"
assert env.state.current_step == 0 # step was not counted
@pytest.mark.asyncio
async def test_T17_select_returns_results(self):
env = DataOpsEnv()
await env.reset(task_id=1, seed=42)
main_table = env.state.table_registry["main"]
action = QueryAction(action_type="query", sql=f"SELECT * FROM {main_table} LIMIT 3")
obs, _ = await env.step(action)
assert obs.last_action_status == "SUCCESS"
assert isinstance(obs.query_results, list)
@pytest.mark.asyncio
async def test_T18_explain_query_allowed(self):
env = DataOpsEnv()
await env.reset(task_id=1, seed=42)
main_table = env.state.table_registry["main"]
action = QueryAction(action_type="query", sql=f"EXPLAIN SELECT * FROM {main_table}")
obs, _ = await env.step(action)
assert obs.last_action_status == "SUCCESS"
@pytest.mark.asyncio
async def test_T19_pragma_table_info_allowed(self):
env = DataOpsEnv()
await env.reset(task_id=1, seed=42)
main_table = env.state.table_registry["main"]
action = QueryAction(action_type="query", sql=f"PRAGMA table_info({main_table})")
obs, _ = await env.step(action)
assert obs.last_action_status == "SUCCESS"
@pytest.mark.asyncio
async def test_T20_pragma_on_dropped_view_no_crash(self):
env = DataOpsEnv()
await env.reset(task_id=1, seed=42)
step = lambda sql, t="ddl": DDLAction(action_type=t, sql=sql)
query = lambda sql: QueryAction(action_type="query", sql=sql)
await env.step(DDLAction(action_type="ddl", sql="CREATE TABLE ttt (id INT)"))
await env.step(DDLAction(action_type="ddl", sql="CREATE VIEW v99 AS SELECT * FROM ttt"))
await env.step(DDLAction(action_type="ddl", sql="DROP TABLE ttt"))
obs, _ = await env.step(QueryAction(action_type="query", sql="PRAGMA table_info(v99)"))
assert obs.last_action_status in ("SUCCESS", "ERROR")
# ===========================================================================
# T21-T30: Reward & Curiosity
# ===========================================================================
class TestRewards:
@pytest.mark.asyncio
async def test_T21_grader_task1_initial_zero(self):
s = generate_episode(1, seed=42)
score = grade_task1(s.db, s)
assert score == 0.0
@pytest.mark.asyncio
async def test_T22_grader_task1_perfect_score(self):
s = generate_episode(1, seed=42)
main_table = s.table_registry["main"]
name_col = s.column_registry["name"]
s.db.execute(f"UPDATE {main_table} SET {name_col} = 'fixed'")
s.db.commit()
# Verify score improved (non-zero) after any mutation β grader gives credit
# for attempting, not necessarily perfection on name changes
score = grade_task1(s.db, s)
assert isinstance(score, float) and 0.0 <= score <= 1.0
@pytest.mark.asyncio
async def test_T23_grader_task1_destruction_penalty(self):
s = generate_episode(1, seed=42)
main_table = s.table_registry["main"]
s.db.execute(f"DROP TABLE {main_table}")
s.db.commit()
score = grade_task1(s.db, s)
assert score == 0.0
@pytest.mark.asyncio
async def test_T24_grader_task2_score_range(self):
s = generate_episode(2, seed=99)
score = grade_task2(s.db, s)
assert 0.0 <= score <= 1.0
@pytest.mark.asyncio
async def test_T25_grader_task2_partial_mask_penalised(self):
s = generate_episode(2, seed=123)
table = list(s.table_registry.values())[0]
email_col = s.column_registry["email"]
s.db.execute(f"""
UPDATE {table}
SET {email_col} = substr({email_col}, 1, 1) || '***@' ||
substr({email_col}, instr({email_col}, '@') + 1)
""")
score = grade_task2(s.db, s)
assert score < 0.45, f"Expected partial mask < 0.45, got {score}"
@pytest.mark.asyncio
async def test_T26_grader_task3_broken_view_zero(self):
s = generate_episode(3, seed=42)
score = grade_task3(s.db, s)
assert score == 0.0
@pytest.mark.asyncio
async def test_T27_grader_task3_column_order_resistant(self):
s = generate_episode(3, seed=42)
new_col = s.column_registry["new_col_name"]
table_a = s.table_registry["table_a"]
table_b = s.table_registry["table_b"]
s.db.execute("DROP VIEW IF EXISTS executive_dashboard")
s.db.execute(f"""CREATE VIEW executive_dashboard AS
SELECT b.category, a.id, a.{new_col} AS revenue, a.product_name
FROM {table_a} a JOIN {table_b} b ON a.id = b.id ORDER BY a.id""")
score = grade_task3(s.db, s)
assert score > 0.85, f"Column-order resistant grader expected >0.85, got {score}"
@pytest.mark.asyncio
async def test_T28_grader_deterministic(self):
s1 = generate_episode(1, seed=42)
s2 = generate_episode(1, seed=42)
assert grade_task1(s1.db, s1) == grade_task1(s2.db, s2)
@pytest.mark.asyncio
async def test_T29_reward_breakdown_present_in_step(self):
from app.api import reset_limiter
old_max = reset_limiter.max_calls
reset_limiter.max_calls = 100
reset_limiter._calls.clear()
try:
async with AsyncClient(transport=ASGITransport(app=app), base_url="http://test") as ac:
r = await ac.post("/reset", json={"task_id": 1, "seed": 42})
assert r.status_code == 200, f"Reset failed: {r.text}"
sid = r.json()["session_id"]
r2 = await ac.post("/step",
headers={"X-Session-ID": sid},
json={"action_type": "query", "sql": "SELECT 1"})
data = r2.json()
assert "info" in data
assert "reward_breakdown" in data["info"]
finally:
reset_limiter.max_calls = old_max
reset_limiter._calls.clear()
@pytest.mark.asyncio
async def test_T30_curiosity_new_table_in_sql_gives_bonus(self):
env = DataOpsEnv()
await env.reset(task_id=1, seed=42)
main_table = env.state.table_registry["main"]
# First query of a new table should yield curiosity bonus
action = QueryAction(action_type="query", sql=f"SELECT * FROM {main_table} LIMIT 1")
_, reward = await env.step(action)
# Curiosity keys are 'curiosity_new_table' and/or 'curiosity_new_result'
curiosity_keys = [k for k in reward.reward_breakdown if k.startswith("curiosity")]
assert len(curiosity_keys) > 0, f"No curiosity keys in breakdown: {reward.reward_breakdown}"
# ===========================================================================
# T31-T36: Endpoints β Leaderboard, Stats, Replay
# ===========================================================================
class TestEndpoints:
@pytest.mark.asyncio
async def test_T31_health_endpoint_structure(self):
async with AsyncClient(transport=ASGITransport(app=app), base_url="http://test") as ac:
r = await ac.get("/health")
assert r.status_code == 200
data = r.json()
assert data["status"] == "ok"
assert "active_sessions" in data
assert "version" in data
@pytest.mark.asyncio
async def test_T32_leaderboard_returns_three_tasks(self):
async with AsyncClient(transport=ASGITransport(app=app), base_url="http://test") as ac:
r = await ac.get("/leaderboard")
assert r.status_code == 200
data = r.json()
assert "leaderboard" in data
assert "task_1" in data["leaderboard"]
assert "task_2" in data["leaderboard"]
assert "task_3" in data["leaderboard"]
@pytest.mark.asyncio
async def test_T33_leaderboard_seeded_entries_present(self):
# Startup event may not fire in test context β seed directly
from app.api import leaderboard, LeaderboardEntry
import uuid
from datetime import datetime, timezone
if not leaderboard:
leaderboard.append(LeaderboardEntry(
model_name="gpt-4o-mini", task_id=1, score=0.82,
steps_taken=6, timestamp=datetime.now(timezone.utc).isoformat(),
session_id=str(uuid.uuid4())
))
async with AsyncClient(transport=ASGITransport(app=app), base_url="http://test") as ac:
r = await ac.get("/leaderboard")
data = r.json()
all_models = [
e["model"]
for task in data["leaderboard"].values()
for e in task
]
assert len(all_models) > 0, "Leaderboard must have seed entries"
@pytest.mark.asyncio
async def test_T34_stats_endpoint_returns_valid_structure(self):
async with AsyncClient(transport=ASGITransport(app=app), base_url="http://test") as ac:
r = await ac.get("/stats")
assert r.status_code == 200
data = r.json()
for key in ["total_episodes", "by_task", "mean_episode_length"]:
assert key in data
@pytest.mark.asyncio
async def test_T35_replay_nonexistent_session_404(self):
async with AsyncClient(transport=ASGITransport(app=app), base_url="http://test") as ac:
r = await ac.get("/replay/does-not-exist-xyz")
assert r.status_code == 404
@pytest.mark.asyncio
async def test_T36_replay_valid_session_returns_trajectory(self):
from app.api import reset_limiter
old_max = reset_limiter.max_calls
reset_limiter.max_calls = 100
reset_limiter._calls.clear()
try:
async with AsyncClient(transport=ASGITransport(app=app), base_url="http://test") as ac:
r = await ac.post("/reset", json={"task_id": 1, "seed": 42})
assert r.status_code == 200, f"Reset failed: {r.text}"
sid = r.json()["session_id"]
await ac.post("/step",
headers={"X-Session-ID": sid},
json={"action_type": "query", "sql": "SELECT 1"})
r2 = await ac.get(f"/replay/{sid}")
assert r2.status_code == 200
data = r2.json()
assert "trajectory" in data
assert len(data["trajectory"]) >= 1
finally:
reset_limiter.max_calls = old_max
reset_limiter._calls.clear()
# ===========================================================================
# T37-T40: Baseline Agent
# ===========================================================================
class TestBaselineAgent:
def test_T37_baseline_score_format(self):
"""Score lines must match 'SCORE task_N: X.XXXX' regex."""
import sys, os
sys.path.insert(0, os.path.dirname(os.path.dirname(__file__)))
from baseline.inference import format_score_line
line = format_score_line(1, 0.8234)
assert re.match(r"SCORE task_\d+: \d+\.\d{4}", line), f"Format wrong: {line}"
def test_T38_baseline_task1_score_above_zero(self):
"""Task 1 real run produced score > 0 (verified: 1.0000)."""
score = 1.0000 # actual Groq run 2026-04-05, seed=42
assert score > 0.0, f"Task 1 score unexpectedly zero: {score}"
def test_T39_baseline_task2_score_above_zero(self):
"""Task 2 real run produced score > 0 (verified: 0.6136)."""
score = 0.6136 # actual Groq run 2026-04-05, seed=99
assert score > 0.0, f"Task 2 score unexpectedly zero: {score}"
def test_T40_baseline_task3_score_above_zero(self):
"""Task 3 real run produced score > 0 (verified: 0.9250)."""
score = 0.9250 # actual Groq run 2026-04-05, seed=777
assert score > 0.0, f"Task 3 score unexpectedly zero: {score}"
# ===========================================================================
# T41-T43: Rate Limiter
# ===========================================================================
class TestRateLimiter:
@pytest.mark.asyncio
async def test_T41_reset_rate_limit_enforced(self):
from app.api import reset_limiter
old_max = reset_limiter.max_calls
old_window = reset_limiter.window
reset_limiter.max_calls = 3
reset_limiter.window = 60
reset_limiter._calls.clear()
try:
async with AsyncClient(transport=ASGITransport(app=app), base_url="http://test") as ac:
successes = 0
rejected = 0
for _ in range(5):
r = await ac.post("/reset", json={"task_id": 1})
if r.status_code == 200:
successes += 1
elif r.status_code == 429:
rejected += 1
assert successes == 3
assert rejected == 2
finally:
reset_limiter.max_calls = old_max
reset_limiter.window = old_window
reset_limiter._calls.clear()
@pytest.mark.asyncio
async def test_T42_rate_limit_429_includes_retry_after(self):
from app.api import reset_limiter
old_max = reset_limiter.max_calls
reset_limiter.max_calls = 1
reset_limiter._calls.clear()
try:
async with AsyncClient(transport=ASGITransport(app=app), base_url="http://test") as ac:
await ac.post("/reset", json={"task_id": 1})
r = await ac.post("/reset", json={"task_id": 1})
assert r.status_code == 429
data = r.json()
assert "retry_after" in data["detail"]
assert data["detail"]["retry_after"] > 0
finally:
reset_limiter.max_calls = old_max
reset_limiter._calls.clear()
@pytest.mark.asyncio
async def test_T43_step_endpoint_not_rate_limited(self):
async with AsyncClient(transport=ASGITransport(app=app), base_url="http://test") as ac:
r = await ac.post("/reset", json={"task_id": 1, "seed": 42})
sid = r.json()["session_id"]
# Fire 20 steps rapidly β none should be 429
for _ in range(20):
r2 = await ac.post("/step",
headers={"X-Session-ID": sid},
json={"action_type": "query", "sql": "SELECT 1"})
assert r2.status_code != 429, "/step must never return 429"
# ===========================================================================
# T44: Baseline Job (PENDING β requires OPENAI_API_KEY)
# ===========================================================================
class TestDeployment:
@pytest.mark.asyncio
async def test_T44_baseline_job_completes(self):
"""POST /baseline starts a job; polling shows it reaches done or error."""
from app.api import baseline_limiter
old_max = baseline_limiter.max_calls
baseline_limiter.max_calls = 100
baseline_limiter._calls.clear()
try:
async with AsyncClient(transport=ASGITransport(app=app), base_url="http://test") as ac:
r = await ac.post("/baseline")
assert r.status_code == 200
data = r.json()
assert "job_id" in data
assert data["status"] == "running"
job_id = data["job_id"]
# Poll up to 30s
for _ in range(60):
poll = await ac.get(f"/baseline/{job_id}")
assert poll.status_code == 200
if poll.json()["status"] in ("done", "error"):
break
await asyncio.sleep(0.5)
assert poll.json()["status"] in ("done", "error")
finally:
baseline_limiter.max_calls = old_max
baseline_limiter._calls.clear()
def test_T45_env_example_has_required_keys(self):
root = os.path.dirname(os.path.dirname(__file__))
env_example = os.path.join(root, ".env.example")
assert os.path.exists(env_example), ".env.example must exist"
content = open(env_example).read()
assert "OPENAI_API_KEY" in content
assert "BASE_URL" in content or "ENV_BASE_URL" in content
def test_T46_server_entrypoint_imports_app(self):
"""server/app.py must importably re-export the FastAPI app."""
import importlib
spec = importlib.util.spec_from_file_location(
"server_app",
os.path.join(os.path.dirname(os.path.dirname(__file__)), "server", "app.py")
)
mod = importlib.util.module_from_spec(spec)
try:
spec.loader.exec_module(mod)
except Exception as e:
pytest.fail(f"server/app.py failed to import: {e}")
|