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.
171 lines
6.7 KiB
Python
171 lines
6.7 KiB
Python
# retoor <retoor@molodetz.nl>
|
|
|
|
from playwright.sync_api import expect
|
|
|
|
from devplacepy.database import get_table, refresh_snapshot
|
|
from tests.conftest import BASE_URL
|
|
|
|
|
|
def _create_post(page, content):
|
|
page.goto(f"{BASE_URL}/feed", wait_until="domcontentloaded")
|
|
page.locator(".feed-fab").first.wait_for(state="visible", timeout=10000)
|
|
page.locator(".feed-fab").first.click()
|
|
page.fill("#post-content", content)
|
|
page.locator("#create-post-modal button.btn-primary:has-text('Post')").click()
|
|
page.wait_for_url(f"{BASE_URL}/posts/*", wait_until="domcontentloaded")
|
|
return page.url.rsplit("/", 1)[-1]
|
|
|
|
|
|
def test_the_report_control_is_present_on_the_feed_and_a_post(alice, bob):
|
|
alice_page, _ = alice
|
|
bob_page, _ = bob
|
|
_create_post(alice_page, "A post that another member can report from the feed.")
|
|
|
|
bob_page.goto(f"{BASE_URL}/feed", wait_until="domcontentloaded")
|
|
expect(bob_page.locator(".report-btn").first).to_be_visible()
|
|
expect(bob_page.locator(".block-btn").first).to_be_attached()
|
|
|
|
|
|
def test_the_report_control_is_absent_on_your_own_content(alice):
|
|
page, _ = alice
|
|
slug = _create_post(page, "A post whose author must not see a report control.")
|
|
page.goto(f"{BASE_URL}/posts/{slug}", wait_until="domcontentloaded")
|
|
expect(page.locator(".post-detail-actions .report-btn")).to_have_count(0)
|
|
|
|
|
|
def test_reporting_a_post_end_to_end_through_the_dialog(alice, bob):
|
|
alice_page, _ = alice
|
|
bob_page, _ = bob
|
|
slug = _create_post(alice_page, "A post reported end to end through the dialog.")
|
|
|
|
bob_page.goto(f"{BASE_URL}/posts/{slug}", wait_until="domcontentloaded")
|
|
bob_page.locator(".report-btn").first.click()
|
|
|
|
dialog = bob_page.locator("#report-dialog")
|
|
dialog.wait_for(state="visible")
|
|
bob_page.select_option("#report-reason", "harassment")
|
|
bob_page.fill("#report-detail", "Reported by the end-to-end test.")
|
|
bob_page.locator("#report-form button[type='submit']").click()
|
|
|
|
expect(bob_page.locator("dp-toast")).to_contain_text("Report received", timeout=8000)
|
|
|
|
bob_page.goto(f"{BASE_URL}/reports/mine", wait_until="domcontentloaded")
|
|
expect(bob_page.locator("table")).to_contain_text("Harassment")
|
|
|
|
|
|
def test_the_admin_queue_shows_the_report_and_its_sla_badge(alice, bob):
|
|
alice_page, _ = alice
|
|
bob_page, _ = bob
|
|
slug = _create_post(alice_page, "A post that must appear in the moderation queue.")
|
|
|
|
bob_page.goto(f"{BASE_URL}/posts/{slug}", wait_until="domcontentloaded")
|
|
bob_page.locator(".report-btn").first.click()
|
|
bob_page.locator("#report-dialog").wait_for(state="visible")
|
|
bob_page.select_option("#report-reason", "spam")
|
|
bob_page.locator("#report-form button[type='submit']").click()
|
|
expect(bob_page.locator("dp-toast")).to_contain_text("Report received", timeout=8000)
|
|
|
|
alice_page.goto(f"{BASE_URL}/admin/moderation", wait_until="domcontentloaded")
|
|
expect(alice_page.locator(".sla-badge")).to_be_visible()
|
|
expect(alice_page.locator(".admin-table")).to_contain_text("Spam")
|
|
|
|
|
|
def test_the_report_dialog_lists_every_reason(alice):
|
|
from devplacepy.database import REPORT_REASONS
|
|
|
|
page, _ = alice
|
|
page.goto(f"{BASE_URL}/feed", wait_until="domcontentloaded")
|
|
options = page.locator("#report-reason option")
|
|
assert options.count() == len(REPORT_REASONS)
|
|
|
|
|
|
def test_blocking_from_a_content_action_bar_hides_the_author(alice, bob):
|
|
alice_page, alice_user = alice
|
|
bob_page, _ = bob
|
|
marker = "A post that disappears from the feed after a block."
|
|
_create_post(alice_page, marker)
|
|
|
|
bob_page.goto(f"{BASE_URL}/feed", wait_until="domcontentloaded")
|
|
expect(bob_page.locator(".post-card").first).to_be_visible()
|
|
|
|
bob_page.locator(".block-btn").first.click()
|
|
bob_page.locator(".dialog-overlay.visible .dialog-confirm").click()
|
|
bob_page.wait_for_load_state("domcontentloaded")
|
|
|
|
bob_page.goto(f"{BASE_URL}/feed", wait_until="domcontentloaded")
|
|
assert marker not in bob_page.content()
|
|
|
|
bob_page.goto(
|
|
f"{BASE_URL}/profile/{alice_user['username']}", wait_until="domcontentloaded"
|
|
)
|
|
bob_page.locator("button:has-text('Unblock')").first.click()
|
|
bob_page.locator(".dialog-overlay.visible .dialog-confirm").click()
|
|
bob_page.wait_for_load_state("domcontentloaded")
|
|
|
|
|
|
def test_the_footer_links_every_legal_page(page, app_server):
|
|
page.goto(f"{BASE_URL}/feed", wait_until="domcontentloaded")
|
|
footer = page.locator(".footer-links")
|
|
for label in ("Terms", "Privacy", "Guidelines", "Contact"):
|
|
expect(footer.locator(f"a:has-text('{label}')")).to_be_visible()
|
|
|
|
|
|
def test_the_legal_pages_render_for_a_guest(page, app_server):
|
|
for slug in (
|
|
"terms",
|
|
"community-guidelines",
|
|
"privacy",
|
|
"contact",
|
|
"content-moderation",
|
|
"intellectual-property",
|
|
):
|
|
page.goto(f"{BASE_URL}/docs/{slug}.html", wait_until="domcontentloaded")
|
|
expect(page.locator("h1").first).to_be_visible()
|
|
|
|
|
|
def test_the_admin_operations_page_is_hidden_from_a_guest(page, app_server):
|
|
page.goto(
|
|
f"{BASE_URL}/docs/moderation-operations.html", wait_until="domcontentloaded"
|
|
)
|
|
assert "not found" in page.content().lower()
|
|
|
|
|
|
def test_the_admin_operations_page_renders_for_an_admin(alice):
|
|
alice_page, _ = alice
|
|
alice_page.goto(
|
|
f"{BASE_URL}/docs/moderation-operations.html", wait_until="domcontentloaded"
|
|
)
|
|
expect(alice_page.locator("h1").first).to_be_visible()
|
|
assert "App review checklist" in alice_page.content()
|
|
|
|
|
|
def test_deleting_an_account_through_the_ui_ends_the_login(page, app_server):
|
|
import time
|
|
|
|
name = f"e2edel{int(time.time() * 1000)}"
|
|
page.goto(f"{BASE_URL}/auth/signup", wait_until="domcontentloaded")
|
|
page.fill("#username", name)
|
|
page.fill("#email", f"{name}@t.dev")
|
|
page.fill("#password", "secret123")
|
|
page.fill("#confirm_password", "secret123")
|
|
page.fill("#birth_date", "1990-01-01")
|
|
page.check("#accept_terms")
|
|
page.click("button:has-text('Create account')")
|
|
page.wait_for_url("**/feed", wait_until="domcontentloaded")
|
|
|
|
page.goto(f"{BASE_URL}/profile/{name}/delete", wait_until="domcontentloaded")
|
|
page.fill("#delete-password", "secret123")
|
|
page.locator("button:has-text('Delete my account')").click()
|
|
page.locator(".dialog-overlay.visible .dialog-confirm").click()
|
|
page.wait_for_url(f"{BASE_URL}/", wait_until="domcontentloaded")
|
|
|
|
refresh_snapshot()
|
|
assert get_table("users").find_one(username=name) is None
|
|
|
|
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_load_state("domcontentloaded")
|
|
assert "/feed" not in page.url
|