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

推荐订阅源

让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
罗磊的独立博客
博客园 - 【当耐特】
M
MIT News - Artificial intelligence
月光博客
月光博客
博客园_首页
博客园 - 叶小钗
T
Tailwind CSS Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
I
InfoQ
量子位
小众软件
小众软件
爱范儿
爱范儿
The GitHub Blog
The GitHub Blog
IT之家
IT之家
Jina AI
Jina AI
阮一峰的网络日志
阮一峰的网络日志
G
Google Developers Blog
WordPress大学
WordPress大学
人人都是产品经理
人人都是产品经理
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
J
Java Code Geeks
云风的 BLOG
云风的 BLOG
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报

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 shared status scan assertions · openclaw/op...
steipete · 2026-05-10 · via Recent Commits to openclaw:main

@@ -13,6 +13,55 @@ const mocks = vi.hoisted(() => ({

1313

pickGatewaySelfPresence: vi.fn(),

1414

}));

151516+

type GatewayCall = {

17+

clientName?: string;

18+

config?: unknown;

19+

deviceIdentity?: unknown;

20+

method?: string;

21+

mode?: string;

22+

password?: string;

23+

timeoutMs?: number;

24+

token?: string;

25+

};

26+27+

type GatewayProbeCall = {

28+

auth?: unknown;

29+

detailLevel?: string;

30+

preauthHandshakeTimeoutMs?: number;

31+

timeoutMs?: number;

32+

url?: string;

33+

};

34+35+

type MemorySearchManagerCall = {

36+

agentId?: string;

37+

cfg: {

38+

plugins?: {

39+

slots?: unknown;

40+

};

41+

};

42+

purpose?: string;

43+

};

44+45+

function readGatewayCall(): GatewayCall {

46+

expect(mocks.callGateway).toHaveBeenCalledOnce();

47+

const calls = mocks.callGateway.mock.calls as unknown as Array<[unknown]>;

48+

const call = calls[0]?.[0];

49+

if (!call) {

50+

throw new Error("Expected gateway call");

51+

}

52+

return call as GatewayCall;

53+

}

54+55+

function readProbeCall(): GatewayProbeCall {

56+

expect(mocks.probeGateway).toHaveBeenCalledOnce();

57+

const calls = mocks.probeGateway.mock.calls as unknown as Array<[unknown]>;

58+

const call = calls[0]?.[0];

59+

if (!call) {

60+

throw new Error("Expected gateway probe call");

61+

}

62+

return call as GatewayProbeCall;

63+

}

64+1665

vi.mock("../gateway/connection-details.js", () => ({

1766

buildGatewayConnectionDetailsWithResolvers: mocks.buildGatewayConnectionDetailsWithResolvers,

1867

}));

