2026-07-04 20:07:33 +02:00
|
|
|
# retoor <retoor@molodetz.nl>
|
|
|
|
|
|
|
|
|
|
import time
|
|
|
|
|
import pytest
|
|
|
|
|
import requests
|
|
|
|
|
from tests.conftest import BASE_URL
|
|
|
|
|
from devplacepy.database import get_table, refresh_snapshot
|
|
|
|
|
|
|
|
|
|
JSON_analytics = {"Accept": "application/json"}
|
|
|
|
|
_counter_analytics = [0]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def _db_user(name):
|
|
|
|
|
refresh_snapshot()
|
|
|
|
|
return get_table("users").find_one(username=name)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def _unique(prefix="an"):
|
|
|
|
|
_counter_analytics[0] += 1
|
|
|
|
|
return f"{prefix}{int(time.time() * 1000)}{_counter_analytics[0]}"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def _member_key():
|
|
|
|
|
name = _unique("anmem")
|
|
|
|
|
requests.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-07-04 20:07:33 +02:00
|
|
|
},
|
|
|
|
|
allow_redirects=True,
|
|
|
|
|
)
|
|
|
|
|
return _db_user(name)["api_key"]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def _admin_key(seeded_db):
|
|
|
|
|
return _db_user("alice_test")["api_key"]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def test_analytics_guest_denied(seeded_db):
|
|
|
|
|
assert (
|
|
|
|
|
requests.get(
|
|
|
|
|
f"{BASE_URL}/admin/analytics", headers=JSON_analytics, allow_redirects=False
|
|
|
|
|
).status_code
|
|
|
|
|
== 401
|
|
|
|
|
)
|
|
|
|
|
assert (
|
|
|
|
|
requests.get(f"{BASE_URL}/admin/analytics", allow_redirects=False).status_code
|
|
|
|
|
== 303
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def test_analytics_member_denied(seeded_db):
|
|
|
|
|
key = _member_key()
|
|
|
|
|
assert (
|
|
|
|
|
requests.get(
|
|
|
|
|
f"{BASE_URL}/admin/analytics",
|
|
|
|
|
headers={**JSON_analytics, "X-API-KEY": key},
|
|
|
|
|
allow_redirects=False,
|
|
|
|
|
).status_code
|
|
|
|
|
== 403
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def test_analytics_admin_ok(seeded_db):
|
|
|
|
|
key = _admin_key(seeded_db)
|
|
|
|
|
r = requests.get(
|
|
|
|
|
f"{BASE_URL}/admin/analytics", headers={**JSON_analytics, "X-API-KEY": key}
|
|
|
|
|
)
|
|
|
|
|
assert r.status_code == 200
|
|
|
|
|
assert isinstance(r.json(), dict)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def test_analytics_denial_is_audited(seeded_db):
|
|
|
|
|
key = _member_key()
|
|
|
|
|
requests.get(
|
|
|
|
|
f"{BASE_URL}/admin/analytics",
|
|
|
|
|
headers={**JSON_analytics, "X-API-KEY": key},
|
|
|
|
|
allow_redirects=False,
|
|
|
|
|
)
|
|
|
|
|
admin_key = _admin_key(seeded_db)
|
|
|
|
|
hit = False
|
|
|
|
|
for _ in range(20):
|
|
|
|
|
data = requests.get(
|
|
|
|
|
f"{BASE_URL}/admin/audit-log",
|
|
|
|
|
headers={**JSON_analytics, "X-API-KEY": admin_key},
|
|
|
|
|
params={"event_key": "security.authz.denied"},
|
|
|
|
|
).json()
|
|
|
|
|
hit = any(
|
|
|
|
|
"/admin/analytics" in (entry.get("summary") or "")
|
|
|
|
|
or "/admin/analytics" in (entry.get("request_path") or "")
|
|
|
|
|
for entry in data["entries"]
|
|
|
|
|
)
|
|
|
|
|
if hit:
|
|
|
|
|
break
|
|
|
|
|
time.sleep(0.25)
|
|
|
|
|
assert hit, "expected a security.authz.denied audit row for /admin/analytics"
|