89 lines
2.9 KiB
Python
Raw Normal View History

# retoor <retoor@molodetz.nl>
import requests
from tests.conftest import BASE_URL
from devplacepy.database import get_table
def _config(page, **fields):
page.request.post(f"{BASE_URL}/admin/services/openai/config", form=fields)
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
def _grant_ai_consent(page, username):
page.request.post(
f"{BASE_URL}/profile/{username}/consent",
form={"kind": "ai_third_party", "granted": "1"},
)
def test_embeddings_disabled_returns_503(alice):
page, _ = alice
page.request.post(f"{BASE_URL}/admin/services/openai/stop")
try:
r = requests.post(
f"{BASE_URL}/openai/v1/embeddings", json={"input": "hello"}
)
assert r.status_code == 503
finally:
page.request.post(f"{BASE_URL}/admin/services/openai/start")
def test_embeddings_requires_auth(alice):
page, _ = alice
page.request.post(f"{BASE_URL}/admin/services/openai/start")
_config(page, gateway_access_key="embedkey")
try:
no_creds = requests.post(
f"{BASE_URL}/openai/v1/embeddings", json={"input": "hello"}
)
assert no_creds.status_code == 401
finally:
_config(page, gateway_access_key="")
page.request.post(f"{BASE_URL}/admin/services/openai/start")
def test_embeddings_auth_passes_upstream_unreachable(alice):
page, user = alice
page.request.post(f"{BASE_URL}/admin/services/openai/start")
_config(
page,
gateway_embed_enabled="1",
gateway_embed_url="http://127.0.0.1:9/embeddings",
gateway_access_key="embedkey",
)
try:
with_key = requests.post(
f"{BASE_URL}/openai/v1/embeddings",
headers={"X-API-KEY": "embedkey"},
json={"model": "molodetz~embed", "input": "hello"},
)
assert with_key.status_code == 502
admin_key = get_table("users").find_one(username=user["username"])["api_key"]
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
_grant_ai_consent(page, user["username"])
with_admin = requests.post(
f"{BASE_URL}/openai/v1/embeddings",
headers={"Authorization": f"Bearer {admin_key}"},
json={"model": "molodetz~embed", "input": "hello"},
)
assert with_admin.status_code == 502
finally:
_config(page, gateway_access_key="")
page.request.post(f"{BASE_URL}/admin/services/openai/start")
def test_embeddings_disabled_via_config_returns_503(alice):
page, _ = alice
page.request.post(f"{BASE_URL}/admin/services/openai/start")
_config(page, gateway_embed_enabled="0", gateway_access_key="embedkey")
try:
r = requests.post(
f"{BASE_URL}/openai/v1/embeddings",
headers={"X-API-KEY": "embedkey"},
json={"input": "hello"},
)
assert r.status_code == 503
finally:
_config(page, gateway_embed_enabled="1", gateway_access_key="")
page.request.post(f"{BASE_URL}/admin/services/openai/start")