A phone, and how much of this could not be used on one

The sidebar was a 280px panel laid over the page below the phone breakpoint,
opened from first paint, with the only control that closed it underneath it --
and that control existed on /chat and on none of the seven other pages carrying
a sidebar, Settings included. It starts closed at that width now, slides, dims
the page behind it, and closes by tapping beside it, by Escape, or by its own
button, which is inside the drawer where it can be reached.

Everything a finger has to hit was 36px, or 28 for renaming a chat, every action
on a message and every panel's close button. Raising --control-h under a coarse
pointer is the only fix that reaches all forty of them, which is what that token
is for. The row and message actions were also hover-only, so on a phone they did
not exist at all.

Installing: the splash and the browser chrome follow the instance's theme rather
than always being Moria's near-black; there are screenshots, so the install
offer is a dialog rather than a one-line bar; a new release no longer takes over
a page somebody is reading; the notification badge is a silhouette rather than a
grey square; and a browser rotating its own subscription no longer ends
notifications for good.

Every request now says it is happening -- nothing did before, so anything slower
than a few milliseconds looked like a click that had not registered.

A chat can be archived. The column has been filtered on in four places since
folders arrived and written by nothing, which is what made it look built.

chat.css may contain media queries. The ban protected the composer toolbar from
being "fixed" with a breakpoint; that guarantee is asserted directly now, and
the old test would have passed a version of the file that wrapped the toolbar
without one.

scripts/shoot.py is the instrument all of this was found with: it renders a page
through TestClient into a real headless browser at a real size and refuses to
run if an asset URL was left pointing at testserver.

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
This commit is contained in:
2026-09-25 13:39:35 +00:00
co-authored by Claude Opus 5
parent 92070d7879
commit 28390095a9
44 changed files with 2290 additions and 135 deletions
+110
View File
@@ -0,0 +1,110 @@
"""Archiving a chat, which the column has been filtered on and never written.
`Chat.archived` is read in four places, always `is_(False)`, and was set to True
by nothing anywhere in `src/` -- so the hiding shipped and the archiving did
not, and the column read as a built feature to anybody who grepped for it.
"""
from __future__ import annotations
from fastapi.testclient import TestClient
from lembas.db.models import Chat
def test_a_chat_can_be_archived(client: TestClient, db, registered, make_chat):
chat_id = make_chat()
response = client.patch(f"/api/chats/{chat_id}", data={"archived": "1"})
assert response.status_code == 200
db.expire_all()
assert db.get(Chat, chat_id).archived is True
def test_archiving_answers_with_a_sidebar_the_browser_can_swap_in(
client: TestClient, db, registered, make_chat
):
"""`update_chat` answers 204 for everything else, and htmx's own config is
`{code: "204", swap: false}` -- so a button aimed at `#sidebar-tree` set the
column and then did visibly nothing until the next page load.
Asserted on the *response*, because the obvious test -- archive, then load
the page, then look -- passes against both versions. It is the control doing
nothing that has to be caught, not the column failing to change.
"""
chat_id = make_chat()
response = client.patch(f"/api/chats/{chat_id}", data={"archived": "1"})
assert response.status_code == 200
assert 'id="sidebar-tree"' in response.text
assert "nav-group--archived" in response.text
assert chat_id in response.text
def test_a_patch_that_changes_nothing_still_answers_204(
client: TestClient, db, registered, make_chat
):
"""Re-rendering the sidebar for every PATCH would put the tree in the reply
to a rename, a folder move and a model change as well -- none of which
asked for it, and one of which already answers with its own fragment."""
chat_id = make_chat()
assert client.patch(
f"/api/chats/{chat_id}", data={"archived": "0"}
).status_code == 204
assert client.patch(
f"/api/chats/{chat_id}", data={"model_id": ""}
).status_code == 204
def test_it_can_be_put_back(client: TestClient, db, registered, make_chat):
"""An archive with no way out is a delete that lies about itself."""
chat_id = make_chat()
client.patch(f"/api/chats/{chat_id}", data={"archived": "1"})
client.patch(f"/api/chats/{chat_id}", data={"archived": "0"})
db.expire_all()
assert db.get(Chat, chat_id).archived is False
def test_leaving_the_field_out_leaves_it_alone(client: TestClient, db, registered, make_chat):
"""`update_chat` reads the raw form precisely so that absent and empty are
different things, and every other field there honours it."""
chat_id = make_chat()
client.patch(f"/api/chats/{chat_id}", data={"archived": "1"})
client.patch(f"/api/chats/{chat_id}", data={"title": "Still here"})
db.expire_all()
chat = db.get(Chat, chat_id)
assert chat.archived is True
assert chat.title == "Still here"
def test_an_archived_chat_leaves_the_list_and_joins_the_other_one(
client: TestClient, db, registered, make_chat
):
chat_id = make_chat()
page = client.get("/chat").text
assert chat_id in page
client.patch(f"/api/chats/{chat_id}", data={"archived": "1"})
page = client.get("/chat").text
# Still reachable -- in the Archived group, which is the whole difference
# between archiving and deleting.
assert "nav-group--archived" in page
assert chat_id in page
def test_the_group_is_absent_when_nothing_is_in_it(client: TestClient, registered, make_chat):
make_chat()
assert "nav-group--archived" not in client.get("/chat").text
def test_nobody_else_may_archive_your_chat(client: TestClient, db, registered, make_chat):
"""`_owned_chat` is what stops it, and this is the test that says so."""
chat_id = make_chat()
client.cookies.clear()
# `follow_redirects=False`, or the redirect to the sign-in page is followed
# and the 200 that comes back reads as the request having succeeded.
response = client.patch(
f"/api/chats/{chat_id}", data={"archived": "1"}, follow_redirects=False
)
assert response.status_code in (401, 403, 404, 303, 307)
db.expire_all()
assert db.get(Chat, chat_id).archived is False