@@ -66,20 +115,18 @@ describe("resolveGatewayProbeSnapshot", () => {

6611567116

expect(mocks.resolveGatewayProbeAuthResolution).not.toHaveBeenCalled();

68117

expect(mocks.probeGateway).not.toHaveBeenCalled();

69-

expect(result).toEqual({

70-

gatewayConnection: expect.objectContaining({ url: "ws://127.0.0.1:18789" }),

71-

remoteUrlMissing: true,

72-

gatewayMode: "remote",

73-

gatewayProbeAuth: {},

74-

gatewayProbeAuthWarning: undefined,

75-

gatewayProbe: null,

76-

gatewayReachable: false,

77-

gatewaySelf: null,

78-

gatewayCallOverrides: {

79-

url: "ws://127.0.0.1:18789",

80-

token: undefined,

81-

password: undefined,

82-

},

118+

expect(result.gatewayConnection.url).toBe("ws://127.0.0.1:18789");

119+

expect(result.remoteUrlMissing).toBe(true);

120+

expect(result.gatewayMode).toBe("remote");

121+

expect(result.gatewayProbeAuth).toEqual({});

122+

expect(result.gatewayProbeAuthWarning).toBeUndefined();

123+

expect(result.gatewayProbe).toBeNull();

124+

expect(result.gatewayReachable).toBe(false);

125+

expect(result.gatewaySelf).toBeNull();

126+

expect(result.gatewayCallOverrides).toEqual({

127+

url: "ws://127.0.0.1:18789",

128+

token: undefined,

129+

password: undefined,

83130

});

84131

});

85132

@@ -106,13 +153,10 @@ describe("resolveGatewayProbeSnapshot", () => {

106153

});

107154108155

expect(mocks.resolveGatewayProbeAuthResolution).toHaveBeenCalled();

109-

expect(mocks.probeGateway).toHaveBeenCalledWith(

110-

expect.objectContaining({

111-

url: "ws://127.0.0.1:18789",

112-

auth: { token: "tok", password: "pw" },

113-

detailLevel: "full",

114-

}),

115-

);

156+

const probeCall = readProbeCall();

157+

expect(probeCall.url).toBe("ws://127.0.0.1:18789");

158+

expect(probeCall.auth).toEqual({ token: "tok", password: "pw" });

159+

expect(probeCall.detailLevel).toBe("full");

116160

expect(result.gatewayReachable).toBe(true);

117161

expect(result.gatewaySelf).toEqual({ host: "box" });

118162

expect(result.gatewayCallOverrides).toEqual({

@@ -216,25 +260,20 @@ describe("resolveGatewayProbeSnapshot", () => {

216260

},

217261

});

218262219-

expect(mocks.callGateway).toHaveBeenCalledWith(

220-

expect.objectContaining({

221-

config: {},

222-

method: "status",

223-

token: "tok",

224-

password: "pw",

225-

timeoutMs: 2000,

226-

mode: "backend",

227-

clientName: "gateway-client",

228-

}),

229-

);

230-

expect(mocks.callGateway.mock.calls[0]?.[0]).not.toHaveProperty("deviceIdentity");

263+

const gatewayCall = readGatewayCall();

264+

expect(gatewayCall.config).toEqual({});

265+

expect(gatewayCall.method).toBe("status");

266+

expect(gatewayCall.token).toBe("tok");

267+

expect(gatewayCall.password).toBe("pw");

268+

expect(gatewayCall.timeoutMs).toBe(2000);

269+

expect(gatewayCall.mode).toBe("backend");

270+

expect(gatewayCall.clientName).toBe("gateway-client");

271+

expect(gatewayCall).not.toHaveProperty("deviceIdentity");

231272

expect(result.gatewayReachable).toBe(true);

232-

expect(result.gatewayProbe).toMatchObject({

233-

ok: true,

234-

error: "timeout",

235-

status: { sessions: 1 },

236-

auth: { capability: "read_only" },

237-

});

273+

expect(result.gatewayProbe?.ok).toBe(true);

274+

expect(result.gatewayProbe?.error).toBe("timeout");

275+

expect(result.gatewayProbe?.status).toEqual({ sessions: 1 });

276+

expect(result.gatewayProbe?.auth?.capability).toBe("read_only");

238277

expect(result.gatewayProbeAuthWarning).toBe("warn");

239278

});

240279

@@ -267,18 +306,12 @@ describe("resolveGatewayProbeSnapshot", () => {

267306

opts: {},

268307

});

269308270-

expect(mocks.probeGateway).toHaveBeenCalledWith(

271-

expect.objectContaining({

272-

preauthHandshakeTimeoutMs: 30_000,

273-

timeoutMs: 30_000,

274-

}),

275-

);

276-

expect(mocks.callGateway).toHaveBeenCalledWith(

277-

expect.objectContaining({

278-

config: { gateway: { handshakeTimeoutMs: 30_000 } },

279-

timeoutMs: 30_000,

280-

}),

281-

);

309+

const probeCall = readProbeCall();

310+

expect(probeCall.preauthHandshakeTimeoutMs).toBe(30_000);

311+

expect(probeCall.timeoutMs).toBe(30_000);

312+

const gatewayCall = readGatewayCall();

313+

expect(gatewayCall.config).toEqual({ gateway: { handshakeTimeoutMs: 30_000 } });

314+

expect(gatewayCall.timeoutMs).toBe(30_000);

282315

});

