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

推荐订阅源

腾讯CDC
N
Netflix TechBlog - Medium
aimingoo的专栏
aimingoo的专栏
P
Proofpoint News Feed
F
Fortinet All Blogs
大猫的无限游戏
大猫的无限游戏
I
InfoQ
V
V2EX
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
有赞技术团队
有赞技术团队
G
Google Developers Blog
L
LangChain Blog
博客园_首页
M
MIT News - Artificial intelligence
H
Hackread – Cybersecurity News, Data Breaches, AI and More
月光博客
月光博客
IT之家
IT之家
量子位
宝玉的分享
宝玉的分享
S
SegmentFault 最新的问题
Stack Overflow Blog
Stack Overflow Blog
V
Visual Studio 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 gateway agent assertions · openclaw/opencla...
steipete · 2026-05-10 · via Recent Commits to openclaw:main

@@ -95,6 +95,13 @@ function requireFirstCallArg(mock: { mock: { calls: unknown[][] } }, label: stri

9595

return arg;

9696

}

979798+

function requireRecord(value: unknown, label: string): Record<string, unknown> {

99+

if (!value || typeof value !== "object" || Array.isArray(value)) {

100+

throw new Error(`expected ${label} object`);

101+

}

102+

return value as Record<string, unknown>;

103+

}

104+98105

function createGatewayTimeoutError() {

99106

const err = new Error("gateway timeout after 90000ms");

100107

err.name = "GatewayTransportError";

@@ -214,12 +221,9 @@ describe("agentCliCommand", () => {

214221

await agentCliCommand({ message: "hi", to: "+1555", model: "ollama/qwen3.5:9b" }, runtime);

215222216223

expect(callGateway).toHaveBeenCalledTimes(1);

217-

const request = requireFirstCallArg(callGateway, "gateway");

218-

expect(request).toMatchObject({

219-

params: {

220-

model: "ollama/qwen3.5:9b",

221-

},

222-

});

224+

const request = requireRecord(requireFirstCallArg(callGateway, "gateway"), "gateway request");

225+

const params = requireRecord(request.params, "gateway request params");

226+

expect(params.model).toBe("ollama/qwen3.5:9b");

223227

});

224228

});

225229

