Clean release snapshot

This commit is contained in:
byrongamatos
2026-06-16 18:47:13 +02:00
commit 6c110398b4
574 changed files with 162566 additions and 0 deletions
+314
View File
@@ -0,0 +1,314 @@
"""Tests for the song-stats endpoints + XP/streak side-effects (P14)."""
import importlib
import sys
import pytest
from fastapi.testclient import TestClient
@pytest.fixture()
def server(tmp_path, monkeypatch, isolate_logging):
monkeypatch.setenv("CONFIG_DIR", str(tmp_path))
monkeypatch.setenv("SLOPSMITH_SKIP_STARTUP_TASKS", "1")
sys.modules.pop("server", None)
srv = importlib.import_module("server")
try:
yield srv
finally:
conn = getattr(getattr(srv, "meta_db", None), "conn", None)
if conn is not None:
conn.close()
sys.modules.pop("server", None)
@pytest.fixture()
def client(server):
return TestClient(server.app)
def test_scored_session_persists_and_increments_plays(client):
r = client.post("/api/stats", json={"filename": "song.psarc", "arrangement": 0,
"score": 400, "accuracy": 0.6, "lastPlayPosition": 30.0})
assert r.status_code == 200
row = r.json()["stats"]
assert row["plays"] == 1 and row["best_score"] == 400 and row["best_accuracy"] == pytest.approx(0.6)
# A better replay raises best_* but plays keeps incrementing.
r2 = client.post("/api/stats", json={"filename": "song.psarc", "score": 800, "accuracy": 0.9})
row2 = r2.json()["stats"]
assert row2["plays"] == 2
assert row2["best_score"] == 800 and row2["best_accuracy"] == pytest.approx(0.9)
assert row2["last_score"] == 800
# A worse replay: best preserved, last replaced, plays still up.
r3 = client.post("/api/stats", json={"filename": "song.psarc", "score": 100, "accuracy": 0.3})
row3 = r3.json()["stats"]
assert row3["plays"] == 3
assert row3["best_score"] == 800 and row3["best_accuracy"] == pytest.approx(0.9)
assert row3["last_score"] == 100
def test_scored_session_awards_xp_and_streak(client, server):
assert server.meta_db.get_xp() == 0
from xp import xp_for_run
r = client.post("/api/stats", json={"filename": "s.psarc", "score": 900, "accuracy": 0.95})
prog = r.json()["progress"]
assert prog is not None
assert prog["xp"] == xp_for_run(900)
assert prog["current_streak"] == 1 # streak bumped today
def test_position_only_touch_does_not_increment_plays(client):
r = client.post("/api/stats", json={"filename": "x.psarc", "lastPlayPosition": 42.0})
assert r.status_code == 200
row = r.json()["stats"]
assert row["plays"] == 0 and row["last_position"] == 42.0
# A resume touch awards no XP but DOES count as playing today (streak).
prog = r.json()["progress"]
assert prog is not None and prog["current_streak"] == 1 and prog["xp"] == 0
# A later scored session counts as the first play.
r2 = client.post("/api/stats", json={"filename": "x.psarc", "score": 100, "accuracy": 0.5})
assert r2.json()["stats"]["plays"] == 1
# The earlier resume position is preserved through the scored upsert? The
# scored session omitted last_position, so it should keep 42.0.
assert r2.json()["stats"]["last_position"] == 42.0
def test_stats_requires_filename(client):
assert client.post("/api/stats", json={"score": 1, "accuracy": 1}).status_code == 400
def test_stats_requires_score_or_position(client):
assert client.post("/api/stats", json={"filename": "a.psarc"}).status_code == 400
def test_get_song_stats_aggregates_arrangements(client):
client.post("/api/stats", json={"filename": "multi.psarc", "arrangement": 0, "score": 300, "accuracy": 0.5})
client.post("/api/stats", json={"filename": "multi.psarc", "arrangement": 1, "score": 700, "accuracy": 0.8})
body = client.get("/api/stats/multi.psarc").json()
assert body["plays"] == 2
assert body["best_score"] == 700 and body["best_accuracy"] == pytest.approx(0.8)
assert len(body["arrangements"]) == 2
def test_recent_orders_by_last_played(client, server):
for fn in ("first.psarc", "second.psarc"):
server.meta_db.put(fn, 0, 0, {})
client.post("/api/stats", json={"filename": "first.psarc", "score": 100, "accuracy": 0.5})
client.post("/api/stats", json={"filename": "second.psarc", "score": 200, "accuracy": 0.6})
recent = client.get("/api/stats/recent?limit=10").json()
names = [r["filename"] for r in recent]
# Most-recent first; both present.
assert names[0] == "second.psarc"
assert "first.psarc" in names
# Rows carry metadata fields for the dashboard.
assert "art_url" in recent[0] and "title" in recent[0]
# ── Codex-preflight regressions (bad-input hardening + resume touch) ──────────
def test_stats_rejects_non_finite_score_accuracy(client):
# Inf/NaN must be a 400, not a 500 (round(inf) → OverflowError) and must
# never be persisted (a stored non-finite breaks later JSON serialization).
# Numeric strings:
for bad in ({"score": "inf", "accuracy": 0.5}, {"score": 100, "accuracy": "NaN"}):
r = client.post("/api/stats", json={"filename": "nf.psarc", **bad})
assert r.status_code == 400, bad
# Raw JSON Infinity/NaN literals — Python's json parser accepts these, so a
# client really can send them (httpx's json= serializer cannot, hence the
# raw body).
import json as _json
for raw in (_json.dumps({"filename": "nf.psarc", "score": float("inf"), "accuracy": 0.5}),
_json.dumps({"filename": "nf.psarc", "score": 100, "accuracy": float("nan")})):
r = client.post("/api/stats", content=raw, headers={"Content-Type": "application/json"})
assert r.status_code == 400, raw
# The bad writes left no row behind.
assert client.get("/api/stats/nf.psarc").json()["plays"] == 0
def test_stats_rejects_non_finite_position(client):
r = client.post("/api/stats", json={"filename": "p.psarc", "lastPlayPosition": "inf"})
assert r.status_code == 400
def test_stats_bad_typed_fields_are_400_not_500(client):
# Wrong-typed JSON for string fields must validate to 400, not raise.
assert client.post("/api/stats", json={"filename": 123, "score": 1, "accuracy": 0.5}).status_code == 400
assert client.post("/api/stats", json={"filename": ["x"]}).status_code == 400
def test_position_touch_surfaces_in_recent_and_continue(client, server):
# A non-scored resume touch must stamp last_played_at so it shows up in
# both 'Jump back in' (recent) and Continue-Playing.
server.meta_db.put("resume.psarc", 0, 0, {})
r = client.post("/api/stats", json={"filename": "resume.psarc", "arrangement": 2,
"lastPlayPosition": 42.0})
assert r.status_code == 200
recent = client.get("/api/stats/recent?limit=10").json()
assert "resume.psarc" in [x["filename"] for x in recent]
cont = client.get("/api/session/continue").json()
assert cont and cont["filename"] == "resume.psarc"
assert cont["arrangement"] == 2 and cont["last_position"] == pytest.approx(42.0)
def test_stats_requires_score_and_accuracy_together(client):
# Exactly one of score/accuracy (with or without a position) is ambiguous.
assert client.post("/api/stats", json={"filename": "x.psarc", "score": 100}).status_code == 400
assert client.post("/api/stats", json={"filename": "x.psarc", "accuracy": 0.5,
"lastPlayPosition": 10.0}).status_code == 400
def test_stats_rejects_out_of_range_score(client):
# A huge but finite score passes isfinite() yet overflows SQLite INTEGER.
r = client.post("/api/stats", json={"filename": "big.psarc", "score": 1e308, "accuracy": 0.5})
assert r.status_code == 400
assert client.get("/api/stats/big.psarc").json()["plays"] == 0
def test_xp_award_rejects_bool_and_overflow(client):
assert client.post("/api/xp/award", json={"amount": True}).status_code == 400
assert client.post("/api/xp/award", json={"amount": 10**30}).status_code == 400
assert client.post("/api/xp/award", json={"amount": 50}).status_code == 200
def test_reorder_rejects_non_permutation(client, server):
for fn in ("a.psarc", "b.psarc"):
server.meta_db.put(fn, 0, 0, {})
pid = client.post("/api/playlists", json={"name": "P"}).json()["id"]
client.post(f"/api/playlists/{pid}/songs", json={"filename": "a.psarc"})
client.post(f"/api/playlists/{pid}/songs", json={"filename": "b.psarc"})
# Extra / missing / duplicate entries are all rejected.
assert client.post(f"/api/playlists/{pid}/reorder", json={"order": ["a.psarc"]}).status_code == 400
assert client.post(f"/api/playlists/{pid}/reorder",
json={"order": ["a.psarc", "a.psarc"]}).status_code == 400
assert client.post(f"/api/playlists/{pid}/reorder",
json={"order": ["b.psarc", "a.psarc"]}).status_code == 200
def test_overflow_numeric_inputs_are_not_500(client):
# JSON 1e309 parses to inf; int(inf) raises OverflowError. None of these
# may 500 (they should 400, or be clamped).
import json as _json
r = client.post("/api/xp/award", content=_json.dumps({"amount": 1e309}),
headers={"Content-Type": "application/json"})
assert r.status_code == 400
# Huge/inf arrangement is rejected (400), never a 500.
r2 = client.post("/api/stats", content=_json.dumps({"filename": "o.psarc", "arrangement": 1e309,
"score": 10, "accuracy": 0.5}),
headers={"Content-Type": "application/json"})
assert r2.status_code == 400
# An out-of-int64-range playlist id is a 404, not a 500.
assert client.get("/api/playlists/%d" % (10 ** 30)).status_code == 404
assert client.post("/api/playlists/%d/songs" % (10 ** 30),
json={"filename": "x.psarc"}).status_code == 404
def test_stats_rejects_non_integral_arrangement(client):
# 1.9 / true must be rejected, not silently truncated to 1.
assert client.post("/api/stats", json={"filename": "a.psarc", "arrangement": 1.9,
"score": 10, "accuracy": 0.5}).status_code == 400
assert client.post("/api/stats", json={"filename": "a.psarc", "arrangement": True,
"score": 10, "accuracy": 0.5}).status_code == 400
def test_stats_rejects_out_of_range_accuracy(client):
for acc in (5, -1, 1.5):
assert client.post("/api/stats", json={"filename": "acc.psarc", "score": 10,
"accuracy": acc}).status_code == 400, acc
assert client.get("/api/stats/acc.psarc").json()["plays"] == 0
def test_xp_award_rejects_non_integral_amount(client):
assert client.post("/api/xp/award", json={"amount": 1.9}).status_code == 400
assert client.post("/api/xp/award", json={"amount": 5.0}).status_code == 200 # integral float ok
def test_stats_rejects_boolean_numeric_fields(client):
# JSON booleans must not be coerced via float() into a recorded play / position.
assert client.post("/api/stats", json={"filename": "b.psarc", "score": True, "accuracy": 0.5}).status_code == 400
assert client.post("/api/stats", json={"filename": "b.psarc", "score": 10, "accuracy": False}).status_code == 400
assert client.post("/api/stats", json={"filename": "b.psarc", "lastPlayPosition": False}).status_code == 400
assert client.get("/api/stats/b.psarc").json()["plays"] == 0
def test_award_xp_service_tolerates_bad_amount(client, server):
# The plugin-facing service must never RAISE on bad input. Unparseable /
# non-finite values are no-ops; an out-of-range integer is clamped to the
# cap (not rejected) rather than overflowing the SQLite bind.
db = server.meta_db
before = db.get_xp()
for noop in (float("inf"), float("nan"), "x", None):
assert db.award_xp(noop) == before # no-op, no raise
assert db.award_xp(10 ** 40) == before + 10_000_000 # clamped to the cap, no OverflowError
def test_best_map_includes_scored_zero_excludes_resume_only(client, server):
# A scored 0% song (plays>0) must appear in /api/stats/best; a resume-only
# touch (plays==0, default best 0) must not — both are real library songs,
# so the exclusion is the plays>0 rule, not the existing-song filter.
for fn in ("zero.psarc", "resume.psarc"):
server.meta_db.put(fn, 0, 0, {})
client.post("/api/stats", json={"filename": "zero.psarc", "score": 0, "accuracy": 0.0})
client.post("/api/stats", json={"filename": "resume.psarc", "lastPlayPosition": 12.0})
best = client.get("/api/stats/best").json()
assert "zero.psarc" in best and best["zero.psarc"] == 0.0
assert "resume.psarc" not in best
def test_dead_song_stats_hidden_when_library_populated(client, server):
# When the songs table is populated, stats for a song that ISN'T in it are
# hidden from reads (race-free orphan handling) — but a present song shows.
db = server.meta_db
db.put("keep.psarc", 0, 0, {"title": "Keep"})
client.post("/api/stats", json={"filename": "keep.psarc", "score": 200, "accuracy": 0.8})
client.post("/api/stats", json={"filename": "ghost.psarc", "score": 100, "accuracy": 0.5}) # no songs row
best = client.get("/api/stats/best").json()
assert "keep.psarc" in best and "ghost.psarc" not in best
recent = [r["filename"] for r in client.get("/api/stats/recent?limit=10").json()]
assert "keep.psarc" in recent and "ghost.psarc" not in recent
def test_delete_missing_does_not_destroy_stats(client, server):
# A scan pruning a song from `songs` must NOT delete its stats (the wipe
# race): the song is merely hidden while absent, and re-adding it restores
# its full history. A second song keeps the library non-empty so the
# existing-song read filter stays active.
db = server.meta_db
db.put("s.psarc", 0, 0, {"title": "S"})
db.put("other.psarc", 0, 0, {"title": "Other"})
client.post("/api/stats", json={"filename": "s.psarc", "score": 300, "accuracy": 0.9})
db.delete_missing({"other.psarc"}) # s no longer "on disk" → songs row removed (other kept)
assert "s.psarc" not in client.get("/api/stats/best").json() # hidden, library still populated
db.put("s.psarc", 0, 0, {"title": "S"}) # song comes back under the same name
best = client.get("/api/stats/best").json()
assert "s.psarc" in best and best["s.psarc"] == pytest.approx(0.9) # stats survived the prune
def test_stats_arrangement_bounded_to_song_arrangements(client, server):
# For a known library song, an out-of-range arrangement index is rejected
# (can't create a fake arrangement bucket); index 0 is fine.
server.meta_db.put("multi.psarc", 0, 0, {"arrangements": [{"name": "Lead"}, {"name": "Bass"}]})
assert client.post("/api/stats", json={"filename": "multi.psarc", "arrangement": 5,
"score": 10, "accuracy": 0.5}).status_code == 400
assert client.post("/api/stats", json={"filename": "multi.psarc", "arrangement": 1,
"score": 10, "accuracy": 0.5}).status_code == 200
def test_per_source_xp_reset_only_removes_that_source(client, server):
# reset_source_xp subtracts ONLY the named source's contribution from the
# unified total (a minigames reset must not wipe song-play XP).
db = server.meta_db
db.award_xp(100, "song-play")
db.award_xp(60, "minigames")
assert db.get_xp() == 160
prog = db.reset_source_xp("minigames")
assert prog["xp"] == 100 # only minigames removed
assert db.reset_source_xp("minigames")["xp"] == 100 # idempotent
def test_award_xp_negative_reversal_clamps_at_zero(server):
# A negative amount reverses a prior award (used when a minigames run's
# profile-save fails) and never drives the total below zero.
db = server.meta_db
db.award_xp(50, "minigames")
assert db.award_xp(-50, "minigames") == 0 # exact reversal
assert db.award_xp(-999, "minigames") == 0 # over-reverse clamps at 0