2026-06-13 16:32:33 +02:00
|
|
|
# retoor <retoor@molodetz.nl>
|
|
|
|
|
|
|
|
|
|
import io
|
|
|
|
|
import re
|
|
|
|
|
import uuid
|
|
|
|
|
import requests
|
|
|
|
|
from PIL import Image
|
|
|
|
|
from tests.conftest import BASE_URL
|
|
|
|
|
def _user_uploads(prefix="up"):
|
|
|
|
|
s = requests.Session()
|
|
|
|
|
name = f"{prefix}_{uuid.uuid4().hex[:10]}"
|
|
|
|
|
s.post(
|
|
|
|
|
f"{BASE_URL}/auth/signup",
|
|
|
|
|
data={
|
|
|
|
|
"username": name,
|
|
|
|
|
"email": f"{name}@test.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-13 16:32:33 +02:00
|
|
|
},
|
|
|
|
|
allow_redirects=True,
|
|
|
|
|
)
|
|
|
|
|
return s, name
|
|
|
|
|
def _session_uploads():
|
|
|
|
|
s, _ = _user_uploads()
|
|
|
|
|
return s
|
|
|
|
|
def _png_bytes_uploads():
|
|
|
|
|
buf = io.BytesIO()
|
|
|
|
|
Image.new("RGB", (4, 4), (255, 0, 0)).save(buf, "PNG")
|
|
|
|
|
return buf.getvalue()
|
|
|
|
|
def _upload_uploads(s, name="a.png"):
|
|
|
|
|
r = s.post(
|
|
|
|
|
f"{BASE_URL}/uploads/upload", files={"file": (name, _png_bytes_uploads(), "image/png")}
|
|
|
|
|
)
|
|
|
|
|
assert r.status_code == 201, r.text
|
|
|
|
|
return r.json()["uid"]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def test_project_links_multiple_attachments(app_server):
|
|
|
|
|
s = _session_uploads()
|
|
|
|
|
u1, u2 = _upload_uploads(s), _upload_uploads(s)
|
|
|
|
|
r = s.post(
|
|
|
|
|
f"{BASE_URL}/projects/create",
|
|
|
|
|
data={
|
|
|
|
|
"title": "Attach Project",
|
|
|
|
|
"description": "Project with attachments",
|
|
|
|
|
"project_type": "software",
|
|
|
|
|
"platforms": "linux",
|
|
|
|
|
"status": "In Development",
|
|
|
|
|
"attachment_uids": f"{u1},{u2}",
|
|
|
|
|
},
|
|
|
|
|
allow_redirects=True,
|
|
|
|
|
)
|
|
|
|
|
assert r.status_code == 200, r.text[:300]
|
|
|
|
|
assert "/projects/" in r.url, r.url
|
|
|
|
|
assert u1 in r.text and u2 in r.text, (
|
|
|
|
|
"both attachments must be linked and displayed on the project"
|
|
|
|
|
)
|