e4dcfc49aa
Tests / Lint and Format (push) Waiting to run
Tests / Web Node Tests (push) Waiting to run
Tests / Import Check (Python 3.11) (push) Waiting to run
Tests / Import Check (Python 3.12) (push) Waiting to run
Tests / Import Check (Python 3.13) (push) Waiting to run
Tests / Import Check (Python 3.14) (push) Waiting to run
Tests / Python Tests (Python 3.11) (push) Blocked by required conditions
Tests / Python Tests (Python 3.12) (push) Blocked by required conditions
Tests / Python Tests (Python 3.13) (push) Blocked by required conditions
Tests / Python Tests (Python 3.14) (push) Blocked by required conditions
Tests / Test Summary (push) Blocked by required conditions
39 lines
1.4 KiB
Python
39 lines
1.4 KiB
Python
"""M1 regression — interface_settings.py must resolve per-user, not at import."""
|
|
|
|
from __future__ import annotations
|
|
|
|
import json
|
|
|
|
from deeptutor.services.settings.interface_settings import (
|
|
get_ui_language,
|
|
get_ui_settings,
|
|
)
|
|
|
|
|
|
def test_get_ui_language_reads_per_user_interface_json(mu_isolated_root, as_user):
|
|
# Admin's interface.json says English…
|
|
admin_settings = mu_isolated_root / "data" / "user" / "settings" / "interface.json"
|
|
admin_settings.parent.mkdir(parents=True, exist_ok=True)
|
|
admin_settings.write_text(json.dumps({"theme": "light", "language": "en"}))
|
|
|
|
# …while alice has chosen Chinese in her own scope.
|
|
alice_settings = (
|
|
mu_isolated_root / "data" / "users" / "u_alice" / "user" / "settings" / "interface.json"
|
|
)
|
|
alice_settings.parent.mkdir(parents=True, exist_ok=True)
|
|
alice_settings.write_text(json.dumps({"theme": "dark", "language": "zh"}))
|
|
|
|
with as_user("u_admin", role="admin"):
|
|
assert get_ui_language() == "en"
|
|
assert get_ui_settings()["theme"] == "light"
|
|
|
|
with as_user("u_alice", role="user"):
|
|
assert get_ui_language() == "zh"
|
|
assert get_ui_settings()["theme"] == "dark"
|
|
|
|
|
|
def test_get_ui_language_defaults_when_no_file(mu_isolated_root, as_user):
|
|
with as_user("u_alice", role="user"):
|
|
# Bob has nothing on disk yet — falls back to the default "en".
|
|
assert get_ui_language() == "en"
|