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

推荐订阅源

Apple Machine Learning Research
Apple Machine Learning Research
博客园_首页
G
Google Developers Blog
aimingoo的专栏
aimingoo的专栏
罗磊的独立博客
博客园 - 【当耐特】
M
MIT News - Artificial intelligence
D
Docker
博客园 - 三生石上(FineUI控件)
博客园 - 司徒正美
人人都是产品经理
人人都是产品经理
博客园 - 叶小钗
月光博客
月光博客
S
SegmentFault 最新的问题
Jina AI
Jina AI
Blog — PlanetScale
Blog — PlanetScale
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
博客园 - Franky
L
LangChain Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Microsoft Azure Blog
Microsoft Azure Blog
阮一峰的网络日志
阮一峰的网络日志
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
Last Week in AI
Last Week in AI

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 diagnostics command assertions · openclaw/o...
steipete · 2026-05-11 · via Recent Commits to openclaw:main

@@ -13,6 +13,54 @@ type ExecCall = {

1313

params: unknown;

1414

};

151516+

type ExecDefaults = {

17+

accountId?: string;

18+

approvalFollowup?: () => Promise<string | undefined>;

19+

approvalFollowupMode?: string;

20+

approvalFollowupText?: string;

21+

approvalWarningText?: string;

22+

ask?: string;

23+

currentChannelId?: string;

24+

host?: string;

25+

messageProvider?: string;

26+

security?: string;

27+

trigger?: string;

28+

};

29+30+

type ExecParams = {

31+

ask?: string;

32+

command?: string;

33+

security?: string;

34+

};

35+36+

type DiagnosticsSession = {

37+

accountId?: string;

38+

agentHarnessId?: string;

39+

channel?: string;

40+

sessionFile?: string;

41+

sessionId?: string;

42+

sessionKey?: string;

43+

};

44+45+

function requireExecCall(execCalls: ExecCall[], index = 0) {

46+

const call = execCalls[index];

47+

if (!call) {

48+

throw new Error(`expected exec call #${index + 1}`);

49+

}

50+

return {

51+

defaults: call.defaults as ExecDefaults,

52+

params: call.params as ExecParams,

53+

};

54+

}

55+56+

function requireDiagnosticsSessions(call: PluginCommandContext | undefined) {

57+

const sessions = call?.diagnosticsSessions as DiagnosticsSession[] | undefined;

58+

if (!sessions) {

59+

throw new Error("expected diagnostics sessions");

60+

}

61+

return sessions;

62+

}

63+1664

