docs: add block/mute user relations, emoji-sync CLI, and uid indexes
DevPlace CI / test (push) Failing after 2m7s
DevPlace CI / test (push) Failing after 2m7s
- Add `/block`, `/mute` endpoints with block/unblock and mute/unmute functionality in `routers/relations.py`, hiding blocked users' content everywhere except their own profile while muting only suppresses notifications - Introduce `devplace emoji-sync` CLI command to regenerate `static/js/emoji-shortcodes.js` from the emoji library, documented in `CLAUDE.md` and wired in `cli.py` - Create `get_blocked_uids()` database helper and apply it in `content.py` `load_detail()` to filter blocked users' posts from detail views - Implement `_uid_index()` and `_drop_index()` helpers in `database.py` for unique uid indexes across tables, with `user_relations` added to `SOFT_DELETE_TABLES` - Document new routes in `AGENTS.md` and `README.md`, including emoji shortcodes rendering behavior distinct from the emoji picker
This commit is contained in:
@@ -0,0 +1,65 @@
|
||||
# retoor <retoor@molodetz.nl>
|
||||
|
||||
import time
|
||||
import requests
|
||||
from tests.conftest import BASE_URL
|
||||
from devplacepy.database import get_table
|
||||
|
||||
JSON = {"Accept": "application/json"}
|
||||
_counter = [0]
|
||||
|
||||
|
||||
def _signup():
|
||||
_counter[0] += 1
|
||||
name = f"unmut{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",
|
||||
},
|
||||
allow_redirects=True,
|
||||
)
|
||||
return session, name
|
||||
|
||||
|
||||
def _uid(name):
|
||||
return get_table("users").find_one(username=name)["uid"]
|
||||
|
||||
|
||||
def _active_mutes(actor_uid, target_uid):
|
||||
return get_table("user_relations").count(
|
||||
user_uid=actor_uid, target_uid=target_uid, kind="mute", deleted_at=None
|
||||
)
|
||||
|
||||
|
||||
def test_unmute_reverses_mute(app_server):
|
||||
muter_session, muter = _signup()
|
||||
_, target = _signup()
|
||||
muter_session.post(f"{BASE_URL}/mute/{target}", allow_redirects=False)
|
||||
assert _active_mutes(_uid(muter), _uid(target)) == 1
|
||||
|
||||
r = muter_session.post(
|
||||
f"{BASE_URL}/mute/unmute/{target}", allow_redirects=False
|
||||
)
|
||||
assert r.status_code in (302, 200)
|
||||
assert _active_mutes(_uid(muter), _uid(target)) == 0
|
||||
|
||||
|
||||
def test_unmute_restores_notifications(app_server):
|
||||
muter_session, muter = _signup()
|
||||
actor_session, actor = _signup()
|
||||
muter_session.post(f"{BASE_URL}/mute/{actor}", allow_redirects=False)
|
||||
muter_session.post(f"{BASE_URL}/mute/unmute/{actor}", allow_redirects=False)
|
||||
|
||||
actor_session.post(f"{BASE_URL}/follow/{muter}", allow_redirects=False)
|
||||
|
||||
assert (
|
||||
get_table("notifications").count(
|
||||
user_uid=_uid(muter), related_uid=_uid(actor), type="follow"
|
||||
)
|
||||
== 1
|
||||
)
|
||||
Reference in New Issue
Block a user