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

推荐订阅源

OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
月光博客
月光博客
爱范儿
爱范儿
The Cloudflare Blog
Y
Y Combinator Blog
B
Blog RSS Feed
Stack Overflow Blog
Stack Overflow Blog
博客园 - 叶小钗
G
Google Developers Blog
J
Java Code Geeks
P
Proofpoint News Feed
美团技术团队
Engineering at Meta
Engineering at Meta
腾讯CDC
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
博客园_首页
WordPress大学
WordPress大学
博客园 - 聂微东
雷峰网
雷峰网
有赞技术团队
有赞技术团队
L
LangChain Blog
N
Netflix TechBlog - Medium
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
博客园 - 【当耐特】

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 embedded lifecycle assertions · openclaw/op...
steipete · 2026-05-10 · via Recent Commits to openclaw:main

@@ -58,7 +58,14 @@ async function handleAgentEndAndReadWarnMeta(ctx: EmbeddedPiSubscribeContext) {

5858

const warn = vi.mocked(ctx.log.warn);

5959

expect(warn).toHaveBeenCalledTimes(1);

6060

expect(warn.mock.calls[0]?.[0]).toBe("embedded run agent end");

61-

return warn.mock.calls[0]?.[1];

61+

return readRecord(warn.mock.calls[0]?.[1]);

62+

}

63+64+

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

65+

if (!value || typeof value !== "object") {

66+

throw new Error("expected metadata record");

67+

}

68+

return value as Record<string, unknown>;

6269

}

63706471

