182 lines
5.6 KiB
Python
Raw Normal View History

# retoor <retoor@molodetz.nl>
import asyncio
import json
import time
import pytest
import requests
import websockets
from tests.conftest import BASE_URL, PORT
from devplacepy.database import get_table, refresh_snapshot, set_setting
WS_URL = f"ws://127.0.0.1:{PORT}/messages/ws"
_counter = [0]
@pytest.fixture(scope="module", autouse=True)
def _ws_settings(app_server):
for key, value in {
"rate_limit_per_minute": "1000000",
"rate_limit_window_seconds": "60",
"registration_open": "1",
"maintenance_mode": "0",
}.items():
set_setting(key, value)
yield
def _db_user(name):
refresh_snapshot()
return get_table("users").find_one(username=name)
def _unique(prefix="wsm"):
_counter[0] += 1
return f"{prefix}{int(time.time() * 1000)}{_counter[0]}"
def _member():
name = _unique()
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",
},
allow_redirects=True,
)
return s, name
def _cookie_header(session):
token = session.cookies.get("session")
assert token, "expected a session cookie after signup"
return {"Cookie": f"session={token}"}
async def _recv_until(ws, frame_type, timeout=5.0):
deadline = asyncio.get_event_loop().time() + timeout
while True:
remaining = deadline - asyncio.get_event_loop().time()
if remaining <= 0:
raise AssertionError(f"timed out waiting for {frame_type}")
raw = await asyncio.wait_for(ws.recv(), timeout=remaining)
frame = json.loads(raw)
if frame.get("type") == frame_type:
return frame
def test_ws_requires_authentication(app_server):
async def run():
async with websockets.connect(WS_URL) as ws:
with pytest.raises(websockets.exceptions.ConnectionClosed):
await asyncio.wait_for(ws.recv(), timeout=3.0)
asyncio.run(run())
def test_ws_send_broadcasts_to_both_parties(app_server):
sender_session, _ = _member()
receiver_session, receiver_name = _member()
receiver_uid = _db_user(receiver_name)["uid"]
client_id = "cid-" + _unique("c")
async def run():
async with websockets.connect(
WS_URL, additional_headers=_cookie_header(sender_session)
) as sender_ws, websockets.connect(
WS_URL, additional_headers=_cookie_header(receiver_session)
) as receiver_ws:
await _recv_until(sender_ws, "ready")
await _recv_until(receiver_ws, "ready")
await sender_ws.send(
json.dumps(
{
"type": "send",
"receiver_uid": receiver_uid,
"content": "hello over the wire",
"client_id": client_id,
}
)
)
echo = await _recv_until(sender_ws, "message")
assert echo["client_id"] == client_id
assert echo["content"] == "hello over the wire"
assert echo["receiver_uid"] == receiver_uid
delivered = await _recv_until(receiver_ws, "message")
assert delivered["content"] == "hello over the wire"
assert delivered["sender_uid"] == echo["sender_uid"]
asyncio.run(run())
def test_ws_typing_relays_to_receiver_only(app_server):
sender_session, sender_name = _member()
receiver_session, receiver_name = _member()
sender_uid = _db_user(sender_name)["uid"]
receiver_uid = _db_user(receiver_name)["uid"]
async def run():
async with websockets.connect(
WS_URL, additional_headers=_cookie_header(sender_session)
) as sender_ws, websockets.connect(
WS_URL, additional_headers=_cookie_header(receiver_session)
) as receiver_ws:
await _recv_until(sender_ws, "ready")
await _recv_until(receiver_ws, "ready")
await sender_ws.send(
json.dumps({"type": "typing", "receiver_uid": receiver_uid})
)
typing = await _recv_until(receiver_ws, "typing")
assert typing["from_uid"] == sender_uid
asyncio.run(run())
def test_ws_read_marks_and_notifies(app_server):
sender_session, sender_name = _member()
receiver_session, receiver_name = _member()
sender_uid = _db_user(sender_name)["uid"]
receiver_uid = _db_user(receiver_name)["uid"]
sender_session.post(
f"{BASE_URL}/messages/send",
headers={"Accept": "application/json"},
data={"content": "read me please", "receiver_uid": receiver_uid},
)
async def run():
async with websockets.connect(
WS_URL, additional_headers=_cookie_header(sender_session)
) as sender_ws, websockets.connect(
WS_URL, additional_headers=_cookie_header(receiver_session)
) as receiver_ws:
await _recv_until(sender_ws, "ready")
await _recv_until(receiver_ws, "ready")
await receiver_ws.send(
json.dumps({"type": "read", "with_uid": sender_uid})
)
receipt = await _recv_until(sender_ws, "read")
assert receipt["by_uid"] == receiver_uid
asyncio.run(run())
refresh_snapshot()
rows = list(
get_table("messages").find(
sender_uid=sender_uid, receiver_uid=receiver_uid, read=True
)
)
assert rows, "messages should be marked read after the read frame"