162 lines
5.5 KiB
Python
Raw Normal View History

# retoor <retoor@molodetz.nl>
import asyncio
import io
import json
import time
import zipfile
from pathlib import Path
import requests
from playwright.sync_api import expect
from tests.conftest import BASE_URL
from devplacepy.database import get_table, refresh_snapshot
from devplacepy.services.jobs import queue
from devplacepy.services.jobs.zip_service import ZipService
from tests.conftest import run_async
_counter_zip_download = [0]
def _signup_zip_download():
_counter_zip_download[0] += 1
name = f"zd{int(time.time() * 1000)}{_counter_zip_download[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,
)
refresh_snapshot()
key = get_table("users").find_one(username=name)["api_key"]
return name, key
def _h_zip_download(key):
return {"X-API-KEY": key, "Accept": "application/json"}
def _create_project_zip_download(key, title):
r = requests.post(
f"{BASE_URL}/projects/create",
headers=_h_zip_download(key),
data={
"title": title,
"description": "zip download test",
"project_type": "software",
"status": "In Development",
},
)
assert r.status_code == 200, r.text
return r.json()["data"]
def _write_zip_download(key, slug, path, content):
r = requests.post(
f"{BASE_URL}/projects/{slug}/files/write",
headers=_h_zip_download(key),
data={"path": path, "content": content},
allow_redirects=False,
)
assert r.status_code in (200, 302), r.text
def _process_uid(uid):
async def drive():
svc = ZipService()
for _ in range(400):
await svc.run_once()
refresh_snapshot()
job = queue.get_job(uid)
if job and job["status"] in ("done", "failed"):
return
await asyncio.sleep(0.05)
run_async(drive())
def _drain_pending():
async def drive():
svc = ZipService()
appeared = False
for _ in range(600):
refresh_snapshot()
pending = [
r
for r in get_table("jobs").find(kind="zip")
if r["status"] in ("pending", "running")
]
if pending:
appeared = True
await svc.run_once()
refresh_snapshot()
pending = [
r
for r in get_table("jobs").find(kind="zip")
if r["status"] in ("pending", "running")
]
if appeared and not pending and not svc._inflight:
return
await asyncio.sleep(0.05)
run_async(drive())
def _cleanup_archives():
refresh_snapshot()
jobs = get_table("jobs")
for row in list(jobs.find(kind="zip")):
result = json.loads(row.get("result") or "{}")
local_path = result.get("local_path")
if local_path:
Path(local_path).unlink(missing_ok=True)
jobs.delete(uid=row["uid"])
def _login_zip_download(page, name):
page.goto(f"{BASE_URL}/auth/login", wait_until="domcontentloaded")
page.fill("#email", f"{name}@t.dev")
page.fill("#password", "secret123")
page.click("button:has-text('Sign in')")
page.wait_for_url("**/feed", timeout=10000, wait_until="domcontentloaded")
def test_enqueue_project_zip_returns_uid(app_server):
try:
_, key = _signup_zip_download()
proj = _create_project_zip_download(key, "Enqueue Returns Uid")
slug = proj["slug"] or proj["uid"]
r = requests.post(f"{BASE_URL}/projects/{slug}/zip", headers=_h_zip_download(key))
assert r.status_code == 200, r.text
body = r.json()
assert body["uid"]
assert body["status_url"] == f"/zips/{body['uid']}"
finally:
_cleanup_archives()
def test_status_pending_then_done_then_download(app_server):
try:
_, key = _signup_zip_download()
proj = _create_project_zip_download(key, "Full Flow")
slug = proj["slug"] or proj["uid"]
_write_zip_download(key, slug, "README.md", "# hello")
_write_zip_download(key, slug, "src/app.py", "print(1)\n")
uid = requests.post(f"{BASE_URL}/projects/{slug}/zip", headers=_h_zip_download(key)).json()[
"uid"
]
pending = requests.get(
f"{BASE_URL}/zips/{uid}", headers={"Accept": "application/json"}
).json()
assert pending["status"] in ("pending", "running")
assert pending["download_url"] is None
_process_uid(uid)
done = requests.get(
f"{BASE_URL}/zips/{uid}", headers={"Accept": "application/json"}
).json()
assert done["status"] == "done", done
assert done["download_url"] == f"/zips/{uid}/download"
assert done["file_count"] == 2 and done["dir_count"] == 1
dl = requests.get(f"{BASE_URL}{done['download_url']}")
assert dl.status_code == 200
assert dl.headers["content-type"] == "application/zip"
assert "attachment" in dl.headers.get("content-disposition", "")
assert ".zip" in dl.headers.get("content-disposition", "")
names = sorted(zipfile.ZipFile(io.BytesIO(dl.content)).namelist())
assert names == ["README.md", "src/", "src/app.py"]
finally:
_cleanup_archives()