2026-06-13 16:32:33 +02:00
|
|
|
# retoor <retoor@molodetz.nl>
|
2026-06-02 23:17:51 +02:00
|
|
|
|
2026-06-13 16:32:33 +02:00
|
|
|
import uuid
|
2026-06-02 23:17:51 +02:00
|
|
|
import requests
|
|
|
|
|
from tests.conftest import BASE_URL
|
2026-06-13 16:32:33 +02:00
|
|
|
def _session_push():
|
2026-06-02 23:17:51 +02:00
|
|
|
s = requests.Session()
|
|
|
|
|
name = f"push_{uuid.uuid4().hex[:10]}"
|
2026-06-09 18:48:08 +02:00
|
|
|
s.post(
|
|
|
|
|
f"{BASE_URL}/auth/signup",
|
|
|
|
|
data={
|
|
|
|
|
"username": name,
|
|
|
|
|
"email": f"{name}@test.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",
|
2026-06-09 18:48:08 +02:00
|
|
|
},
|
|
|
|
|
allow_redirects=True,
|
|
|
|
|
)
|
2026-06-02 23:17:51 +02:00
|
|
|
return s
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def test_public_key_endpoint(app_server):
|
|
|
|
|
r = requests.get(f"{BASE_URL}/push.json")
|
|
|
|
|
assert r.status_code == 200
|
|
|
|
|
assert r.json().get("publicKey")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def test_register_requires_auth(app_server):
|
2026-06-09 18:48:08 +02:00
|
|
|
r = requests.post(
|
|
|
|
|
f"{BASE_URL}/push.json",
|
|
|
|
|
json={
|
|
|
|
|
"endpoint": "https://push.example.com/anon",
|
|
|
|
|
"keys": {"p256dh": "key", "auth": "auth"},
|
|
|
|
|
},
|
|
|
|
|
allow_redirects=False,
|
|
|
|
|
)
|
2026-06-02 23:17:51 +02:00
|
|
|
assert r.status_code == 401
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def test_register_success(app_server):
|
2026-06-13 16:32:33 +02:00
|
|
|
s = _session_push()
|
2026-06-09 18:48:08 +02:00
|
|
|
r = s.post(
|
|
|
|
|
f"{BASE_URL}/push.json",
|
|
|
|
|
json={
|
|
|
|
|
"endpoint": "https://push.example.com/sub-1",
|
|
|
|
|
"keys": {"p256dh": "p256dh_fake", "auth": "auth_fake"},
|
|
|
|
|
},
|
|
|
|
|
)
|
2026-06-02 23:17:51 +02:00
|
|
|
assert r.status_code == 200, r.text
|
|
|
|
|
assert r.json().get("registered") is True
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def test_register_missing_keys_rejected(app_server):
|
2026-06-13 16:32:33 +02:00
|
|
|
s = _session_push()
|
2026-06-02 23:17:51 +02:00
|
|
|
r = s.post(f"{BASE_URL}/push.json", json={"endpoint": "https://push.example.com/x"})
|
|
|
|
|
assert r.status_code == 400
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def test_register_invalid_json_rejected(app_server):
|
2026-06-13 16:32:33 +02:00
|
|
|
s = _session_push()
|
2026-06-09 18:48:08 +02:00
|
|
|
r = s.post(
|
|
|
|
|
f"{BASE_URL}/push.json",
|
|
|
|
|
data="not-json",
|
|
|
|
|
headers={"Content-Type": "application/json"},
|
|
|
|
|
)
|
2026-06-02 23:17:51 +02:00
|
|
|
assert r.status_code == 400
|
Cover the push providers with tests and document the subsystem
Unit tests for the provider registry, both providers' registration parsing, the
APNs payload translation, provider token signing and caching, header and status
mapping against a mock transport, provider grouping and the delivery timeout
clamp, plus service tests for the configuration surface, the retention sweep and
the per-provider metrics. Api tests cover the provider listing on GET
/push.json, registration with and without an explicit provider, idempotency and
the rejection of an unknown or unconfigured provider.
Provider settings in unit tests are supplied by monkeypatching the provider's
setting reader rather than writing site_settings, because the unit tier shares
its database with the running api-tier server.
devplacepy/push/CLAUDE.md documents the protocol, how to add a provider, the
invariants and the APNs specifics; the root, routers and services files point at
it.
Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
2026-07-31 22:47:20 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
def test_public_key_endpoint_lists_providers(app_server):
|
|
|
|
|
r = requests.get(f"{BASE_URL}/push.json")
|
|
|
|
|
assert r.status_code == 200
|
|
|
|
|
body = r.json()
|
|
|
|
|
assert body["publicKey"]
|
|
|
|
|
assert body["providers"]["webpush"]["publicKey"] == body["publicKey"]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def test_register_accepts_an_explicit_webpush_provider(app_server):
|
|
|
|
|
s = _session_push()
|
|
|
|
|
r = s.post(
|
|
|
|
|
f"{BASE_URL}/push.json",
|
|
|
|
|
json={
|
|
|
|
|
"provider": "webpush",
|
|
|
|
|
"endpoint": "https://push.example.com/explicit",
|
|
|
|
|
"keys": {"p256dh": "p256dh_fake", "auth": "auth_fake"},
|
|
|
|
|
},
|
|
|
|
|
)
|
|
|
|
|
assert r.status_code == 200, r.text
|
|
|
|
|
assert r.json().get("registered") is True
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def test_register_is_idempotent_for_the_same_subscription(app_server):
|
|
|
|
|
s = _session_push()
|
|
|
|
|
body = {
|
|
|
|
|
"endpoint": "https://push.example.com/idempotent",
|
|
|
|
|
"keys": {"p256dh": "p256dh_fake", "auth": "auth_fake"},
|
|
|
|
|
}
|
|
|
|
|
assert s.post(f"{BASE_URL}/push.json", json=body).status_code == 200
|
|
|
|
|
assert s.post(f"{BASE_URL}/push.json", json=body).status_code == 200
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def test_register_unknown_provider_rejected(app_server):
|
|
|
|
|
s = _session_push()
|
|
|
|
|
r = s.post(
|
|
|
|
|
f"{BASE_URL}/push.json",
|
|
|
|
|
json={"provider": "carrier-pigeon", "token": "a" * 64},
|
|
|
|
|
)
|
|
|
|
|
assert r.status_code == 400
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def test_register_apns_rejected_while_unconfigured(app_server):
|
|
|
|
|
s = _session_push()
|
|
|
|
|
r = s.post(f"{BASE_URL}/push.json", json={"provider": "apns", "token": "a" * 64})
|
|
|
|
|
assert r.status_code == 400
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def test_register_non_object_body_rejected(app_server):
|
|
|
|
|
s = _session_push()
|
|
|
|
|
r = s.post(f"{BASE_URL}/push.json", json=["nope"])
|
|
|
|
|
assert r.status_code == 400
|