@@ -254,13 +258,16 @@ describe("agentCliCommand", () => {

254258255259

expect(callGateway).toHaveBeenCalledTimes(1);

256260

expect(agentCommand).toHaveBeenCalledTimes(1);

257-

const fallbackOpts = requireFirstCallArg(agentCommand, "embedded agent");

258-

expect(fallbackOpts).toMatchObject({

259-

resultMetaOverrides: {

260-

transport: "embedded",

261-

fallbackFrom: "gateway",

262-

},

263-

});

261+

const fallbackOpts = requireRecord(

262+

requireFirstCallArg(agentCommand, "embedded agent"),

263+

"embedded agent options",

264+

);

265+

const resultMetaOverrides = requireRecord(

266+

fallbackOpts.resultMetaOverrides,

267+

"fallback metadata",

268+

);

269+

expect(resultMetaOverrides.transport).toBe("embedded");

270+

expect(resultMetaOverrides.fallbackFrom).toBe("gateway");

264271

expect(runtime.error).toHaveBeenCalledWith(

265272

expect.stringContaining("EMBEDDED FALLBACK: Gateway agent failed"),

266273

);

@@ -303,23 +310,25 @@ describe("agentCliCommand", () => {

303310304311

expect(callGateway).toHaveBeenCalledTimes(1);

305312

expect(agentCommand).toHaveBeenCalledTimes(1);

306-

const fallbackOpts = requireFirstCallArg(agentCommand, "embedded agent") as {

307-

sessionId?: string;

308-

sessionKey?: string;

309-

runId?: string;

310-

resultMetaOverrides?: unknown;

311-

};

312-

expect(fallbackOpts.sessionId).toMatch(/^gateway-fallback-/);

313-

expect(fallbackOpts.sessionId).not.toBe("locked-session");

314-

expect(fallbackOpts.sessionKey).toBe(`agent:main:explicit:${fallbackOpts.sessionId}`);

315-

expect(fallbackOpts.runId).toBe(fallbackOpts.sessionId);

316-

expect(fallbackOpts.resultMetaOverrides).toMatchObject({

317-

transport: "embedded",

318-

fallbackFrom: "gateway",

319-

fallbackReason: "gateway_timeout",

320-

fallbackSessionId: fallbackOpts.sessionId,

321-

fallbackSessionKey: fallbackOpts.sessionKey,

322-

});

313+

const fallbackOpts = requireRecord(

314+

requireFirstCallArg(agentCommand, "embedded agent"),

315+

"embedded agent options",

316+

);

317+

const fallbackSessionId = String(fallbackOpts.sessionId);

318+

const fallbackSessionKey = String(fallbackOpts.sessionKey);

319+

expect(fallbackSessionId).toMatch(/^gateway-fallback-/);

320+

expect(fallbackSessionId).not.toBe("locked-session");

321+

expect(fallbackSessionKey).toBe(`agent:main:explicit:${fallbackSessionId}`);

322+

expect(fallbackOpts.runId).toBe(fallbackSessionId);

323+

const resultMetaOverrides = requireRecord(

324+

fallbackOpts.resultMetaOverrides,

325+

"fallback metadata",

326+

);

327+

expect(resultMetaOverrides.transport).toBe("embedded");

328+

expect(resultMetaOverrides.fallbackFrom).toBe("gateway");

329+

expect(resultMetaOverrides.fallbackReason).toBe("gateway_timeout");

330+

expect(resultMetaOverrides.fallbackSessionId).toBe(fallbackSessionId);

331+

expect(resultMetaOverrides.fallbackSessionKey).toBe(fallbackSessionKey);

323332

expect(runtime.error).toHaveBeenCalledWith(

324333

expect.stringContaining(

325334

"Gateway agent timed out; running embedded agent with fresh session",

@@ -388,35 +397,33 @@ describe("agentCliCommand", () => {

388397

const result = await agentCliCommand({ message: "hi", to: "+1555", json: true }, jsonRuntime);

389398390399

expect(agentCommand).toHaveBeenCalledTimes(1);

391-

const fallbackOpts = requireFirstCallArg(agentCommand, "embedded agent");

392-

expect(fallbackOpts).toMatchObject({

393-

resultMetaOverrides: {

394-

transport: "embedded",

395-

fallbackFrom: "gateway",

396-

},

397-

});

400+

const fallbackOpts = requireRecord(

401+

requireFirstCallArg(agentCommand, "embedded agent"),

402+

"embedded agent options",

403+

);

404+

const resultMetaOverrides = requireRecord(

405+

fallbackOpts.resultMetaOverrides,

406+

"fallback metadata",

407+

);

408+

expect(resultMetaOverrides.transport).toBe("embedded");

409+

expect(resultMetaOverrides.fallbackFrom).toBe("gateway");

398410

expect(jsonRuntime.error).toHaveBeenCalledWith(

399411

expect.stringContaining("EMBEDDED FALLBACK: Gateway agent failed"),

400412

);

401413

expect(loggingState.forceConsoleToStderr).toBe(true);

402414

expect(jsonRuntime.log).toHaveBeenCalledTimes(1);

403415

const jsonPayload = requireFirstCallArg(jsonRuntime.log, "json runtime log");

404-

const payload = JSON.parse(String(jsonPayload));

405-

expect(payload).toMatchObject({

406-

payloads: [{ text: "local" }],

407-

meta: {

408-

durationMs: 1,

409-

transport: "embedded",

410-

fallbackFrom: "gateway",

411-

},

412-

});

413-

expect(result).toMatchObject({

414-

meta: {

415-

durationMs: 1,

416-

transport: "embedded",

417-

fallbackFrom: "gateway",

418-

},

419-

});

416+

const payload = requireRecord(JSON.parse(String(jsonPayload)), "json log payload");

417+

expect(payload.payloads).toEqual([{ text: "local" }]);

418+

const payloadMeta = requireRecord(payload.meta, "json log metadata");

419+

expect(payloadMeta.durationMs).toBe(1);

420+

expect(payloadMeta.transport).toBe("embedded");

421+

expect(payloadMeta.fallbackFrom).toBe("gateway");

422+

const resultRecord = requireRecord(result, "command result");

423+

const resultMeta = requireRecord(resultRecord.meta, "command result metadata");

424+

expect(resultMeta.durationMs).toBe(1);

425+

expect(resultMeta.transport).toBe("embedded");

426+

expect(resultMeta.fallbackFrom).toBe("gateway");

420427

});

421428

});

422429

@@ -435,11 +442,12 @@ describe("agentCliCommand", () => {

435442436443

expect(callGateway).not.toHaveBeenCalled();

437444

expect(agentCommand).toHaveBeenCalledTimes(1);

438-

const localOpts = requireFirstCallArg(agentCommand, "embedded agent");

439-

expect(localOpts).toMatchObject({

440-

cleanupBundleMcpOnRunEnd: true,

441-

cleanupCliLiveSessionOnRunEnd: true,

442-

});

445+

const localOpts = requireRecord(

446+

requireFirstCallArg(agentCommand, "embedded agent"),

447+

"embedded agent options",

448+

);

449+

expect(localOpts.cleanupBundleMcpOnRunEnd).toBe(true);

450+

expect(localOpts.cleanupCliLiveSessionOnRunEnd).toBe(true);

443451

expect(localOpts).not.toHaveProperty("resultMetaOverrides");

444452

expect(runtime.log).toHaveBeenCalledWith("local");

445453

});

@@ -453,11 +461,12 @@ describe("agentCliCommand", () => {

453461

await agentCliCommand({ message: "hi", to: "+1555" }, runtime);

454462455463

expect(agentCommand).toHaveBeenCalledTimes(1);

456-

const fallbackOpts = requireFirstCallArg(agentCommand, "embedded agent");

457-

expect(fallbackOpts).toMatchObject({

458-

cleanupBundleMcpOnRunEnd: true,

459-

cleanupCliLiveSessionOnRunEnd: true,

460-

});

464+

const fallbackOpts = requireRecord(

465+

requireFirstCallArg(agentCommand, "embedded agent"),

466+

"embedded agent options",

467+

);

468+

expect(fallbackOpts.cleanupBundleMcpOnRunEnd).toBe(true);

469+

expect(fallbackOpts.cleanupCliLiveSessionOnRunEnd).toBe(true);

461470

});

462471

});

463472

});