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

推荐订阅源

小众软件
小众软件
博客园_首页
博客园 - 聂微东
T
Tailwind CSS Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
J
Java Code Geeks
The Cloudflare Blog
aimingoo的专栏
aimingoo的专栏
Martin Fowler
Martin Fowler
D
Docker
人人都是产品经理
人人都是产品经理
WordPress大学
WordPress大学
博客园 - 三生石上(FineUI控件)
Microsoft Azure Blog
Microsoft Azure Blog
Recent Announcements
Recent Announcements
Apple Machine Learning Research
Apple Machine Learning Research
阮一峰的网络日志
阮一峰的网络日志
B
Blog RSS Feed
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Microsoft Security Blog
Microsoft Security Blog
L
LangChain Blog
Jina AI
Jina AI
博客园 - Franky
D
DataBreaches.Net

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: guard discord message process mock calls · openclaw...
steipete · 2026-05-12 · via Recent Commits to openclaw:main

@@ -452,6 +452,24 @@ function requireRecord(value: unknown, label: string): Record<string, unknown> {

452452

return value as Record<string, unknown>;

453453

}

454454455+

type MockWithCalls = { mock: { calls: unknown[][] } };

456+457+

function firstMockCall(mock: MockWithCalls, label: string): unknown[] {

458+

const call = mock.mock.calls.at(0);

459+

if (!call) {

460+

throw new Error(`missing ${label} call`);

461+

}

462+

return call;

463+

}

464+465+

function firstMockArg(mock: MockWithCalls, label: string) {

466+

return firstMockCall(mock, label)[0];

467+

}

468+469+

function firstDispatchParams(): DispatchInboundParams {

470+

return firstMockArg(dispatchInboundMessage, "dispatchInboundMessage") as DispatchInboundParams;

471+

}

472+455473

function expectRecordFields(record: Record<string, unknown>, fields: Record<string, unknown>) {

456474

for (const [key, value] of Object.entries(fields)) {

457475

expect(record[key]).toEqual(value);

@@ -560,10 +578,7 @@ function createMockDraftStreamForTest() {

560578

}

561579562580

function expectPreviewEditContent(content: string) {

563-

const call = editMessageDiscord.mock.calls[0] as unknown[] | undefined;

564-

if (!call) {

565-

throw new Error("missing preview edit call");

566-

}

581+

const call = firstMockCall(editMessageDiscord, "preview edit");

567582

expect(call[0]).toBe("c1");

568583

expect(call[1]).toBe("preview-1");

569584

expect(call[2]).toEqual({ content });

@@ -655,11 +670,14 @@ describe("processDiscordMessage ack reactions", () => {

655670656671

expect(sendMocks.reactMessageDiscord).toHaveBeenCalled();

657672

const feedbackOptions = requireRecord(

658-

sendMocks.reactMessageDiscord.mock.calls[0]?.[3],

673+

requireReactionCall(sendMocks.reactMessageDiscord, 0)[3],

659674

"feedback reaction options",

660675

);

661676

expect(feedbackOptions.rest).toBe(feedbackRest);

662-

const deliveryParams = requireRecord(deliverDiscordReply.mock.calls[0]?.[0], "delivery params");

677+

const deliveryParams = requireRecord(

678+

firstMockArg(deliverDiscordReply, "deliverDiscordReply"),

679+

"delivery params",

680+

);

663681

expect(deliveryParams.rest).toBe(deliveryRest);

664682

expect(feedbackRest).not.toBe(deliveryRest);

665683

});

@@ -753,12 +771,10 @@ describe("processDiscordMessage ack reactions", () => {

753771

await runProcessDiscordMessage(ctx);

754772

await vi.runAllTimersAsync();

755773756-

const resolveCall = discordTargetMocks.resolveDiscordTargetChannelId.mock.calls[0] as

757-

| unknown[]

758-

| undefined;

759-

if (!resolveCall) {

760-

throw new Error("missing Discord target resolve call");

761-

}

774+

const resolveCall = firstMockCall(

775+

discordTargetMocks.resolveDiscordTargetChannelId,

776+

"resolveDiscordTargetChannelId",

777+

);

762778

expect(resolveCall[0]).toBe("user:u1");

763779

expect(requireRecord(resolveCall[1], "Discord target resolve options").accountId).toBe(

764780

"default",

@@ -1553,9 +1569,7 @@ describe("processDiscordMessage draft streaming", () => {

15531569

await runProcessDiscordMessage(ctx);

1554157015551571

expect(draftStream.update).toHaveBeenCalledWith("Hello");

1556-

expect(dispatchInboundMessage.mock.calls[0]?.[0]?.replyOptions?.disableBlockStreaming).toBe(

1557-

true,

1558-

);

1572+

expect(firstDispatchParams().replyOptions?.disableBlockStreaming).toBe(true);

15591573

});

1560157415611575

it("keeps progress label visible when Discord tool progress lines are disabled", async () => {

@@ -1586,10 +1600,8 @@ describe("processDiscordMessage draft streaming", () => {

15861600

expect(draftStream.update).toHaveBeenCalledWith("Shelling");

15871601

expect(draftStream.flush).toHaveBeenCalledTimes(1);

15881602

expect(

1589-

requireRecord(

1590-

dispatchInboundMessage.mock.calls[0]?.[0]?.replyOptions,

1591-

"dispatch reply options",

1592-

).suppressDefaultToolProgressMessages,

1603+

requireRecord(firstDispatchParams().replyOptions, "dispatch reply options")

1604+

.suppressDefaultToolProgressMessages,

15931605

).toBe(true);

15941606

});

15951607

@@ -1879,9 +1891,7 @@ describe("processDiscordMessage draft streaming", () => {

1879189118801892

await runProcessDiscordMessage(ctx);

188118931882-

expect(

1883-

dispatchInboundMessage.mock.calls[0]?.[0]?.replyOptions?.suppressDefaultToolProgressMessages,

1884-

).toBe(true);

1894+

expect(firstDispatchParams().replyOptions?.suppressDefaultToolProgressMessages).toBe(true);

18851895

});

1886189618871897

it("strips reply tags from preview partials", async () => {