惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

G
Google Developers Blog
博客园 - 司徒正美
Last Week in AI
Last Week in AI
Recent Announcements
Recent Announcements
Y
Y Combinator Blog
博客园 - 聂微东
M
MIT News - Artificial intelligence
博客园_首页
Jina AI
Jina AI
博客园 - 叶小钗
酷 壳 – CoolShell
酷 壳 – CoolShell
H
Hackread – Cybersecurity News, Data Breaches, AI and More
J
Java Code Geeks
F
Fortinet All Blogs
aimingoo的专栏
aimingoo的专栏
小众软件
小众软件
Vercel News
Vercel News
The Cloudflare Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
云风的 BLOG
云风的 BLOG
N
Netflix TechBlog - Medium
B
Blog
Google DeepMind News
Google DeepMind News
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More

Recent Commits to openclaw:main

test: merge chat side-result checks · openclaw/openclaw@ddd2c2a test: merge cron history checks · openclaw/openclaw@f7eb746 test: merge responsive navigation shell checks · openclaw/openclaw@c2e4b47 docs(changelog): add codex oauth fixes · openclaw/openclaw@628e6cd test: merge navigation routing cases · openclaw/openclaw@5d8cecb Tests: mock channel registry bundled fallback · openclaw/openclaw@2b08233 Secrets: avoid broad web search discovery for single plugin config · openclaw/openclaw@a464f59 test: merge config view browser checks · openclaw/openclaw@20cf511 fix(status): align oauth health with runtime · openclaw/openclaw@eed7116 feat: add macOS screen snapshots for monitor preview (#67954) thanks … · openclaw/openclaw@f377db1 fix: report shared auth scopes in hello-ok (#67810) thanks @BunsDev · openclaw/openclaw@0b6c39b Auto-reply: avoid eager bundled route fallback · openclaw/openclaw@3ea1bf4 Tests: narrow session binding contract setup · openclaw/openclaw@54e4e16 fix(macOS): enable undo/redo in webchat composer text input (#34962) · openclaw/openclaw@00951dc Tests: speed up channel setup promotion · openclaw/openclaw@82b529a Docs: refresh agent instructions · openclaw/openclaw@5775fe2 fix(auth): serialize OAuth refresh across agents to fix #26322 (#67876) · openclaw/openclaw@8e79080 test: allow ollama public surface boundary test · openclaw/openclaw@7d4f1a6 Docs: add test performance guardrails · openclaw/openclaw@89706d3 Tests: restore context-engine usage proof · openclaw/openclaw@e4c4f95 Tests: slim context engine runtime coverage · openclaw/openclaw@74c198f ci: retry failed custom checkouts · openclaw/openclaw@0ee5baf test: trim duplicate provider auth onboarding cases · openclaw/openclaw@1ffc02e matrix: fix sessions_spawn --thread subagent session spawning (#67643) · openclaw/openclaw@1ce2596 test: reduce auth choice fixture churn · openclaw/openclaw@857b9cd test: mock health status config boundaries · openclaw/openclaw@9d5ab4a test: mock onboard config io boundary · openclaw/openclaw@299694d test: mock legacy state plugin boundaries · openclaw/openclaw@2713089 test: mock channel install boundaries · openclaw/openclaw@b945248 test: mock doctor preview channel boundaries · openclaw/openclaw@b1a3ad4
test: tighten ui storage assertions · openclaw/openclaw@4...
steipete · 2026-05-11 · via Recent Commits to openclaw:main

@@ -153,15 +153,14 @@ describe("loadSettings default gateway URL derivation", () => {

153153

setControlUiBasePath(undefined);

154154

const warningSpy = vi.spyOn(process, "emitWarning").mockImplementation(() => undefined);

155155156-

expect(loadSettings()).toMatchObject({

157-

gatewayUrl: expectedGatewayUrl(""),

158-

token: "",

159-

});

160-

expect(warningSpy).not.toHaveBeenCalledWith(

161-

"`--localstorage-file` was provided without a valid path",

162-

expect.anything(),

163-

expect.anything(),

164-

);

156+

const settings = loadSettings();

157+

expect(settings.gatewayUrl).toBe(expectedGatewayUrl(""));

158+

expect(settings.token).toBe("");

159+

expect(

160+

warningSpy.mock.calls.some(

161+

([message]) => message === "`--localstorage-file` was provided without a valid path",

162+

),

163+

).toBe(false);

165164

});

166165167166

it("ignores and scrubs legacy persisted tokens", () => {

@@ -180,11 +179,10 @@ describe("loadSettings default gateway URL derivation", () => {

180179

}),

181180

);

182181183-

expect(loadSettings()).toMatchObject({

184-

gatewayUrl: "wss://gateway.example:8443/openclaw",

185-

token: "",

186-

sessionKey: "agent",

187-

});

182+

const settings = loadSettings();

183+

expect(settings.gatewayUrl).toBe("wss://gateway.example:8443/openclaw");

184+

expect(settings.token).toBe("");

185+

expect(settings.sessionKey).toBe("agent");

188186

const scopedKey = "openclaw.control.settings.v1:wss://gateway.example:8443/openclaw";

189187

expect(JSON.parse(localStorage.getItem(scopedKey) ?? "{}")).toEqual({

190188

gatewayUrl: "wss://gateway.example:8443/openclaw",

@@ -233,10 +231,9 @@ describe("loadSettings default gateway URL derivation", () => {

233231

borderRadius: 50,

234232

});

235233236-

expect(loadSettings()).toMatchObject({

237-

gatewayUrl: gwUrl,

238-

token: "session-token",

239-

});

234+

const settings = loadSettings();

235+

expect(settings.gatewayUrl).toBe(gwUrl);

236+

expect(settings.token).toBe("session-token");

240237

});

241238242239

it("does not reuse a session token for a different gatewayUrl", () => {

@@ -282,10 +279,9 @@ describe("loadSettings default gateway URL derivation", () => {

282279

borderRadius: 50,

283280

});

284281285-

expect(loadSettings()).toMatchObject({

286-

gatewayUrl: gwUrl,

287-

token: "gateway-a-token",

288-

});

282+

const settings = loadSettings();

283+

expect(settings.gatewayUrl).toBe(gwUrl);

284+

expect(settings.token).toBe("gateway-a-token");

289285

});

290286291287

it("does not persist gateway tokens when saving settings", () => {

@@ -312,10 +308,9 @@ describe("loadSettings default gateway URL derivation", () => {

312308

navGroupsCollapsed: {},

313309

borderRadius: 50,

314310

});

315-

expect(loadSettings()).toMatchObject({

316-

gatewayUrl: gwUrl,

317-

token: "memory-only-token",

318-

});

311+

const settings = loadSettings();

312+

expect(settings.gatewayUrl).toBe(gwUrl);

313+

expect(settings.token).toBe("memory-only-token");

319314320315

const scopedKey = `openclaw.control.settings.v1:${gwUrl}`;

321316

expect(JSON.parse(localStorage.getItem(scopedKey) ?? "{}")).toEqual({

@@ -411,11 +406,13 @@ describe("loadSettings default gateway URL derivation", () => {

411406

});

412407413408

const scopedKey = `openclaw.control.settings.v1:${gwUrl}`;

414-

expect(JSON.parse(localStorage.getItem(scopedKey) ?? "{}")).toMatchObject({

415-

theme: "dash",

416-

themeMode: "light",

417-

navWidth: 320,

418-

});

409+

const persisted = JSON.parse(localStorage.getItem(scopedKey) ?? "{}") as Record<

410+

string,

411+

unknown

412+

>;

413+

expect(persisted.theme).toBe("dash");

414+

expect(persisted.themeMode).toBe("light");

415+

expect(persisted.navWidth).toBe(320);

419416

});

420417421418

it("persists the browser-local custom theme payload when present", () => {

@@ -445,13 +442,10 @@ describe("loadSettings default gateway URL derivation", () => {

445442

customTheme,

446443

});

447444448-

expect(loadSettings()).toMatchObject({

449-

theme: "custom",

450-

customTheme: {

451-

label: "Light Green",

452-

themeId: "cmlhfpjhw000004l4f4ax3m7z",

453-

},

454-

});

445+

const settings = loadSettings();

446+

expect(settings.theme).toBe("custom");

447+

expect(settings.customTheme?.label).toBe("Light Green");

448+

expect(settings.customTheme?.themeId).toBe("cmlhfpjhw000004l4f4ax3m7z");

455449

});

456450457451

it("falls back to claw when persisted custom theme data is invalid", () => {

@@ -493,10 +487,9 @@ describe("loadSettings default gateway URL derivation", () => {

493487

}),

494488

);

495489496-

expect(loadSettings()).toMatchObject({

497-

theme: "claw",

498-

themeMode: "dark",

499-

});

490+

const settings = loadSettings();

491+

expect(settings.theme).toBe("claw");

492+

expect(settings.themeMode).toBe("dark");

500493

});

501494502495

it("scopes persisted session selection per gateway", () => {

@@ -524,11 +517,10 @@ describe("loadSettings default gateway URL derivation", () => {

524517

borderRadius: 50,

525518

});

526519527-

expect(loadSettings()).toMatchObject({

528-

gatewayUrl: gwUrl,

529-

sessionKey: "agent:test_old:main",

530-

lastActiveSessionKey: "agent:test_old:main",

531-

});

520+

const settings = loadSettings();

521+

expect(settings.gatewayUrl).toBe(gwUrl);

522+

expect(settings.sessionKey).toBe("agent:test_old:main");

523+

expect(settings.lastActiveSessionKey).toBe("agent:test_old:main");

532524

});

533525534526

it("caps persisted session scopes to the most recent gateways", () => {

@@ -571,16 +563,14 @@ describe("loadSettings default gateway URL derivation", () => {

571563572564

const persisted = JSON.parse(localStorage.getItem(scopedKey) ?? "{}");

573565574-

const sessionsByGateway = persisted.sessionsByGateway as unknown;

575-

expect(sessionsByGateway).toEqual(

576-

expect.objectContaining({

577-

"wss://gateway.example:8443": {

578-

sessionKey: "agent:current:main",

579-

lastActiveSessionKey: "agent:current:main",

580-

},

581-

}),

582-

);

583-

const scopedSessions = sessionsByGateway as Record<string, unknown>;

566+

const scopedSessions = persisted.sessionsByGateway as Record<

567+

string,

568+

{ sessionKey: string; lastActiveSessionKey: string }

569+

>;

570+

expect(scopedSessions["wss://gateway.example:8443"]).toEqual({

571+

sessionKey: "agent:current:main",

572+

lastActiveSessionKey: "agent:current:main",

573+

});

584574

const scopes = Object.keys(scopedSessions);

585575

expect(scopes).toHaveLength(10);

586576

// oldest stale entries should be evicted