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

推荐订阅源

L
LangChain Blog
有赞技术团队
有赞技术团队
博客园_首页
IT之家
IT之家
爱范儿
爱范儿
量子位
小众软件
小众软件
Jina AI
Jina AI
WordPress大学
WordPress大学
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - 聂微东
The Cloudflare Blog
博客园 - 司徒正美
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
V
V2EX
大猫的无限游戏
大猫的无限游戏
月光博客
月光博客
雷峰网
雷峰网
V
Visual Studio Blog
博客园 - Franky
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
美团技术团队
Last Week in AI
Last Week in AI
S
SegmentFault 最新的问题

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 discord channel assertions · openclaw/openc...
steipete · 2026-05-11 · via Recent Commits to openclaw:main

@@ -93,6 +93,33 @@ function installDiscordRuntime(discord: Record<string, unknown>) {

9393

} as unknown as PluginRuntime);

9494

}

959596+

type MockWithCalls = {

97+

mock: { calls: unknown[][] };

98+

};

99+100+

function objectArgAt(

101+

mock: MockWithCalls,

102+

callIndex: number,

103+

argIndex: number,

104+

): Record<string, unknown> {

105+

const value = mock.mock.calls[callIndex]?.[argIndex];

106+

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

107+

throw new Error(`expected call ${callIndex} argument ${argIndex} to be an object`);

108+

}

109+

return value as Record<string, unknown>;

110+

}

111+112+

function argAt(mock: MockWithCalls, callIndex: number, argIndex: number): unknown {

113+

return mock.mock.calls[callIndex]?.[argIndex];

114+

}

115+116+

function recordField(value: unknown, field: string): Record<string, unknown> {

117+

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

118+

throw new Error(`expected ${field} to be an object`);

119+

}

120+

return value as Record<string, unknown>;

121+

}

122+96123

afterEach(() => {

97124

probeDiscordMock.mockReset();

98125

monitorDiscordProviderMock.mockReset();

@@ -243,14 +270,10 @@ describe("discordPlugin outbound", () => {

243270

},

244271

} as OpenClawConfig;

245272246-

expect(resolveAccount(cfg).config).toMatchObject({

247-

gatewayReadyTimeoutMs: 90_000,

248-

gatewayRuntimeReadyTimeoutMs: 120_000,

249-

});

250-

expect(resolveAccount(cfg, "work").config).toMatchObject({

251-

gatewayReadyTimeoutMs: 60_000,

252-

gatewayRuntimeReadyTimeoutMs: 120_000,

253-

});

273+

expect(resolveAccount(cfg).config.gatewayReadyTimeoutMs).toBe(90_000);

274+

expect(resolveAccount(cfg).config.gatewayRuntimeReadyTimeoutMs).toBe(120_000);

275+

expect(resolveAccount(cfg, "work").config.gatewayReadyTimeoutMs).toBe(60_000);

276+

expect(resolveAccount(cfg, "work").config.gatewayRuntimeReadyTimeoutMs).toBe(120_000);

254277

});

255278256279

it("forwards full media send context to sendMessageDiscord", async () => {

@@ -272,17 +295,15 @@ describe("discordPlugin outbound", () => {

272295

},

273296

});

274297275-

expect(sendMessageDiscord).toHaveBeenCalledWith(

276-

"channel:thread-123",

277-

"hi",

278-

expect.objectContaining({

279-

mediaUrl: "/tmp/image.png",

280-

mediaLocalRoots: ["/tmp/agent-root"],

281-

mediaReadFile,

282-

replyTo: "reply-123",

283-

}),

284-

);

285-

expect(result).toMatchObject({ channel: "discord", messageId: "m1" });

298+

expect(argAt(sendMessageDiscord, 0, 0)).toBe("channel:thread-123");

299+

expect(argAt(sendMessageDiscord, 0, 1)).toBe("hi");

300+

const sendOptions = objectArgAt(sendMessageDiscord, 0, 2);

301+

expect(sendOptions.mediaUrl).toBe("/tmp/image.png");

302+

expect(sendOptions.mediaLocalRoots).toEqual(["/tmp/agent-root"]);

303+

expect(sendOptions.mediaReadFile).toBe(mediaReadFile);

304+

expect(sendOptions.replyTo).toBe("reply-123");

305+

expect(result.channel).toBe("discord");

306+

expect(result.messageId).toBe("m1");

286307

});

287308288309