function buildDiagnosticsParams(

1765

commandBodyNormalized: string,

1866

overrides: Partial<HandleCommandsParams> = {},

@@ -241,24 +289,21 @@ describe("diagnostics command", () => {

241289

expect(result?.shouldContinue).toBe(false);

242290

expect(result?.reply).toBeUndefined();

243291

expect(execCalls).toHaveLength(1);

244-

expect(execCalls[0]?.defaults).toMatchObject({

245-

host: "gateway",

246-

security: "allowlist",

247-

ask: "always",

248-

trigger: "diagnostics",

249-

approvalFollowupMode: "direct",

250-

approvalWarningText: expect.stringContaining(

251-

"Diagnostics can include sensitive local logs and host-level runtime metadata.",

252-

),

253-

});

254-

expect(

255-

String((execCalls[0]?.defaults as { approvalWarningText?: string }).approvalWarningText),

256-

).toContain("https://docs.openclaw.ai/gateway/diagnostics");

257-

expect(execCalls[0]?.params).toMatchObject({

258-

security: "allowlist",

259-

ask: "always",

260-

});

261-

const command = (execCalls[0]?.params as { command?: string }).command ?? "";

292+

const execCall = requireExecCall(execCalls);

293+

expect(execCall.defaults.host).toBe("gateway");

294+

expect(execCall.defaults.security).toBe("allowlist");

295+

expect(execCall.defaults.ask).toBe("always");

296+

expect(execCall.defaults.trigger).toBe("diagnostics");

297+

expect(execCall.defaults.approvalFollowupMode).toBe("direct");

298+

expect(execCall.defaults.approvalWarningText).toContain(

299+

"Diagnostics can include sensitive local logs and host-level runtime metadata.",

300+

);

301+

expect(execCall.defaults.approvalWarningText).toContain(

302+

"https://docs.openclaw.ai/gateway/diagnostics",

303+

);

304+

expect(execCall.params.security).toBe("allowlist");

305+

expect(execCall.params.ask).toBe("always");

306+

const command = execCall.params.command ?? "";

262307

expect(command).toContain("gateway");

263308

expect(command).toContain("diagnostics");

264309

expect(command).toContain("export");

@@ -298,11 +343,10 @@ describe("diagnostics command", () => {

298343

await handleDiagnosticsCommand(params, true);

299344300345

expect(execCalls).toHaveLength(1);

301-

expect(execCalls[0]?.defaults).toMatchObject({

302-

messageProvider: "telegram",

303-

currentChannelId: "telegram:8460800771",

304-

accountId: "account-1",

305-

});

346+

const execCall = requireExecCall(execCalls);

347+

expect(execCall.defaults.messageProvider).toBe("telegram");

348+

expect(execCall.defaults.currentChannelId).toBe("telegram:8460800771");

349+

expect(execCall.defaults.accountId).toBe("account-1");

306350

});

307351308352

it("falls back to a visible reply when approval cannot be queued", async () => {

@@ -353,20 +397,14 @@ describe("diagnostics command", () => {

353397

expect(calls[0]?.diagnosticsPreviewOnly).toBe(true);

354398

expect(calls[0]?.senderIsOwner).toBe(true);

355399

expect(calls[0]?.sessionFile).toBe("/tmp/session.jsonl");

356-

expect(calls[0]?.diagnosticsSessions).toEqual([

357-

expect.objectContaining({

358-

agentHarnessId: "codex",

359-

sessionId: "session-1",

360-

sessionFile: "/tmp/session.jsonl",

361-

channel: "whatsapp",

362-

accountId: "account-1",

363-

}),

364-

]);

365-

const defaults = execCalls[0]?.defaults as {

366-

approvalWarningText?: string;

367-

approvalFollowupText?: string;

368-

approvalFollowup?: () => Promise<string | undefined>;

369-

};

400+

const diagnosticsSessions = requireDiagnosticsSessions(calls[0]);

401+

expect(diagnosticsSessions).toHaveLength(1);

402+

expect(diagnosticsSessions[0]?.agentHarnessId).toBe("codex");

403+

expect(diagnosticsSessions[0]?.sessionId).toBe("session-1");

404+

expect(diagnosticsSessions[0]?.sessionFile).toBe("/tmp/session.jsonl");

405+

expect(diagnosticsSessions[0]?.channel).toBe("whatsapp");

406+

expect(diagnosticsSessions[0]?.accountId).toBe("account-1");

407+

const { defaults } = requireExecCall(execCalls);

370408

expect(defaults.approvalWarningText).toContain("OpenAI Codex harness:");

371409

expect(defaults.approvalWarningText).toContain(

372410

"Approving diagnostics will also send this thread's feedback bundle to OpenAI servers.",

@@ -413,23 +451,19 @@ describe("diagnostics command", () => {

413451

expect(result?.shouldContinue).toBe(false);

414452

expect(result?.reply).toBeUndefined();

415453

expect(calls).toHaveLength(1);

416-

expect(calls[0]?.diagnosticsSessions).toEqual([

417-

expect.objectContaining({

418-

sessionKey: "agent:main:telegram:direct:user-1",

419-

sessionId: "telegram-session",

420-

sessionFile: "/tmp/telegram.jsonl",

421-

channel: "whatsapp",

422-

}),

423-

expect.objectContaining({

424-

sessionKey: "agent:main:discord:channel:123",

425-

sessionId: "discord-session",

426-

sessionFile: "/tmp/discord.jsonl",

427-

channel: "discord",

428-

}),

429-

]);

430-

expect(

431-

(execCalls[0]?.defaults as { approvalWarningText?: string }).approvalWarningText,

432-

).toContain("OpenAI Codex harness:");

454+

const diagnosticsSessions = requireDiagnosticsSessions(calls[0]);

455+

expect(diagnosticsSessions).toHaveLength(2);

456+

expect(diagnosticsSessions[0]?.sessionKey).toBe("agent:main:telegram:direct:user-1");

457+

expect(diagnosticsSessions[0]?.sessionId).toBe("telegram-session");

458+

expect(diagnosticsSessions[0]?.sessionFile).toBe("/tmp/telegram.jsonl");

459+

expect(diagnosticsSessions[0]?.channel).toBe("whatsapp");

460+

expect(diagnosticsSessions[1]?.sessionKey).toBe("agent:main:discord:channel:123");

461+

expect(diagnosticsSessions[1]?.sessionId).toBe("discord-session");

462+

expect(diagnosticsSessions[1]?.sessionFile).toBe("/tmp/discord.jsonl");

463+

expect(diagnosticsSessions[1]?.channel).toBe("discord");

464+

expect(requireExecCall(execCalls).defaults.approvalWarningText).toContain(

465+

"OpenAI Codex harness:",

466+

);

433467

});

434468435469

it("omits the Codex section for ordinary sessions without Codex targets", async () => {

@@ -458,9 +492,9 @@ describe("diagnostics command", () => {

458492

true,

459493

);

460494461-

expect(

462-

(execCalls[0]?.defaults as { approvalWarningText?: string }).approvalWarningText,

463-

).not.toContain("OpenAI Codex harness:");

495+

expect(requireExecCall(execCalls).defaults.approvalWarningText).not.toContain(

496+

"OpenAI Codex harness:",

497+

);

464498

});

465499466500

it("routes group diagnostics details privately before starting collection", async () => {

@@ -494,17 +528,14 @@ describe("diagnostics command", () => {

494528

expect(result?.reply?.text).not.toContain("codex-thread-1");

495529

expect(privateReplies).toHaveLength(0);

496530

expect(execCalls).toHaveLength(1);

497-

expect(execCalls[0]?.defaults).toMatchObject({

498-

messageProvider: "telegram",

499-

currentChannelId: "owner-dm",

500-

accountId: "account-1",

501-

});

502-

expect(

503-

(execCalls[0]?.defaults as { approvalWarningText?: string }).approvalWarningText,

504-

).toContain("Approving diagnostics will also send this thread's feedback bundle");

505-

expect(

506-

(execCalls[0]?.defaults as { approvalWarningText?: string }).approvalWarningText,

507-

).not.toContain("To send:");

531+

const { defaults } = requireExecCall(execCalls);

532+

expect(defaults.messageProvider).toBe("telegram");

533+

expect(defaults.currentChannelId).toBe("owner-dm");

534+

expect(defaults.accountId).toBe("account-1");

535+

expect(defaults.approvalWarningText).toContain(

536+

"Approving diagnostics will also send this thread's feedback bundle",

537+

);

538+

expect(defaults.approvalWarningText).not.toContain("To send:");

508539

expect(calls[0]?.diagnosticsPrivateRouted).toBe(true);

509540

});

510541