mirror of
https://github.com/unslothai/unsloth.git
synced 2026-08-25 08:42:25 +00:00
* Studio: keep project chats in Recents, add a Projects sidebar section Filing a chat under a project removed it from Recents (#5725), so a new project chat looked like it went nowhere. Recents is the whole history again, project chats included, and only pinned chats are held back since the Pinned section renders those. Projects is now its own section listing every project as a folder with its chats nested underneath, rather than folders only appearing once a project was pinned. Pinning sorts a project to the top of that list. Each list header (Pinned, Projects, Recents) reveals actions on hover: a "..." menu, plus "+" on Projects and a compose button on Recents. The menu carries Organize sidebar (By project, In one list) and a sort (Priority, Last updated, Manual order). Pinned sorts on its own and defaults to manual, since pin order already is a manual order. Manual order is dragged into place and is per list, so reordering a chat inside a project cannot move it in Recents. * Studio: drag project folders to reorder them Folders drag regardless of the chat sort, the way the chat rows do under Manual order. A dragged order outranks the pinned-first-then-activity rule; projects never dragged keep that rule and stay on top. Pulls the drag handlers out of the chat row into one helper both rows use, and replaces the manual-sort comparator with a shared applyManualOrder. That also fixes Pinned: an undragged pinned chat now keeps pin order instead of falling back to last updated. * Studio: address review on sidebar ordering - Order projects by their chats' activity. A project's own updatedAt only moves when its name, instructions or archived flag change, so an old project with a busy chat was sorting below one that was merely renamed. - Add Move up and Move down to the row menus. Touch browsers never fire dragstart and a keyboard cannot drag, so manual order was unreachable there. moveIdBy is tested to agree with dragging onto the neighbour. - Build each list's id array once instead of per row, and pass the row index in, so rendering N rows no longer allocates N arrays of length N. - Key the new menu strings and add them to all 11 locale overlays. - Paint the drop indicator on the edge the row actually lands on. Dragging down inserts after the target, so a cue always drawn above it was wrong. dropEdgeFor is checked against reorderIds for every pair. - Re-measure the scroll fade when regrouping, collapsing a folder or revealing more projects changes the row count. * Studio: let touch reach the project folder menu The folder's actions lacked sidebar-touch-reveal, and the coarse-pointer rule only un-hides row actions carrying it, so the Project options menu was inert on touch. That menu is the only reorder path there, since touch never fires dragstart, leaving folders unorderable on a touch sidebar. Reveals both folder actions on touch and reserves the same padding hover does, or the name runs under them. Test covers the rule, the rows that carry reorder controls, and the padding. * Studio: select multiple chats for bulk actions Cmd click (ctrl on Windows and Linux) toggles a row, shift click takes the block from the anchor. Right click opens Pin chats, Archive chats, Mark as unread and Delete chats over the whole selection, and Escape or any plain click clears it. The modifier is read off the browser rather than the platform store, which the backend corrects: a Mac browser on a Linux host still uses cmd, and ctrl stays free on macOS where ctrl click is the right click chord. Selection holds ids and resolves against the live rows, so a chat deleted elsewhere leaves nothing behind to act on. Ranges are per list, since one chat can sit in both a project and Recents. Mark as unread writes to the same session-level unread state the sidebar already keeps, so it clears on reload like the rest of it. * Studio: make the Projects section a setting, drop the selection outline Project chats no longer appear in both their folder and Recents. With the Projects section on they stay in the folder; with it off there is no section and they list in Recents, so a new project chat is still visible somewhere. Appearance settings carries the switch, and the header menu writes the same preference. A selected row now takes the plain hover fill, with no outline. * Studio: setting to always delete a chat's files with it Data settings gains an Always delete files switch. With it on, the delete dialog opens with the files toggle already set, so what will happen is visible and can still be turned off for one delete, and the paths that skip the dialog remove the folder too. All three chat delete paths read it: the sidebar, the chat page and the archived chats dialog. Deleting a project keeps asking from scratch, since removing a whole workspace is a bigger thing than one sandbox. Off by default, and a preferences payload written before this setting existed reads as off, so no install starts deleting files on its own. * Studio: pin Video in the sidebar, under Images Video ships as a top-level row again instead of sitting in the More flyout. It lands under Images, where SIDEBAR_NAV_ITEM_IDS already puts it, so the media tabs stay together. The backend default moves with it, since a record predating sidebarNav is served the backend's own layout, and the parity test compares the two. Recorded the version 6 layout as a shipped default and bumped the store to 7, so an install still on that layout adopts this one while a sidebar the user arranged themselves is left alone. * Studio: carry the delete-files preference to clear-all and dictations Two more paths delete chats and both ignored the setting. Clear all chats left every sandbox behind, and after it there is no chat row left to reach those folders from. Deleting a chat from Voice, Recent Dictations did the same for one chat. The DELETE endpoint already takes delete_files; only clearAllChats and clearStoredChats dropped it on the way through, so both now pass it on. The test that covers this now names all five delete paths, and checks each hop of the clear-all chain, since a dropped hop still compiles. * Studio: move the projects setting to Chat, select folders in bulk The Show projects section switch is a chat setting, not an appearance one, so it moves to the Chat tab and its keys move with it. Project folders now select like chat rows: cmd click toggles, shift click takes a block, and right click offers Pin projects and Delete projects over the selection. Folders and chats select separately, since a mixed selection has no action they share, so picking one kind drops the other. Test names the lists that hand rows a selection context. The argument is optional, so dropping it compiles and only stops the row selecting. * Studio: re-measure the fade when the Pinned section changes Pinning a project chat adds a Pinned row while Recents never held it and the folder still counts it, so no dependency of the fade effect moved and the bottom fade kept a stale value. Regrouping has the same hole when the projects hold no chats: the folder rows appear and disappear while every count stays at zero. Test names every row-count input the effect must depend on. This is the second time a missing one has gone unnoticed, and it never shows up as a failure, only as a fade that is wrong until the next scroll. * Studio: finish bulk project delete, sync the Video default Deleting folders in bulk skipped the cleanup the single delete does, so member chats stayed as rows and a user on a deleted project's page was left there. The batch now refreshes history once and redirects if any deleted project was the open one. Pinning Video also never reached a synced profile. Remote hydration runs the same migration with the personalization version on both sides, which short-circuits and then replaces the local store with the stored layout. That version moves to 4 so the migration runs. Tests cover both: the bulk branch ends like the single one, and a stored v6 layout at the old version adopts the new default. * Studio: redirect only off projects that were actually deleted The batch built its id set from every requested project, so a delete that failed still bounced the user off a project that is still there. The set now fills as each delete succeeds, matching the single delete, which redirects inside its try. The history refresh stays unconditional: a delete that threw may still have removed member chats on its way out. * Studio: translate the bulk archive failure toast The key already exists and data-tab uses it. * Studio: drop the other kind of selection on every right-click Folders stayed highlighted when a chat menu opened. * Studio: reset the sidebar layout key, and finish a partly failed archive * Studio: translate the sidebar Show more labels * Studio: show the file switch in every chat delete confirmation Two dialogs deleted files the preference had turned on without saying so. * Studio: show the file switch when clearing chats and deleting a linked dictation --------- Co-authored-by: shimmyshimmer <michaelhan@Michaels-MacBook-Pro.local>
591 lines
22 KiB
Python
591 lines
22 KiB
Python
# SPDX-License-Identifier: AGPL-3.0-only
|
|
# Copyright 2026-present the Unsloth AI Inc. team. All rights reserved. See /studio/LICENSE.AGPL-3.0
|
|
|
|
import sys
|
|
from pathlib import Path
|
|
|
|
import pytest
|
|
from fastapi import FastAPI
|
|
from fastapi.testclient import TestClient
|
|
from pydantic import ValidationError
|
|
|
|
_BACKEND = Path(__file__).resolve().parents[1]
|
|
if str(_BACKEND) not in sys.path:
|
|
sys.path.insert(0, str(_BACKEND))
|
|
|
|
import utils.personalization_settings as pers # noqa: E402
|
|
from auth.authentication import get_current_subject # noqa: E402
|
|
from routes import settings as settings_routes # noqa: E402
|
|
from routes.settings import ( # noqa: E402
|
|
MAX_SIDEBAR_MENU_INPUT_ITEMS,
|
|
MAX_SIDEBAR_NAV_INPUT_ITEMS,
|
|
PersonalizationPayload,
|
|
SIDEBAR_MENU_ITEM_DEFAULTS,
|
|
SIDEBAR_NAV_ITEM_DEFAULTS,
|
|
)
|
|
|
|
|
|
def test_defaults_fill_missing_fields():
|
|
p = PersonalizationPayload.model_validate({})
|
|
assert p.version == pers.PERSONALIZATION_VERSION
|
|
assert p.appearance.theme == "system"
|
|
assert p.appearance.palette == "standard"
|
|
assert p.profile.avatarShape == "circle"
|
|
assert p.profile.displayName == ""
|
|
assert p.profile.showGreetingSloth is True
|
|
|
|
|
|
def test_unknown_keys_are_ignored():
|
|
p = PersonalizationPayload.model_validate(
|
|
{"profile": {"displayName": "Mike", "bogus": 1}, "extra": True}
|
|
)
|
|
assert p.profile.displayName == "Mike"
|
|
|
|
|
|
def test_invalid_theme_rejected():
|
|
with pytest.raises(ValidationError):
|
|
PersonalizationPayload.model_validate({"appearance": {"theme": "neon"}})
|
|
|
|
|
|
def test_invalid_palette_rejected():
|
|
with pytest.raises(ValidationError):
|
|
PersonalizationPayload.model_validate({"appearance": {"palette": "neon"}})
|
|
|
|
|
|
def test_customization_defaults():
|
|
p = PersonalizationPayload.model_validate({})
|
|
c = p.appearance.customization
|
|
assert c.contrast == 50
|
|
assert c.reduceMotion == "system"
|
|
assert c.fontSmoothing is True
|
|
assert c.pointerCursors is False
|
|
assert c.colors.light.accent is None
|
|
assert c.headingFont is None
|
|
assert c.chatFont is None
|
|
assert c.uiFontSize is None
|
|
assert [(i.id, i.visible) for i in c.sidebarMenu] == [
|
|
("api", True),
|
|
("darkMode", True),
|
|
("guidedTour", True),
|
|
("profile", False),
|
|
("appearance", False),
|
|
("resources", False),
|
|
("chat", False),
|
|
("connections", False),
|
|
]
|
|
|
|
|
|
def test_customization_invalid_values_rejected():
|
|
with pytest.raises(ValidationError):
|
|
PersonalizationPayload.model_validate(
|
|
{"appearance": {"customization": {"colors": {"light": {"accent": "red"}}}}}
|
|
)
|
|
with pytest.raises(ValidationError):
|
|
PersonalizationPayload.model_validate({"appearance": {"customization": {"uiFontSize": 99}}})
|
|
with pytest.raises(ValidationError):
|
|
PersonalizationPayload.model_validate({"appearance": {"customization": {"contrast": 500}}})
|
|
with pytest.raises(ValidationError):
|
|
PersonalizationPayload.model_validate(
|
|
{"appearance": {"customization": {"reduceMotion": "sometimes"}}}
|
|
)
|
|
with pytest.raises(ValidationError):
|
|
PersonalizationPayload.model_validate(
|
|
{"appearance": {"customization": {"sidebarMenu": [{"id": "chats"}]}}}
|
|
)
|
|
|
|
|
|
def test_customization_sidebar_menu_normalized():
|
|
p = PersonalizationPayload.model_validate(
|
|
{
|
|
"appearance": {
|
|
"customization": {
|
|
"sidebarMenu": [
|
|
{"id": "guidedTour", "visible": False},
|
|
{"id": "guidedTour", "visible": True},
|
|
{"id": "api"},
|
|
]
|
|
}
|
|
}
|
|
}
|
|
)
|
|
# Duplicates keep the first entry; missing ids are appended with their
|
|
# default visibility.
|
|
assert [(i.id, i.visible) for i in p.appearance.customization.sidebarMenu] == [
|
|
("guidedTour", False),
|
|
("api", True),
|
|
("darkMode", True),
|
|
("profile", False),
|
|
("appearance", False),
|
|
("resources", False),
|
|
("chat", False),
|
|
("connections", False),
|
|
]
|
|
|
|
|
|
def _sidebar(items):
|
|
return {"appearance": {"customization": {"sidebarMenu": items}}}
|
|
|
|
|
|
def test_customization_sidebar_menu_dedupes_oversized_payload():
|
|
# A stale/duplicated payload carries more items than there are distinct ids.
|
|
# It must reach the dedupe validator and normalize to exactly one entry per
|
|
# id, not be rejected by the length cap before dedupe runs.
|
|
ids = list(SIDEBAR_MENU_ITEM_DEFAULTS)
|
|
doubled = [{"id": i} for i in ids] + [{"id": i} for i in ids]
|
|
assert len(doubled) > len(SIDEBAR_MENU_ITEM_DEFAULTS)
|
|
p = PersonalizationPayload.model_validate(_sidebar(doubled))
|
|
result = [i.id for i in p.appearance.customization.sidebarMenu]
|
|
assert result == ids
|
|
assert len(result) == len(SIDEBAR_MENU_ITEM_DEFAULTS)
|
|
|
|
|
|
def test_customization_sidebar_menu_rejects_pathological_length():
|
|
# The generous input cap still refuses an absurdly long list outright.
|
|
huge = [{"id": "api"} for _ in range(MAX_SIDEBAR_MENU_INPUT_ITEMS + 1)]
|
|
with pytest.raises(ValidationError):
|
|
PersonalizationPayload.model_validate(_sidebar(huge))
|
|
|
|
|
|
def _sidebar_nav(items):
|
|
return {"appearance": {"customization": {"sidebarNav": items}}}
|
|
|
|
|
|
# The layout the frontend ships (SIDEBAR_NAV_ITEM_IDS / SIDEBAR_NAV_DEFAULT_PINNED in
|
|
# features/settings/stores/appearance-custom-store.ts). The client sends this list verbatim on
|
|
# every personalization save, so the backend must accept it and default to the same thing.
|
|
FRONTEND_SHIPPED_SIDEBAR_NAV = [
|
|
("hub", True),
|
|
("projects", True),
|
|
("images", True),
|
|
("video", True),
|
|
("audio", False),
|
|
("train", True),
|
|
("recipes", False),
|
|
("export", False),
|
|
("api", False),
|
|
]
|
|
|
|
|
|
def test_customization_sidebar_nav_accepts_the_frontend_shipped_layout():
|
|
# The frontend always sends every nav id, "api" included. A backend id list short of one of
|
|
# them 422s the whole PUT, so no appearance customization can ever be saved.
|
|
p = PersonalizationPayload.model_validate(
|
|
_sidebar_nav([{"id": i, "pinned": pinned} for i, pinned in FRONTEND_SHIPPED_SIDEBAR_NAV])
|
|
)
|
|
nav = p.appearance.customization.sidebarNav
|
|
assert [(i.id, i.pinned) for i in nav] == FRONTEND_SHIPPED_SIDEBAR_NAV
|
|
|
|
|
|
def test_customization_sidebar_nav_defaults_match_shipped_layout():
|
|
# A fresh account must look like the shipped sidebar.
|
|
c = PersonalizationPayload().appearance.customization
|
|
assert [(i.id, i.pinned) for i in c.sidebarNav] == FRONTEND_SHIPPED_SIDEBAR_NAV
|
|
|
|
|
|
def test_customization_sidebar_nav_preserves_order_and_normalizes():
|
|
p = PersonalizationPayload.model_validate(
|
|
_sidebar_nav(
|
|
[
|
|
{"id": "video", "pinned": True},
|
|
{"id": "video", "pinned": False},
|
|
{"id": "hub", "pinned": False},
|
|
]
|
|
)
|
|
)
|
|
# Client order survives; duplicates keep the first, unsent ids are appended.
|
|
assert [(i.id, i.pinned) for i in p.appearance.customization.sidebarNav] == [
|
|
("video", True),
|
|
("hub", False),
|
|
("projects", True),
|
|
("images", True),
|
|
("audio", False),
|
|
("train", True),
|
|
("recipes", False),
|
|
("export", False),
|
|
("api", False),
|
|
]
|
|
|
|
|
|
def test_customization_sidebar_nav_rejects_unknown_id():
|
|
with pytest.raises(ValidationError):
|
|
PersonalizationPayload.model_validate(_sidebar_nav([{"id": "chats"}]))
|
|
|
|
|
|
def test_customization_sidebar_nav_dedupes_oversized_payload():
|
|
ids = list(SIDEBAR_NAV_ITEM_DEFAULTS)
|
|
doubled = [{"id": i} for i in ids] + [{"id": i} for i in ids]
|
|
assert len(doubled) > len(SIDEBAR_NAV_ITEM_DEFAULTS)
|
|
p = PersonalizationPayload.model_validate(_sidebar_nav(doubled))
|
|
result = [i.id for i in p.appearance.customization.sidebarNav]
|
|
assert result == ids
|
|
|
|
|
|
def test_customization_sidebar_nav_rejects_pathological_length():
|
|
huge = [{"id": "hub"} for _ in range(MAX_SIDEBAR_NAV_INPUT_ITEMS + 1)]
|
|
with pytest.raises(ValidationError):
|
|
PersonalizationPayload.model_validate(_sidebar_nav(huge))
|
|
|
|
|
|
def test_customization_imported_fonts_validated():
|
|
ok = PersonalizationPayload.model_validate(
|
|
{
|
|
"appearance": {
|
|
"customization": {
|
|
"importedFonts": [{"name": "My Font", "dataUrl": "data:font/woff2;base64,AAAA"}]
|
|
}
|
|
}
|
|
}
|
|
)
|
|
assert ok.appearance.customization.importedFonts[0].name == "My Font"
|
|
with pytest.raises(ValidationError):
|
|
PersonalizationPayload.model_validate(
|
|
{
|
|
"appearance": {
|
|
"customization": {
|
|
"importedFonts": [
|
|
{"name": "Evil", "dataUrl": "https://example.com/font.woff2"}
|
|
]
|
|
}
|
|
}
|
|
}
|
|
)
|
|
with pytest.raises(ValidationError):
|
|
PersonalizationPayload.model_validate(
|
|
{
|
|
"appearance": {
|
|
"customization": {
|
|
"importedFonts": [
|
|
{"name": f"Font {i}", "dataUrl": "data:font/ttf;base64,AAAA"}
|
|
for i in range(4)
|
|
]
|
|
}
|
|
}
|
|
}
|
|
)
|
|
|
|
|
|
def _imported(fonts):
|
|
return {"appearance": {"customization": {"importedFonts": fonts}}}
|
|
|
|
|
|
def test_imported_font_name_rejects_css_characters():
|
|
# Includes backslash (escapes the quoted family), comma/slash (extra
|
|
# fallbacks / comment start), and a control character.
|
|
for bad in ['Ev"il', "Ev;il", "Ev{il", "Ev<il", "Ev'il", "Ev\\il", "Ev,il", "Ev/il", "Ev\til"]:
|
|
with pytest.raises(ValidationError):
|
|
PersonalizationPayload.model_validate(
|
|
_imported([{"name": bad, "dataUrl": "data:font/woff2;base64,AAAA"}])
|
|
)
|
|
|
|
|
|
def test_selected_font_names_validated():
|
|
for field in ("uiFont", "headingFont", "chatFont", "codeFont"):
|
|
for bad in ["Ev\\il", "Ev,il", "Ev/il", "Ev;il", "Ev\nil"]:
|
|
with pytest.raises(ValidationError):
|
|
PersonalizationPayload.model_validate(
|
|
{"appearance": {"customization": {field: bad}}}
|
|
)
|
|
# A normal family name (spaces + digits) is still accepted.
|
|
p = PersonalizationPayload.model_validate(
|
|
{"appearance": {"customization": {"uiFont": "Source Serif 4"}}}
|
|
)
|
|
assert p.appearance.customization.uiFont == "Source Serif 4"
|
|
|
|
|
|
def test_imported_font_data_url_must_be_base64():
|
|
with pytest.raises(ValidationError):
|
|
PersonalizationPayload.model_validate(
|
|
_imported([{"name": "F", "dataUrl": "data:font/woff2;base64,?not base64?"}])
|
|
)
|
|
with pytest.raises(ValidationError):
|
|
PersonalizationPayload.model_validate(
|
|
_imported([{"name": "F", "dataUrl": "data:application/json;base64,AAAA"}])
|
|
)
|
|
|
|
|
|
def test_imported_font_data_url_rejects_newline():
|
|
# re's ``$`` also matches just before a trailing newline, so a data URL
|
|
# ending in "\n" (or with an embedded newline) must be rejected the same way
|
|
# the frontend JS pattern rejects it; otherwise the backend accepts a value
|
|
# the client would never have produced.
|
|
for bad in [
|
|
"data:font/woff2;base64,AAAA\n",
|
|
"data:font/woff2;base64,AAAA\nBBBB",
|
|
"\ndata:font/woff2;base64,AAAA",
|
|
]:
|
|
with pytest.raises(ValidationError):
|
|
PersonalizationPayload.model_validate(_imported([{"name": "F", "dataUrl": bad}]))
|
|
# The same URL without the newline is still accepted.
|
|
ok = PersonalizationPayload.model_validate(
|
|
_imported([{"name": "F", "dataUrl": "data:font/woff2;base64,AAAA"}])
|
|
)
|
|
assert ok.appearance.customization.importedFonts[0].dataUrl == "data:font/woff2;base64,AAAA"
|
|
|
|
|
|
def test_imported_fonts_total_size_capped():
|
|
big = "data:font/woff2;base64," + "A" * 1_600_000
|
|
with pytest.raises(ValidationError):
|
|
PersonalizationPayload.model_validate(
|
|
_imported([{"name": f"F{i}", "dataUrl": big} for i in range(3)])
|
|
)
|
|
# Two fit under the aggregate cap.
|
|
PersonalizationPayload.model_validate(
|
|
_imported([{"name": f"F{i}", "dataUrl": big} for i in range(2)])
|
|
)
|
|
|
|
|
|
def test_avatar_must_be_image_data_url():
|
|
with pytest.raises(ValidationError):
|
|
PersonalizationPayload.model_validate(
|
|
{"profile": {"avatarDataUrl": "http://example.com/a.png"}}
|
|
)
|
|
|
|
|
|
def test_avatar_size_is_capped():
|
|
big = "data:image/png;base64," + "A" * (pers.MAX_AVATAR_DATA_URL_BYTES + 1)
|
|
with pytest.raises(ValidationError):
|
|
PersonalizationPayload.model_validate({"profile": {"avatarDataUrl": big}})
|
|
|
|
|
|
def test_valid_avatar_and_shape():
|
|
p = PersonalizationPayload.model_validate(
|
|
{
|
|
"profile": {
|
|
"avatarDataUrl": "data:image/png;base64,AAAA",
|
|
"avatarShape": "rounded",
|
|
}
|
|
}
|
|
)
|
|
assert p.profile.avatarShape == "rounded"
|
|
|
|
|
|
def test_bundled_avatar_url_allowed():
|
|
p = PersonalizationPayload.model_validate(
|
|
{"profile": {"avatarDataUrl": "/Sloth%20emojis/large%20sloth%20yay.png"}}
|
|
)
|
|
assert p.profile.avatarDataUrl == "/Sloth%20emojis/large%20sloth%20yay.png"
|
|
|
|
|
|
def test_bundled_avatar_subpath_allowed():
|
|
p = PersonalizationPayload.model_validate(
|
|
{"profile": {"avatarDataUrl": "/studio/Sloth%20emojis/large%20sloth%20yay.png"}}
|
|
)
|
|
assert "Sloth%20emojis" in p.profile.avatarDataUrl
|
|
|
|
|
|
def test_bundled_avatar_traversal_rejected():
|
|
with pytest.raises(ValidationError):
|
|
PersonalizationPayload.model_validate(
|
|
{"profile": {"avatarDataUrl": "/Sloth%20emojis/../secret.png"}}
|
|
)
|
|
|
|
|
|
def test_get_read_errors_propagate(monkeypatch):
|
|
def fail(*args, **kwargs):
|
|
raise RuntimeError("read failed")
|
|
|
|
monkeypatch.setattr("storage.studio_db.get_app_setting", fail)
|
|
|
|
with pytest.raises(RuntimeError, match = "read failed"):
|
|
pers.get_personalization()
|
|
|
|
|
|
def test_get_set_roundtrip(monkeypatch):
|
|
store: dict = {}
|
|
monkeypatch.setattr("storage.studio_db.get_app_setting", lambda k, d = None: store.get(k, d))
|
|
monkeypatch.setattr("storage.studio_db.upsert_app_settings", lambda d: store.update(d))
|
|
|
|
assert pers.get_personalization() == {}
|
|
data = {
|
|
"version": 1,
|
|
"profile": {"displayName": "Mike"},
|
|
"appearance": {"theme": "dark"},
|
|
}
|
|
pers.set_personalization(data)
|
|
assert store[pers.PERSONALIZATION_SETTING_KEY]["profile"]["displayName"] == "Mike"
|
|
assert pers.get_personalization()["appearance"]["theme"] == "dark"
|
|
|
|
|
|
def test_personalization_route_roundtrip_real_shape(monkeypatch):
|
|
store: dict = {}
|
|
monkeypatch.setattr("storage.studio_db.get_app_setting", lambda k, d = None: store.get(k, d))
|
|
monkeypatch.setattr("storage.studio_db.upsert_app_settings", lambda d: store.update(d))
|
|
|
|
app = FastAPI()
|
|
app.dependency_overrides[get_current_subject] = lambda: "unsloth"
|
|
app.include_router(settings_routes.router, prefix = "/api/settings")
|
|
client = TestClient(app)
|
|
|
|
initial = client.get("/api/settings/personalization")
|
|
assert initial.status_code == 200
|
|
assert initial.json()["saved"] is False
|
|
|
|
payload = {
|
|
"version": 1,
|
|
"profile": {
|
|
"displayName": "Mike",
|
|
"nickname": "M",
|
|
"avatarDataUrl": "/Sloth%20emojis/large%20sloth%20yay.png",
|
|
"avatarShape": "rounded",
|
|
"showGreetingSloth": False,
|
|
},
|
|
"appearance": {
|
|
"theme": "dark",
|
|
"palette": "classic",
|
|
"language": "en",
|
|
"customization": {
|
|
"colors": {
|
|
"light": {"accent": "#339cff", "background": None, "foreground": None},
|
|
"dark": {"accent": None, "background": "#111111", "foreground": None},
|
|
},
|
|
"uiFont": "SF Pro Text",
|
|
"headingFont": "Avenir Next",
|
|
"chatFont": "Georgia",
|
|
"codeFont": None,
|
|
"importedFonts": [
|
|
{"name": "SF Pro Text", "dataUrl": "data:font/woff2;base64,AAAA"}
|
|
],
|
|
"uiFontSize": 14,
|
|
"codeFontSize": 13,
|
|
"contrast": 60,
|
|
"pointerCursors": True,
|
|
"reduceMotion": "off",
|
|
"fontSmoothing": True,
|
|
"sidebarMenu": [
|
|
{"id": "darkMode", "visible": True},
|
|
{"id": "api", "visible": False},
|
|
{"id": "guidedTour", "visible": True},
|
|
{"id": "profile", "visible": True},
|
|
{"id": "appearance", "visible": False},
|
|
{"id": "resources", "visible": False},
|
|
{"id": "chat", "visible": False},
|
|
{"id": "connections", "visible": False},
|
|
],
|
|
# Reordered and partly unpinned, so the round-trip proves order survives a save.
|
|
"sidebarNav": [
|
|
{"id": "images", "pinned": True},
|
|
{"id": "video", "pinned": True},
|
|
{"id": "audio", "pinned": False},
|
|
{"id": "hub", "pinned": True},
|
|
{"id": "train", "pinned": True},
|
|
{"id": "projects", "pinned": False},
|
|
{"id": "recipes", "pinned": False},
|
|
{"id": "export", "pinned": False},
|
|
{"id": "api", "pinned": False},
|
|
],
|
|
},
|
|
},
|
|
}
|
|
put = client.put("/api/settings/personalization", json = payload)
|
|
assert put.status_code == 200
|
|
|
|
saved = client.get("/api/settings/personalization")
|
|
assert saved.status_code == 200
|
|
body = saved.json()
|
|
assert body["saved"] is True
|
|
assert body["customizationSaved"] is True
|
|
assert body["paletteSaved"] is True
|
|
assert body["greetingSlothSaved"] is True
|
|
assert body["profile"] == payload["profile"]
|
|
assert body["appearance"] == payload["appearance"]
|
|
|
|
|
|
def test_personalization_get_flags_legacy_fields(monkeypatch):
|
|
# A record written before these fields existed must report them as unsaved
|
|
# so the client keeps local overrides instead of the server-filled defaults.
|
|
store: dict = {
|
|
pers.PERSONALIZATION_SETTING_KEY: {
|
|
"version": 1,
|
|
"profile": {"displayName": "Mike"},
|
|
"appearance": {"theme": "dark"},
|
|
}
|
|
}
|
|
monkeypatch.setattr("storage.studio_db.get_app_setting", lambda k, d = None: store.get(k, d))
|
|
|
|
app = FastAPI()
|
|
app.dependency_overrides[get_current_subject] = lambda: "unsloth"
|
|
app.include_router(settings_routes.router, prefix = "/api/settings")
|
|
body = TestClient(app).get("/api/settings/personalization").json()
|
|
assert body["saved"] is True
|
|
assert body["customizationSaved"] is False
|
|
assert body["paletteSaved"] is False
|
|
assert body["greetingSlothSaved"] is False
|
|
|
|
|
|
def test_personalization_put_preserves_absent_fields(monkeypatch):
|
|
# A stale client that omits palette/customization must not materialize them,
|
|
# so the record stays legacy and GET keeps reporting those fields unsaved.
|
|
store: dict = {}
|
|
monkeypatch.setattr("storage.studio_db.get_app_setting", lambda k, d = None: store.get(k, d))
|
|
monkeypatch.setattr("storage.studio_db.upsert_app_settings", lambda d: store.update(d))
|
|
|
|
app = FastAPI()
|
|
app.dependency_overrides[get_current_subject] = lambda: "unsloth"
|
|
app.include_router(settings_routes.router, prefix = "/api/settings")
|
|
client = TestClient(app)
|
|
|
|
put = client.put(
|
|
"/api/settings/personalization",
|
|
json = {
|
|
"version": 1,
|
|
"profile": {"displayName": "Mike"},
|
|
"appearance": {"theme": "dark", "language": "en"},
|
|
},
|
|
)
|
|
assert put.status_code == 200
|
|
|
|
stored_appearance = store[pers.PERSONALIZATION_SETTING_KEY]["appearance"]
|
|
assert "palette" not in stored_appearance
|
|
assert "customization" not in stored_appearance
|
|
|
|
body = client.get("/api/settings/personalization").json()
|
|
assert body["saved"] is True
|
|
assert body["paletteSaved"] is False
|
|
assert body["customizationSaved"] is False
|
|
assert body["greetingSlothSaved"] is False
|
|
|
|
|
|
def test_personalization_put_preserves_existing_fields_on_stale_write(monkeypatch):
|
|
# A stale client that omits palette/customization must not clobber values a
|
|
# newer client already stored; the merge keeps them and only updates theme.
|
|
store: dict = {
|
|
pers.PERSONALIZATION_SETTING_KEY: {
|
|
"version": 1,
|
|
"profile": {"displayName": "Mike", "showGreetingSloth": False},
|
|
"appearance": {
|
|
"theme": "light",
|
|
"palette": "classic",
|
|
"customization": {"uiFont": "Georgia"},
|
|
},
|
|
}
|
|
}
|
|
monkeypatch.setattr("storage.studio_db.get_app_setting", lambda k, d = None: store.get(k, d))
|
|
monkeypatch.setattr("storage.studio_db.upsert_app_settings", lambda d: store.update(d))
|
|
|
|
app = FastAPI()
|
|
app.dependency_overrides[get_current_subject] = lambda: "unsloth"
|
|
app.include_router(settings_routes.router, prefix = "/api/settings")
|
|
client = TestClient(app)
|
|
|
|
put = client.put(
|
|
"/api/settings/personalization",
|
|
json = {"version": 1, "profile": {"displayName": "Mike"}, "appearance": {"theme": "dark"}},
|
|
)
|
|
assert put.status_code == 200
|
|
|
|
# The PUT response reflects the stored record, not the defaults-filled request:
|
|
# a stale write that omits palette/customization still echoes the preserved values.
|
|
put_body = put.json()
|
|
assert put_body["appearance"]["theme"] == "dark"
|
|
assert put_body["appearance"]["palette"] == "classic"
|
|
assert put_body["appearance"]["customization"]["uiFont"] == "Georgia"
|
|
|
|
stored_appearance = store[pers.PERSONALIZATION_SETTING_KEY]["appearance"]
|
|
assert stored_appearance["theme"] == "dark"
|
|
assert stored_appearance["palette"] == "classic"
|
|
assert stored_appearance["customization"]["uiFont"] == "Georgia"
|
|
|
|
body = client.get("/api/settings/personalization").json()
|
|
assert body["paletteSaved"] is True
|
|
assert body["customizationSaved"] is True
|
|
assert body["greetingSlothSaved"] is True
|