209 lines
6.3 KiB
Python
Raw Normal View History

# retoor <retoor@molodetz.nl>
import time
from uuid import uuid4
from datetime import datetime, timezone
import requests
from tests.conftest import BASE_URL
from devplacepy.database import get_table
from devplacepy.utils import make_combined_slug
JSON = {"Accept": "application/json"}
_counter = [0]
def _signup():
_counter[0] += 1
name = f"blkvis{int(time.time() * 1000)}{_counter[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,
)
return session, name
def _uid(name):
return get_table("users").find_one(username=name)["uid"]
def _new_post(session, content="blocked author post body"):
return session.post(
f"{BASE_URL}/posts/create",
headers=JSON,
data={"title": f"blkpost{uuid4().hex[:8]}", "content": content, "topic": "devlog"},
).json()["data"]
def _new_project(session):
return session.post(
f"{BASE_URL}/projects/create",
headers=JSON,
data={
"title": f"blkproj{uuid4().hex[:8]}",
"description": "blocked author project description",
"project_type": "software",
"status": "In Development",
"platforms": "",
},
).json()["data"]
def _new_gist(session):
return session.post(
f"{BASE_URL}/gists/create",
headers=JSON,
data={
"title": f"blkgist{uuid4().hex[:8]}",
"description": "blocked author gist",
"source_code": "print('x')",
"language": "python",
},
).json()["data"]
def test_blocked_author_post_hidden_from_feed(app_server):
blocker_session, blocker = _signup()
author_session, author = _signup()
post = _new_post(author_session)
before = blocker_session.get(f"{BASE_URL}/feed", headers=JSON).json()
assert post["uid"] in [i["post"]["uid"] for i in before["posts"]]
blocker_session.post(f"{BASE_URL}/block/{author}", allow_redirects=False)
after = blocker_session.get(f"{BASE_URL}/feed", headers=JSON).json()
assert post["uid"] not in [i["post"]["uid"] for i in after["posts"]]
def test_blocked_author_gist_hidden_from_listing(app_server):
blocker_session, blocker = _signup()
author_session, author = _signup()
gist = _new_gist(author_session)
blocker_session.post(f"{BASE_URL}/block/{author}", allow_redirects=False)
data = blocker_session.get(f"{BASE_URL}/gists", headers=JSON).json()
assert gist["uid"] not in [i["gist"]["uid"] for i in data["gists"]]
def test_blocked_author_project_hidden_from_listing(app_server):
blocker_session, blocker = _signup()
author_session, author = _signup()
project = _new_project(author_session)
blocker_session.post(f"{BASE_URL}/block/{author}", allow_redirects=False)
data = blocker_session.get(f"{BASE_URL}/projects", headers=JSON).json()
assert project["uid"] not in [i["uid"] for i in data["projects"]]
def test_blocked_author_post_detail_404(app_server):
blocker_session, blocker = _signup()
author_session, author = _signup()
post = _new_post(author_session)
blocker_session.post(f"{BASE_URL}/block/{author}", allow_redirects=False)
r = blocker_session.get(f"{BASE_URL}/posts/{post['slug']}")
assert r.status_code == 404
def test_blocked_author_comment_hidden_on_detail(app_server):
blocker_session, blocker = _signup()
host_session, host = _signup()
commenter_session, commenter = _signup()
post = _new_post(host_session)
commenter_session.post(
f"{BASE_URL}/comments/create",
headers=JSON,
data={
"target_type": "post",
"target_uid": post["uid"],
"content": "comment from a blocked user",
},
)
detail = blocker_session.get(
f"{BASE_URL}/posts/{post['slug']}", headers=JSON
).json()
assert any(
c["comment"]["content"] == "comment from a blocked user"
for c in detail["comments"]
)
blocker_session.post(f"{BASE_URL}/block/{commenter}", allow_redirects=False)
detail2 = blocker_session.get(
f"{BASE_URL}/posts/{post['slug']}", headers=JSON
).json()
assert not any(
c["comment"]["content"] == "comment from a blocked user"
for c in detail2["comments"]
)
def test_blocked_user_cannot_send_dm(app_server):
blocker_session, blocker = _signup()
sender_session, sender = _signup()
blocker_session.post(f"{BASE_URL}/block/{sender}", allow_redirects=False)
sender_session.post(
f"{BASE_URL}/messages/send",
headers=JSON,
data={"receiver_uid": _uid(blocker), "content": "you blocked me"},
allow_redirects=False,
)
assert (
get_table("messages").count(
sender_uid=_uid(sender), receiver_uid=_uid(blocker)
)
== 0
)
def test_block_suppresses_notifications(app_server):
blocker_session, blocker = _signup()
actor_session, actor = _signup()
blocker_session.post(f"{BASE_URL}/block/{actor}", allow_redirects=False)
actor_session.post(f"{BASE_URL}/follow/{blocker}", allow_redirects=False)
assert (
get_table("notifications").count(
user_uid=_uid(blocker), related_uid=_uid(actor), type="follow"
)
== 0
)
def test_profile_json_reports_is_blocked(app_server):
blocker_session, blocker = _signup()
_, target = _signup()
blocker_session.post(f"{BASE_URL}/block/{target}", allow_redirects=False)
data = blocker_session.get(
f"{BASE_URL}/profile/{target}", headers=JSON
).json()
assert data["is_blocked"] is True
assert data["is_muted"] is False
def test_blocked_user_profile_still_shows_their_posts(app_server):
blocker_session, blocker = _signup()
author_session, author = _signup()
post = _new_post(author_session, content="visible on my own profile")
blocker_session.post(f"{BASE_URL}/block/{author}", allow_redirects=False)
data = blocker_session.get(
f"{BASE_URL}/profile/{author}", headers=JSON
).json()
assert post["uid"] in [p["post"]["uid"] for p in data["posts"]]