it("splits text and video into separate sends for attached outbound delivery", async () => {

@@ -305,23 +326,14 @@ describe("discordPlugin outbound", () => {

305326

});

306327307328

expect(sendMessageDiscord).toHaveBeenCalledTimes(2);

308-

expect(sendMessageDiscord).toHaveBeenNthCalledWith(

309-

1,

310-

"channel:thread-123",

311-

"done - tiny cyber-lobster clip incoming",

312-

expect.objectContaining({

313-

replyTo: "reply-123",

314-

}),

315-

);

316-

expect(sendMessageDiscord).toHaveBeenNthCalledWith(

317-

2,

318-

"channel:thread-123",

319-

"",

320-

expect.objectContaining({

321-

mediaUrl: "/tmp/molty.mp4",

322-

}),

323-

);

324-

expect(result).toMatchObject({ channel: "discord", messageId: "video-1" });

329+

expect(argAt(sendMessageDiscord, 0, 0)).toBe("channel:thread-123");

330+

expect(argAt(sendMessageDiscord, 0, 1)).toBe("done - tiny cyber-lobster clip incoming");

331+

expect(objectArgAt(sendMessageDiscord, 0, 2).replyTo).toBe("reply-123");

332+

expect(argAt(sendMessageDiscord, 1, 0)).toBe("channel:thread-123");

333+

expect(argAt(sendMessageDiscord, 1, 1)).toBe("");

334+

expect(objectArgAt(sendMessageDiscord, 1, 2).mediaUrl).toBe("/tmp/molty.mp4");

335+

expect(result.channel).toBe("discord");

336+

expect(result.messageId).toBe("video-1");

325337

});

326338327339

it("threads poll sends through the thread target", async () => {

@@ -339,17 +351,15 @@ describe("discordPlugin outbound", () => {

339351

threadId: "thread-123",

340352

});

341353342-

expect(sendPollDiscord).toHaveBeenCalledWith(

343-

"channel:thread-123",

344-

{

345-

question: "Best shell?",

346-

options: ["molty", "molter"],

347-

},

348-

expect.objectContaining({

349-

accountId: "work",

350-

}),

351-

);

352-

expect(result).toMatchObject({ channel: "discord", messageId: "poll-1" });

354+

expect(argAt(sendPollDiscord, 0, 0)).toBe("channel:thread-123");

355+

expect(argAt(sendPollDiscord, 0, 1)).toEqual({

356+

question: "Best shell?",

357+

options: ["molty", "molter"],

358+

});

359+

expect(objectArgAt(sendPollDiscord, 0, 2).accountId).toBe("work");

360+

const pollResult = result as { channel?: string; messageId?: string };

361+

expect(pollResult.channel).toBe("discord");

362+

expect(pollResult.messageId).toBe("poll-1");

353363

} finally {

354364

sendPollSpy.mockRestore();

355365

}

@@ -434,14 +444,11 @@ describe("discordPlugin outbound", () => {

434444

target: "channel:222",

435445

});

436446437-

expect(fetchPermissionsSpy).toHaveBeenCalledWith(

438-

"222",

439-

expect.objectContaining({ token: "discord-token" }),

440-

);

441-

expect(diagnostics?.details?.permissions).toMatchObject({

442-

channelId: "222",

443-

missingRequired: ["Connect", "Speak", "ReadMessageHistory"],

444-

});

447+

expect(fetchPermissionsSpy.mock.calls[0]?.[0]).toBe("222");

448+

expect(objectArgAt(fetchPermissionsSpy, 0, 1).token).toBe("discord-token");

449+

const permissions = recordField(diagnostics?.details?.permissions, "permissions");

450+

expect(permissions.channelId).toBe("222");

451+

expect(permissions.missingRequired).toEqual(["Connect", "Speak", "ReadMessageHistory"]);

445452

expect(diagnostics?.lines?.map((line) => line.text).join("\n")).toContain(

446453

"Missing required: Connect, Speak, ReadMessageHistory",

447454

);

@@ -483,12 +490,9 @@ describe("discordPlugin outbound", () => {

483490

includeApplication: true,

484491

}),

485492

);

486-

expect(monitorDiscordProviderMock).toHaveBeenCalledWith(

487-

expect.objectContaining({

488-

token: "discord-token",

489-

accountId: "default",

490-

}),

491-

);

493+

const monitorParams = objectArgAt(monitorDiscordProviderMock, 0, 0);

494+

expect(monitorParams.token).toBe("discord-token");

495+

expect(monitorParams.accountId).toBe("default");

492496

expect(sleepWithAbortMock).not.toHaveBeenCalled();

493497

expect(runtimeProbeDiscord).not.toHaveBeenCalled();

494498

expect(runtimeMonitorDiscordProvider).not.toHaveBeenCalled();

@@ -520,12 +524,9 @@ describe("discordPlugin outbound", () => {

520524521525

await discordPlugin.gateway!.startAccount!(ctx);

522526523-

expect(monitorDiscordProviderMock).toHaveBeenCalledWith(

524-

expect.objectContaining({

525-

token: "discord-token",

526-

accountId: "default",

527-

}),

528-

);

527+

const monitorParams = objectArgAt(monitorDiscordProviderMock, 0, 0);

528+

expect(monitorParams.token).toBe("discord-token");

529+

expect(monitorParams.accountId).toBe("default");

529530

await vi.waitFor(() =>

530531

expect(probeDiscordMock).toHaveBeenCalledWith("discord-token", 2500, {

531532

includeApplication: true,