2026-06-16 07:08:58 +02:00
|
|
|
# retoor <retoor@molodetz.nl>
|
|
|
|
|
|
|
|
|
|
import time
|
|
|
|
|
import requests
|
|
|
|
|
from tests.conftest import BASE_URL
|
|
|
|
|
|
|
|
|
|
JSON_trash = {"Accept": "application/json"}
|
|
|
|
|
_counter_trash = [0]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def _unique_trash(prefix="tr"):
|
|
|
|
|
_counter_trash[0] += 1
|
|
|
|
|
return f"{prefix}{int(time.time() * 1000)}{_counter_trash[0]}"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def _member_trash():
|
|
|
|
|
name = _unique_trash("trrmem")
|
|
|
|
|
s = requests.Session()
|
|
|
|
|
s.post(
|
|
|
|
|
f"{BASE_URL}/auth/signup",
|
|
|
|
|
data={
|
|
|
|
|
"username": name,
|
|
|
|
|
"email": f"{name}@t.dev",
|
|
|
|
|
"password": "secret123",
|
|
|
|
|
"confirm_password": "secret123",
|
Add the trust and safety subsystem and the App Store compliance work
Implements the moderation and consent obligations a social platform carries,
so the web version and any client that speaks to it enforce the same rules.
Moderation core (services/moderation/, database/moderation.py): a reportable
target registry, the content filter and its choke points, the report queue with
atomic resolution, enforcement actions, consent tracking, maturity gating, and
account deletion with a grace window.
Surfaces: POST /reports plus the member report list, /admin/moderation and the
per-report admin view, /workspaces, terms acceptance at /auth/terms, consent and
account deletion under /profile, the report button and dialog partials, the
maturity gate, and the moderation stylesheet and ReportDialog client.
Every user-generated surface stays reportable by construction: new content tables
are registered in REPORTABLE_TARGETS or listed in UNREPORTABLE_TABLES with a
reason, and the registry test fails the suite on anything left unclassified.
Docs: community guidelines, content moderation, intellectual property, privacy,
terms, contact, and the admin-only moderation operations page, plus the
moderation API group and the Devii moderation actions.
Compliance record: applecomp.md is the requirement register, applechanges.md the
gap analysis against this codebase, and appleimpl.md the implementation design
they resolve to.
Tests cover the report flow, admin moderation, consent, account deletion, terms
acceptance, workspaces, and the registry invariant across the unit, api, and e2e
tiers.
2026-08-09 00:18:20 +02:00
|
|
|
"birth_date": "1990-01-01",
|
|
|
|
|
"accept_terms": "1",
|
2026-06-16 07:08:58 +02:00
|
|
|
},
|
|
|
|
|
allow_redirects=True,
|
|
|
|
|
)
|
|
|
|
|
return s, name
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def _admin_trash(seeded_db):
|
|
|
|
|
s = requests.Session()
|
|
|
|
|
creds = seeded_db["alice"]
|
|
|
|
|
s.post(
|
|
|
|
|
f"{BASE_URL}/auth/login",
|
|
|
|
|
data={"email": creds["email"], "password": creds["password"]},
|
|
|
|
|
allow_redirects=True,
|
|
|
|
|
)
|
|
|
|
|
return s
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def _create_post_trash(session):
|
|
|
|
|
return session.post(
|
|
|
|
|
f"{BASE_URL}/posts/create",
|
|
|
|
|
headers=JSON_trash,
|
|
|
|
|
data={"title": _unique_trash("trrp"), "content": "restore post body text", "topic": "devlog"},
|
|
|
|
|
).json()["data"]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def _soft_delete_post_trash(session, slug):
|
|
|
|
|
session.post(f"{BASE_URL}/posts/delete/{slug}", headers=JSON_trash, allow_redirects=False)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def _audit_find(admin, event_key, target_uid):
|
|
|
|
|
data = admin.get(
|
|
|
|
|
f"{BASE_URL}/admin/audit-log", headers=JSON_trash, params={"event_key": event_key}
|
|
|
|
|
).json()
|
|
|
|
|
for entry in data["entries"]:
|
|
|
|
|
if entry.get("target_uid") == target_uid:
|
|
|
|
|
return entry
|
|
|
|
|
return None
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def test_restore_requires_admin(seeded_db):
|
|
|
|
|
member, _ = _member_trash()
|
|
|
|
|
r = member.post(
|
|
|
|
|
f"{BASE_URL}/admin/trash/posts/anything/restore", allow_redirects=False
|
|
|
|
|
)
|
|
|
|
|
assert r.status_code in (302, 303)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def test_restore_unknown_table_404(seeded_db):
|
|
|
|
|
admin = _admin_trash(seeded_db)
|
|
|
|
|
r = admin.post(
|
|
|
|
|
f"{BASE_URL}/admin/trash/bogus/anything/restore",
|
|
|
|
|
headers=JSON_trash,
|
|
|
|
|
allow_redirects=False,
|
|
|
|
|
)
|
|
|
|
|
assert r.status_code == 404
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def test_restore_revives_post_and_records_audit(seeded_db):
|
|
|
|
|
member, _ = _member_trash()
|
|
|
|
|
post = _create_post_trash(member)
|
|
|
|
|
_soft_delete_post_trash(member, post["slug"])
|
|
|
|
|
admin = _admin_trash(seeded_db)
|
|
|
|
|
|
|
|
|
|
r = admin.post(
|
|
|
|
|
f"{BASE_URL}/admin/trash/posts/{post['uid']}/restore",
|
|
|
|
|
headers=JSON_trash,
|
|
|
|
|
allow_redirects=False,
|
|
|
|
|
)
|
|
|
|
|
assert r.status_code == 200, r.text[:300]
|
|
|
|
|
|
|
|
|
|
# restored row is live again and gone from trash
|
|
|
|
|
trash = admin.get(
|
|
|
|
|
f"{BASE_URL}/admin/trash", headers=JSON_trash, params={"table": "posts"}
|
|
|
|
|
).json()
|
|
|
|
|
assert all(item["uid"] != post["uid"] for item in trash["items"])
|
|
|
|
|
assert member.get(f"{BASE_URL}/posts/{post['slug']}").status_code == 200
|
|
|
|
|
|
|
|
|
|
entry = _audit_find(admin, "admin.trash.restore", post["uid"])
|
|
|
|
|
assert entry is not None
|
|
|
|
|
assert entry["result"] == "success"
|
2026-07-09 02:52:54 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
def test_restore_revoked_award_recomputes_stats(seeded_db):
|
|
|
|
|
from datetime import datetime, timezone
|
Full test suite is now the mandatory final validation; fix everything it surfaced
- Policy: every change ends with make test (all tiers, all tests) green; docs and agent guardrails updated accordingly
- schema.py: ensure the full filtered/indexed column set of instances via get_table (ingress_slug, ports_json, container_gateway, slug, status, ...) so a partial first insert can never break the ingress proxy
- docs_api: award body param location body -> json; gateway endpoints documented public -> user to match enforced auth
- tests: missing get_table import (trash restore), audit read as admin (award), deterministic online-roster and leaderboard-cache handling, container visibility updated to the primary-admin-only rule, scoped AI usage heading selector past the hidden Tools nav links
2026-07-22 23:54:42 +02:00
|
|
|
from devplacepy.database import get_table
|
2026-07-09 02:52:54 +02:00
|
|
|
from devplacepy.database.awards import revoke_award
|
|
|
|
|
from devplacepy.utils import generate_uid, make_combined_slug
|
|
|
|
|
|
|
|
|
|
admin = _admin_trash(seeded_db)
|
|
|
|
|
bob = get_table("users").find_one(username="bob_test")
|
|
|
|
|
alice = get_table("users").find_one(username="alice_test")
|
|
|
|
|
uid = generate_uid()
|
|
|
|
|
slug = make_combined_slug("Trash restore", uid)
|
|
|
|
|
now = datetime.now(timezone.utc).isoformat()
|
|
|
|
|
get_table("awards").insert(
|
|
|
|
|
{
|
|
|
|
|
"uid": uid,
|
|
|
|
|
"slug": slug,
|
|
|
|
|
"description": "Trash restore",
|
|
|
|
|
"giver_uid": alice["uid"],
|
|
|
|
|
"receiver_uid": bob["uid"],
|
|
|
|
|
"attachment_uid_512": "",
|
|
|
|
|
"attachment_uid_256": "",
|
|
|
|
|
"attachment_uid_64": "",
|
|
|
|
|
"generated_at": now,
|
|
|
|
|
"created_at": now,
|
|
|
|
|
"job_uid": "",
|
|
|
|
|
"deleted_at": None,
|
|
|
|
|
"deleted_by": None,
|
|
|
|
|
}
|
|
|
|
|
)
|
|
|
|
|
revoke_award(uid, alice["uid"])
|
|
|
|
|
r = admin.post(
|
|
|
|
|
f"{BASE_URL}/admin/trash/awards/{uid}/restore",
|
|
|
|
|
headers=JSON_trash,
|
|
|
|
|
allow_redirects=False,
|
|
|
|
|
)
|
|
|
|
|
assert r.status_code == 200, r.text[:300]
|
|
|
|
|
row = get_table("users").find_one(uid=bob["uid"])
|
|
|
|
|
assert row.get("award_count") == 1
|
|
|
|
|
assert row.get("last_award_uid") == uid
|
|
|
|
|
assert requests.get(f"{BASE_URL}/awards/{slug}/256").status_code in (302, 404)
|
2026-07-26 14:57:18 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
def _create_quiz_trash(session):
|
|
|
|
|
slug = session.post(
|
|
|
|
|
f"{BASE_URL}/quizzes/create",
|
|
|
|
|
headers=JSON_trash,
|
|
|
|
|
data={"title": _unique_trash("trrquiz"), "description": "restore quiz body"},
|
|
|
|
|
).json()["data"]["slug"]
|
|
|
|
|
session.post(
|
|
|
|
|
f"{BASE_URL}/quizzes/{slug}/questions",
|
|
|
|
|
headers=JSON_trash,
|
|
|
|
|
data={
|
|
|
|
|
"kind": "single_choice",
|
|
|
|
|
"prompt": "Which journal mode allows concurrent readers?",
|
|
|
|
|
"points": 2,
|
|
|
|
|
"options": "DELETE\nWAL",
|
|
|
|
|
"correct_indexes": "1",
|
|
|
|
|
},
|
|
|
|
|
)
|
|
|
|
|
session.post(f"{BASE_URL}/quizzes/{slug}/publish", headers=JSON_trash)
|
|
|
|
|
return slug
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def test_restore_revives_a_quiz_with_its_whole_cascade(seeded_db):
|
|
|
|
|
from devplacepy.database import get_table, refresh_snapshot
|
|
|
|
|
|
|
|
|
|
author, _ = _member_trash()
|
|
|
|
|
player, _ = _member_trash()
|
|
|
|
|
slug = _create_quiz_trash(author)
|
|
|
|
|
player.post(f"{BASE_URL}/quizzes/{slug}/attempts", headers=JSON_trash)
|
|
|
|
|
refresh_snapshot()
|
|
|
|
|
quiz = get_table("quizzes").find_one(slug=slug)
|
|
|
|
|
|
|
|
|
|
author.post(f"{BASE_URL}/quizzes/delete/{slug}", headers=JSON_trash, allow_redirects=False)
|
|
|
|
|
refresh_snapshot()
|
|
|
|
|
stamps = set()
|
|
|
|
|
for table in ("quiz_questions", "quiz_options", "quiz_attempts", "quiz_answers"):
|
|
|
|
|
rows = list(get_table(table).find(quiz_uid=quiz["uid"]))
|
|
|
|
|
assert rows
|
|
|
|
|
for row in rows:
|
|
|
|
|
assert row["deleted_at"]
|
|
|
|
|
stamps.add(row["deleted_at"])
|
|
|
|
|
assert len(stamps) == 1
|
|
|
|
|
|
|
|
|
|
admin = _admin_trash(seeded_db)
|
|
|
|
|
response = admin.post(
|
|
|
|
|
f"{BASE_URL}/admin/trash/quizzes/{quiz['uid']}/restore",
|
|
|
|
|
headers=JSON_trash,
|
|
|
|
|
allow_redirects=False,
|
|
|
|
|
)
|
|
|
|
|
assert response.status_code == 200, response.text[:300]
|
|
|
|
|
|
|
|
|
|
refresh_snapshot()
|
|
|
|
|
for table in ("quiz_questions", "quiz_options", "quiz_attempts", "quiz_answers"):
|
|
|
|
|
assert get_table(table).count(quiz_uid=quiz["uid"], deleted_at=None) > 0
|
|
|
|
|
assert requests.get(f"{BASE_URL}/quizzes/{slug}", headers=JSON_trash).status_code == 200
|