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

推荐订阅源

Hugging Face - Blog
Hugging Face - Blog
量子位
H
Help Net Security
Microsoft Azure Blog
Microsoft Azure Blog
MongoDB | Blog
MongoDB | Blog
小众软件
小众软件
爱范儿
爱范儿
博客园 - 【当耐特】
Vercel News
Vercel News
S
SegmentFault 最新的问题
M
MIT News - Artificial intelligence
F
Fortinet All Blogs
Apple Machine Learning Research
Apple Machine Learning Research
GbyAI
GbyAI
博客园 - 叶小钗
博客园_首页
V
Visual Studio Blog
宝玉的分享
宝玉的分享
B
Blog
MyScale Blog
MyScale Blog
C
Check Point Blog
博客园 - 三生石上(FineUI控件)
L
LangChain Blog
V
V2EX

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: dedupe chat directive mock calls · openclaw/opencla...
steipete · 2026-05-12 · via Recent Commits to openclaw:main

@@ -395,6 +395,20 @@ function lastRespondCall(respond: ReturnType<typeof vi.fn>) {

395395

| undefined;

396396

}

397397398+

function responseErrorMessage(error: unknown): string {

399+

if (error instanceof Error) {

400+

return error.message;

401+

}

402+

if (error && typeof error === "object") {

403+

const message = (error as { message?: unknown }).message;

404+

if (typeof message === "string") {

405+

return message;

406+

}

407+

return JSON.stringify(error);

408+

}

409+

return String(error);

410+

}

411+398412

function lastBroadcastPayload(context: ChatContext): Record<string, any> | undefined {

399413

const chatCall = (context.broadcast as unknown as ReturnType<typeof vi.fn>).mock.calls.at(-1);

400414

expect(chatCall?.[0]).toBe("chat");

@@ -590,7 +604,9 @@ async function runNonStreamingChatSend(params: {

590604

).toBe(1);

591605

});

592606593-

const chatCall = (params.context.broadcast as unknown as ReturnType<typeof vi.fn>).mock.calls[0];

607+

const chatCall = (params.context.broadcast as unknown as ReturnType<typeof vi.fn>).mock.calls.at(

608+

0,

609+

);

594610

expect(chatCall?.[0]).toBe("chat");

595611

return chatCall?.[1];

596612

}

@@ -2957,13 +2973,14 @@ describe("chat directive tag stripping for non-streaming final payloads", () =>

29572973

// so the client retries instead of treating it as a bad request.

29582974

expect(mockState.lastDispatchCtx).toBeUndefined();

29592975

expect(respond).toHaveBeenCalledTimes(1);

2960-

const [ok, payload, error] = respond.mock.calls[0] ?? [];

2976+

const [ok, payload, error] = lastRespondCall(respond) ?? [];

29612977

expect(ok).toBe(false);

29622978

expect(payload).toBeUndefined();

29632979

expect(error?.code).toBe(ErrorCodes.UNAVAILABLE);

2964-

expect(error?.message ?? String(error)).toMatch(/ENOSPC|non-image attachments/i);

2965-

const unavailableLogCall = (context.logGateway.error as unknown as ReturnType<typeof vi.fn>)

2966-

.mock.calls[0] as [string, Record<string, string>] | undefined;

2980+

expect(responseErrorMessage(error)).toMatch(/ENOSPC|non-image attachments/i);

2981+

const unavailableLogCall = (

2982+

context.logGateway.error as unknown as ReturnType<typeof vi.fn>

2983+

).mock.calls.at(0) as [string, Record<string, string>] | undefined;

29672984

expect(unavailableLogCall?.[0]).toBe("chat.send attachment parse/stage failed");

29682985

expect(unavailableLogCall?.[1].consoleMessage).toContain(

29692986

"chat.send attachment parse/stage failed: MediaOffloadError",

@@ -3067,11 +3084,11 @@ describe("chat directive tag stripping for non-streaming final payloads", () =>

3067308430683085

expect(mockState.lastDispatchCtx).toBeUndefined();

30693086

expect(respond).toHaveBeenCalledTimes(1);

3070-

const [ok, payload, error] = respond.mock.calls[0] ?? [];

3087+

const [ok, payload, error] = lastRespondCall(respond) ?? [];

30713088

expect(ok).toBe(false);

30723089

expect(payload).toBeUndefined();

30733090

expect(error?.code).toBe(ErrorCodes.UNAVAILABLE);

3074-

expect(error?.message ?? String(error)).toMatch(/staging incomplete/i);

3091+

expect(responseErrorMessage(error)).toMatch(/staging incomplete/i);

30753092

// Both media-store entries are cleaned up before the 5xx surfaces.

30763093

expect(mockState.deleteMediaBufferCalls.map((c) => c.id).toSorted()).toEqual([

30773094

"saved-media",

@@ -3127,13 +3144,13 @@ describe("chat directive tag stripping for non-streaming final payloads", () =>

3127314431283145

expect(mockState.lastDispatchCtx).toBeUndefined();

31293146

expect(respond).toHaveBeenCalledTimes(1);

3130-

const [ok, payload, error] = respond.mock.calls[0] ?? [];

3147+

const [ok, payload, error] = lastRespondCall(respond) ?? [];

31313148

expect(ok).toBe(false);

31323149

expect(payload).toBeUndefined();

31333150

// 4xx, not 5xx — retrying a file that exceeds the staging cap cannot

31343151

// succeed, so the failure must be surfaced as a client-side rejection.

31353152

expect(error?.code).toBe(ErrorCodes.INVALID_REQUEST);

3136-

expect(error?.message ?? String(error)).toMatch(/sandbox staging limit/i);

3153+

expect(responseErrorMessage(error)).toMatch(/sandbox staging limit/i);

31373154

// Orphaned media-store entries are cleaned up before the 4xx surfaces.

31383155

expect(mockState.deleteMediaBufferCalls).toEqual([{ id: "saved-media", subdir: "inbound" }]);

31393156

});