283316284317

it("does not raise an explicit local status RPC fallback timeout", async () => {

@@ -310,17 +343,10 @@ describe("resolveGatewayProbeSnapshot", () => {

310343

opts: { timeoutMs: 1000 },

311344

});

312345313-

expect(mocks.probeGateway).toHaveBeenCalledWith(

314-

expect.objectContaining({

315-

preauthHandshakeTimeoutMs: 30_000,

316-

timeoutMs: 1000,

317-

}),

318-

);

319-

expect(mocks.callGateway).toHaveBeenCalledWith(

320-

expect.objectContaining({

321-

timeoutMs: 1000,

322-

}),

323-

);

346+

const probeCall = readProbeCall();

347+

expect(probeCall.preauthHandshakeTimeoutMs).toBe(30_000);

348+

expect(probeCall.timeoutMs).toBe(1000);

349+

expect(readGatewayCall().timeoutMs).toBe(1000);

324350

});

325351326352

it("lets callGateway reuse paired-device auth for local status RPC fallback", async () => {

@@ -356,17 +382,14 @@ describe("resolveGatewayProbeSnapshot", () => {

356382

opts: {},

357383

});

358384359-

expect(mocks.callGateway).toHaveBeenCalledWith(

360-

expect.objectContaining({

361-

config: {},

362-

method: "status",

363-

token: undefined,

364-

password: undefined,

365-

mode: "backend",

366-

clientName: "gateway-client",

367-

}),

368-

);

369-

expect(mocks.callGateway.mock.calls[0]?.[0]).not.toHaveProperty("deviceIdentity");

385+

const gatewayCall = readGatewayCall();

386+

expect(gatewayCall.config).toEqual({});

387+

expect(gatewayCall.method).toBe("status");

388+

expect(gatewayCall.token).toBeUndefined();

389+

expect(gatewayCall.password).toBeUndefined();

390+

expect(gatewayCall.mode).toBe("backend");

391+

expect(gatewayCall.clientName).toBe("gateway-client");

392+

expect(gatewayCall).not.toHaveProperty("deviceIdentity");

370393

expect(result.gatewayReachable).toBe(true);

371394

});

372395

@@ -442,15 +465,14 @@ describe("resolveSharedMemoryStatusSnapshot", () => {

442465443466

expect(resolveMemoryConfig).not.toHaveBeenCalled();

444467

expect(requireDefaultStore).not.toHaveBeenCalled();

445-

expect(getMemorySearchManager).toHaveBeenCalledWith({

446-

cfg: expect.objectContaining({

447-

plugins: expect.objectContaining({

448-

slots: { memory: "memory-lancedb-pro" },

449-

}),

450-

}),

451-

agentId: "main",

452-

purpose: "status",

453-

});

468+

expect(getMemorySearchManager).toHaveBeenCalledOnce();

469+

const managerCalls = getMemorySearchManager.mock.calls as unknown as Array<

470+

[MemorySearchManagerCall]

471+

>;

472+

const managerCall = managerCalls[0]?.[0];

473+

expect(managerCall?.cfg.plugins?.slots).toEqual({ memory: "memory-lancedb-pro" });

474+

expect(managerCall?.agentId).toBe("main");

475+

expect(managerCall?.purpose).toBe("status");

454476

expect(manager.probeVectorStoreAvailability).toHaveBeenCalled();

455477

expect(manager.probeVectorAvailability).not.toHaveBeenCalled();

456478

expect(manager.status).toHaveBeenCalled();