2026-06-23 02:47:40 +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, set_setting
|
|
|
|
|
|
|
|
|
|
JSON = {"Accept": "application/json"}
|
|
|
|
|
_counter_perm = [0]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.fixture(scope="module", autouse=True)
|
|
|
|
|
def _perm_settings(app_server):
|
|
|
|
|
for key, value in {
|
|
|
|
|
"rate_limit_per_minute": "1000000",
|
|
|
|
|
"rate_limit_window_seconds": "60",
|
|
|
|
|
"registration_open": "1",
|
|
|
|
|
"maintenance_mode": "0",
|
|
|
|
|
"max_attachments_per_resource": "10",
|
|
|
|
|
"allowed_file_types": "",
|
|
|
|
|
}.items():
|
|
|
|
|
set_setting(key, value)
|
|
|
|
|
yield
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def _member():
|
|
|
|
|
_counter_perm[0] += 1
|
|
|
|
|
name = f"perm{int(time.time() * 1000)}{_counter_perm[0]}"
|
|
|
|
|
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-23 02:47:40 +02:00
|
|
|
},
|
|
|
|
|
allow_redirects=True,
|
|
|
|
|
)
|
|
|
|
|
refresh_snapshot()
|
|
|
|
|
return s, name, get_table("users").find_one(username=name)["uid"]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def _admin_session(seeded_db):
|
|
|
|
|
refresh_snapshot()
|
|
|
|
|
key = get_table("users").find_one(username="alice_test")["api_key"]
|
|
|
|
|
s = requests.Session()
|
|
|
|
|
s.headers.update({"X-API-KEY": key, **JSON})
|
|
|
|
|
return s, get_table("users").find_one(username="alice_test")["uid"]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def _create_post(session):
|
|
|
|
|
session.post(
|
|
|
|
|
f"{BASE_URL}/posts/create",
|
|
|
|
|
headers=JSON,
|
|
|
|
|
data={
|
|
|
|
|
"title": f"perm post {_counter_perm[0]}",
|
|
|
|
|
"content": "a post body for permission tests",
|
|
|
|
|
"topic": "devlog",
|
|
|
|
|
},
|
|
|
|
|
)
|
|
|
|
|
refresh_snapshot()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def _latest_post(uid):
|
|
|
|
|
refresh_snapshot()
|
|
|
|
|
rows = list(get_table("posts").find(user_uid=uid, deleted_at=None))
|
|
|
|
|
return max(rows, key=lambda r: r["id"])
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def test_admin_deletes_member_post(seeded_db):
|
|
|
|
|
member, _, muid = _member()
|
|
|
|
|
_create_post(member)
|
|
|
|
|
post = _latest_post(muid)
|
|
|
|
|
admin, admin_uid = _admin_session(seeded_db)
|
|
|
|
|
r = admin.post(f"{BASE_URL}/posts/delete/{post['slug']}")
|
|
|
|
|
assert r.status_code in (200, 302), r.text[:200]
|
|
|
|
|
refresh_snapshot()
|
|
|
|
|
row = get_table("posts").find_one(uid=post["uid"])
|
|
|
|
|
assert row["deleted_at"] is not None
|
|
|
|
|
assert row["deleted_by"] == admin_uid
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def test_member_cannot_delete_other_members_post(seeded_db):
|
|
|
|
|
owner, _, ouid = _member()
|
|
|
|
|
_create_post(owner)
|
|
|
|
|
post = _latest_post(ouid)
|
|
|
|
|
other, _, _ = _member()
|
|
|
|
|
r = other.post(f"{BASE_URL}/posts/delete/{post['slug']}", headers=JSON, allow_redirects=False)
|
|
|
|
|
assert r.status_code in (302, 403)
|
|
|
|
|
refresh_snapshot()
|
|
|
|
|
assert get_table("posts").find_one(uid=post["uid"])["deleted_at"] is None
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def test_admin_deletes_member_comment(seeded_db):
|
|
|
|
|
member, _, muid = _member()
|
|
|
|
|
_create_post(member)
|
|
|
|
|
post = _latest_post(muid)
|
|
|
|
|
member.post(
|
|
|
|
|
f"{BASE_URL}/comments/create",
|
|
|
|
|
headers=JSON,
|
|
|
|
|
data={
|
|
|
|
|
"content": "member comment to be removed by admin",
|
|
|
|
|
"target_type": "post",
|
|
|
|
|
"target_uid": post["uid"],
|
|
|
|
|
"post_uid": post["uid"],
|
|
|
|
|
},
|
|
|
|
|
)
|
|
|
|
|
refresh_snapshot()
|
|
|
|
|
comment = max(
|
|
|
|
|
get_table("comments").find(target_uid=post["uid"], deleted_at=None),
|
|
|
|
|
key=lambda c: c["id"],
|
|
|
|
|
)
|
|
|
|
|
admin, admin_uid = _admin_session(seeded_db)
|
|
|
|
|
r = admin.post(f"{BASE_URL}/comments/delete/{comment['uid']}")
|
|
|
|
|
assert r.status_code in (200, 302), r.text[:200]
|
|
|
|
|
refresh_snapshot()
|
|
|
|
|
assert get_table("comments").find_one(uid=comment["uid"])["deleted_at"] is not None
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def test_admin_deletes_member_attachment(seeded_db):
|
|
|
|
|
member, _, muid = _member()
|
|
|
|
|
refresh_snapshot()
|
|
|
|
|
key = get_table("users").find_one(uid=muid)["api_key"]
|
|
|
|
|
up = requests.post(
|
|
|
|
|
f"{BASE_URL}/uploads/upload",
|
|
|
|
|
headers={"X-API-KEY": key},
|
|
|
|
|
files={"file": ("note.txt", b"attachment bytes", "text/plain")},
|
|
|
|
|
)
|
|
|
|
|
assert up.status_code == 201, up.text[:200]
|
|
|
|
|
att_uid = up.json()["uid"]
|
|
|
|
|
admin, admin_uid = _admin_session(seeded_db)
|
|
|
|
|
r = admin.delete(f"{BASE_URL}/uploads/delete/{att_uid}")
|
|
|
|
|
assert r.status_code == 200, r.text[:200]
|
|
|
|
|
refresh_snapshot()
|
|
|
|
|
assert get_table("attachments").find_one(uid=att_uid)["deleted_at"] is not None
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def test_soft_deleted_post_returns_404(app_server):
|
|
|
|
|
member, _, muid = _member()
|
|
|
|
|
_create_post(member)
|
|
|
|
|
post = _latest_post(muid)
|
|
|
|
|
member.post(f"{BASE_URL}/posts/delete/{post['slug']}", headers=JSON)
|
|
|
|
|
refresh_snapshot()
|
|
|
|
|
r = requests.get(f"{BASE_URL}/posts/{post['slug']}")
|
|
|
|
|
assert r.status_code == 404
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def test_soft_deleted_gist_returns_404(app_server):
|
|
|
|
|
member, _, muid = _member()
|
|
|
|
|
member.post(
|
|
|
|
|
f"{BASE_URL}/gists/create",
|
|
|
|
|
headers=JSON,
|
|
|
|
|
data={
|
|
|
|
|
"title": "perm gist",
|
|
|
|
|
"description": "gist for soft delete check",
|
|
|
|
|
"language": "python",
|
|
|
|
|
"source_code": "print('hi')",
|
|
|
|
|
},
|
|
|
|
|
)
|
|
|
|
|
refresh_snapshot()
|
|
|
|
|
gist = max(get_table("gists").find(user_uid=muid, deleted_at=None), key=lambda g: g["id"])
|
|
|
|
|
member.post(f"{BASE_URL}/gists/delete/{gist['slug']}", headers=JSON)
|
|
|
|
|
refresh_snapshot()
|
|
|
|
|
r = requests.get(f"{BASE_URL}/gists/{gist['slug']}")
|
|
|
|
|
assert r.status_code == 404
|