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

推荐订阅源

Y
Y Combinator Blog
The GitHub Blog
The GitHub Blog
云风的 BLOG
云风的 BLOG
Engineering at Meta
Engineering at Meta
Google DeepMind News
Google DeepMind News
aimingoo的专栏
aimingoo的专栏
Recent Announcements
Recent Announcements
A
About on SuperTechFans
U
Unit 42
MyScale Blog
MyScale Blog
J
Java Code Geeks
博客园_首页
Blog — PlanetScale
Blog — PlanetScale
D
Docker
Microsoft Azure Blog
Microsoft Azure Blog
博客园 - 司徒正美
量子位
月光博客
月光博客
G
Google Developers Blog
V
V2EX
博客园 - 聂微东
宝玉的分享
宝玉的分享
IT之家
IT之家
Vercel News
Vercel News

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
fix(memory): bound remote error bodies · openclaw/opencla...
vincentkoc · 2026-05-28 · via Recent Commits to openclaw:main

@@ -9,21 +9,28 @@ vi.mock("./remote-http.js", () => ({

99

const remoteHttpMock = vi.mocked(withRemoteHttpResponse);

10101111

function jsonResponse(payload: unknown, status = 200): Response {

12-

return {

13-

ok: status >= 200 && status < 300,

14-

status,

15-

json: async () => payload,

16-

text: async () => JSON.stringify(payload),

17-

} as Response;

12+

return new Response(JSON.stringify(payload), { status });

1813

}

19142015

function textResponse(body: string, status: number): Response {

21-

return {

22-

ok: status >= 200 && status < 300,

23-

status,

24-

json: async () => JSON.parse(body) as unknown,

25-

text: async () => body,

26-

} as Response;

16+

return new Response(body, { status });

17+

}

18+19+

function streamingTextResponse(params: {

20+

body: string;

21+

status: number;

22+

onCancel: () => void;

23+

}): Response {

24+

const encoded = new TextEncoder().encode(params.body);

25+

const stream = new ReadableStream<Uint8Array>({

26+

start(controller) {

27+

controller.enqueue(encoded);

28+

},

29+

cancel() {

30+

params.onCancel();

31+

},

32+

});

33+

return new Response(stream, { status: params.status });

2734

}

28352936

describe("postJson", () => {

@@ -88,6 +95,32 @@ describe("postJson", () => {

8895

expect((error as { status?: unknown }).status).toBe(502);

8996

});

909798+

it("bounds non-ok response bodies before formatting the error", async () => {

99+

let canceled = false;

100+

remoteHttpMock.mockImplementationOnce(async (params) => {

101+

return await params.onResponse(

102+

streamingTextResponse({

103+

body: "x".repeat(12_000),

104+

status: 502,

105+

onCancel: () => {

106+

canceled = true;

107+

},

108+

}),

109+

);

110+

});

111+112+

await expect(

113+

postJson({

114+

url: "https://memory.example/v1/post",

115+

headers: {},

116+

body: {},

117+

errorPrefix: "post failed",

118+

parse: () => ({}),

119+

}),

120+

).rejects.toThrow(`post failed: 502 ${"x".repeat(1_000)}... [truncated]`);

121+

expect(canceled).toBe(true);

122+

});

123+91124

it("wraps malformed success JSON with the request error prefix", async () => {

92125

remoteHttpMock.mockImplementationOnce(async (params) => {

93126

return await params.onResponse(textResponse("{ nope", 200));