131 lines
3.8 KiB
Python
Raw Normal View History

# retoor <retoor@molodetz.nl>
import time
from uuid import uuid4
import requests
from tests.conftest import BASE_URL
from devplacepy.database import get_table
JSON = {"Accept": "application/json"}
_counter = [0]
def _signup():
_counter[0] += 1
name = f"mut{int(time.time() * 1000)}{_counter[0]}"
session = requests.Session()
session.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",
},
allow_redirects=True,
)
return session, name
def _uid(name):
return get_table("users").find_one(username=name)["uid"]
def _key(name):
return get_table("users").find_one(username=name)["api_key"]
def _relation(actor_uid, target_uid, kind):
return get_table("user_relations").count(
user_uid=actor_uid, target_uid=target_uid, kind=kind, deleted_at=None
)
def _new_post(session):
return session.post(
f"{BASE_URL}/posts/create",
headers=JSON,
data={
"title": f"mutpost{uuid4().hex[:8]}",
"content": "muted author still visible post",
"topic": "devlog",
},
).json()["data"]
def test_mute_creates_relation(app_server):
muter_session, muter = _signup()
_, target = _signup()
r = muter_session.post(f"{BASE_URL}/mute/{target}", allow_redirects=False)
assert r.status_code in (302, 200)
assert _relation(_uid(muter), _uid(target), "mute") == 1
def test_mute_is_idempotent(app_server):
muter_session, muter = _signup()
_, target = _signup()
muter_session.post(f"{BASE_URL}/mute/{target}", allow_redirects=False)
muter_session.post(f"{BASE_URL}/mute/{target}", allow_redirects=False)
assert _relation(_uid(muter), _uid(target), "mute") == 1
def test_self_mute_rejected(app_server):
muter_session, muter = _signup()
muter_session.post(f"{BASE_URL}/mute/{muter}", allow_redirects=False)
assert _relation(_uid(muter), _uid(muter), "mute") == 0
def test_mute_recorded_in_audit(seeded_db):
muter_session, muter = _signup()
muter_session.post(
f"{BASE_URL}/mute/bob_test", headers=JSON, allow_redirects=False
)
admin = requests.Session()
admin.headers.update({"X-API-KEY": _key("alice_test")})
data = admin.get(
f"{BASE_URL}/admin/audit-log",
headers=JSON,
params={"event_key": "relation.mute"},
).json()
assert any(
e.get("target_label") == "bob_test" and muter in (e.get("summary") or "")
for e in data["entries"]
)
def test_muted_user_notifications_suppressed(app_server):
muter_session, muter = _signup()
actor_session, actor = _signup()
muter_session.post(f"{BASE_URL}/mute/{actor}", allow_redirects=False)
actor_session.post(f"{BASE_URL}/follow/{muter}", allow_redirects=False)
assert (
get_table("notifications").count(
user_uid=_uid(muter), related_uid=_uid(actor), type="follow"
)
== 0
)
def test_muted_user_content_still_visible(app_server):
muter_session, muter = _signup()
author_session, author = _signup()
post = _new_post(author_session)
muter_session.post(f"{BASE_URL}/mute/{author}", allow_redirects=False)
feed = muter_session.get(f"{BASE_URL}/feed", headers=JSON).json()
assert post["uid"] in [i["post"]["uid"] for i in feed["posts"]]
def test_profile_json_reports_is_muted(app_server):
muter_session, muter = _signup()
_, target = _signup()
muter_session.post(f"{BASE_URL}/mute/{target}", allow_redirects=False)
data = muter_session.get(f"{BASE_URL}/profile/{target}", headers=JSON).json()
assert data["is_muted"] is True
assert data["is_blocked"] is False