describe("handleAgentEnd", () => {

@@ -76,15 +83,14 @@ describe("handleAgentEnd", () => {

7683

ctx.state.livenessState = "working";

77847885

const warnMeta = await handleAgentEndAndReadWarnMeta(ctx);

79-

expect(warnMeta).toMatchObject({

80-

event: "embedded_run_agent_end",

81-

runId: "run-1",

82-

error: "LLM request failed: connection refused by the provider endpoint.",

83-

providerRuntimeFailureKind: "timeout",

84-

rawErrorPreview: "connection refused",

85-

consoleMessage:

86-

"embedded run agent end: runId=run-1 isError=true model=unknown provider=unknown error=LLM request failed: connection refused by the provider endpoint. rawError=connection refused",

87-

});

86+

expect(warnMeta.event).toBe("embedded_run_agent_end");

87+

expect(warnMeta.runId).toBe("run-1");

88+

expect(warnMeta.error).toBe("LLM request failed: connection refused by the provider endpoint.");

89+

expect(warnMeta.providerRuntimeFailureKind).toBe("timeout");

90+

expect(warnMeta.rawErrorPreview).toBe("connection refused");

91+

expect(warnMeta.consoleMessage).toBe(

92+

"embedded run agent end: runId=run-1 isError=true model=unknown provider=unknown error=LLM request failed: connection refused by the provider endpoint. rawError=connection refused",

93+

);

8894

expect(onAgentEvent).toHaveBeenCalledWith({

8995

stream: "lifecycle",

9096

data: {

@@ -106,16 +112,17 @@ describe("handleAgentEnd", () => {

106112

});

107113108114

const warnMeta = await handleAgentEndAndReadWarnMeta(ctx);

109-

expect(warnMeta).toMatchObject({

110-

event: "embedded_run_agent_end",

111-

runId: "run-1",

112-

error: "The AI service is temporarily overloaded. Please try again in a moment.",

113-

failoverReason: "overloaded",

114-

providerRuntimeFailureKind: "timeout",

115-

providerErrorType: "overloaded_error",

116-

consoleMessage:

117-

'embedded run agent end: runId=run-1 isError=true model=claude-test provider=anthropic error=The AI service is temporarily overloaded. Please try again in a moment. rawError={"type":"error","error":{"type":"overloaded_error","message":"Overloaded"}}',

118-

});

115+

expect(warnMeta.event).toBe("embedded_run_agent_end");

116+

expect(warnMeta.runId).toBe("run-1");

117+

expect(warnMeta.error).toBe(

118+

"The AI service is temporarily overloaded. Please try again in a moment.",

119+

);

120+

expect(warnMeta.failoverReason).toBe("overloaded");

121+

expect(warnMeta.providerRuntimeFailureKind).toBe("timeout");

122+

expect(warnMeta.providerErrorType).toBe("overloaded_error");

123+

expect(warnMeta.consoleMessage).toBe(

124+

'embedded run agent end: runId=run-1 isError=true model=claude-test provider=anthropic error=The AI service is temporarily overloaded. Please try again in a moment. rawError={"type":"error","error":{"type":"overloaded_error","message":"Overloaded"}}',

125+

);

119126

});

120127121128

it("sanitizes model and provider before writing consoleMessage", async () => {

@@ -131,11 +138,10 @@ describe("handleAgentEnd", () => {

131138

await handleAgentEnd(ctx);

132139133140

const warn = vi.mocked(ctx.log.warn);

134-

const meta = warn.mock.calls[0]?.[1];

135-

expect(meta).toMatchObject({

136-

consoleMessage:

137-

"embedded run agent end: runId=run-1 isError=true model=claude sonnet 4 provider=anthropic]8;;https://evil.test error=LLM request failed: connection refused by the provider endpoint. rawError=connection refused",

138-

});

141+

const meta = readRecord(warn.mock.calls[0]?.[1]);

142+

expect(meta.consoleMessage).toBe(

143+

"embedded run agent end: runId=run-1 isError=true model=claude sonnet 4 provider=anthropic]8;;https://evil.test error=LLM request failed: connection refused by the provider endpoint. rawError=connection refused",

144+

);

139145

expect(meta?.consoleMessage).not.toContain("\n");

140146

expect(meta?.consoleMessage).not.toContain("\r");

141147

expect(meta?.consoleMessage).not.toContain("\t");

@@ -157,11 +163,10 @@ describe("handleAgentEnd", () => {

157163

await handleAgentEnd(ctx);

158164159165

const warn = vi.mocked(ctx.log.warn);

160-

expect(warn.mock.calls[0]?.[1]).toMatchObject({

161-

event: "embedded_run_agent_end",

162-

error: "x-api-key: ***",

163-

rawErrorPreview: "x-api-key: ***",

164-

});

166+

const meta = readRecord(warn.mock.calls[0]?.[1]);

167+

expect(meta.event).toBe("embedded_run_agent_end");

168+

expect(meta.error).toBe("x-api-key: ***");

169+

expect(meta.rawErrorPreview).toBe("x-api-key: ***");

165170

expect(onAgentEvent).toHaveBeenCalledWith({

166171

stream: "lifecycle",

167172

data: {

@@ -184,11 +189,10 @@ describe("handleAgentEnd", () => {

184189185190

await handleAgentEnd(ctx);

186191187-

expect(vi.mocked(ctx.log.warn).mock.calls[0]?.[1]).toMatchObject({

188-

failoverReason: "auth",

189-

providerRuntimeFailureKind: "auth_scope",

190-

httpCode: "401",

191-

});

192+

const meta = readRecord(vi.mocked(ctx.log.warn).mock.calls[0]?.[1]);

193+

expect(meta.failoverReason).toBe("auth");

194+

expect(meta.providerRuntimeFailureKind).toBe("auth_scope");

195+

expect(meta.httpCode).toBe("401");

192196

});

193197194198

it("omits raw HTML auth bodies from consoleMessage for HTML 403 auth failures", async () => {

@@ -204,13 +208,13 @@ describe("handleAgentEnd", () => {

204208

await handleAgentEnd(ctx);

205209206210

const warnMeta = vi.mocked(ctx.log.warn).mock.calls[0]?.[1];

207-

expect(warnMeta).toMatchObject({

208-

providerRuntimeFailureKind: "auth_html_403",

209-

rawErrorPreview: "403 <!DOCTYPE html><html><body>Access denied</body></html>",

210-

error:

211-

"Authentication failed with an HTML 403 response from the provider. Re-authenticate and verify your provider account access.",

212-

});

213-

const consoleMsg = typeof warnMeta?.consoleMessage === "string" ? warnMeta.consoleMessage : "";

211+

const meta = readRecord(warnMeta);

212+

expect(meta.providerRuntimeFailureKind).toBe("auth_html_403");

213+

expect(meta.rawErrorPreview).toBe("403 <!DOCTYPE html><html><body>Access denied</body></html>");

214+

expect(meta.error).toBe(

215+

"Authentication failed with an HTML 403 response from the provider. Re-authenticate and verify your provider account access.",

216+

);

217+

const consoleMsg = typeof meta.consoleMessage === "string" ? meta.consoleMessage : "";

214218

expect(consoleMsg).not.toContain("rawError=");

215219

expect(consoleMsg).not.toContain("<html>");

216220

});