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

推荐订阅源

B
Blog RSS Feed
Jina AI
Jina AI
雷峰网
雷峰网
Blog — PlanetScale
Blog — PlanetScale
Hugging Face - Blog
Hugging Face - Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Last Week in AI
Last Week in AI
博客园 - 司徒正美
罗磊的独立博客
J
Java Code Geeks
Engineering at Meta
Engineering at Meta
WordPress大学
WordPress大学
Vercel News
Vercel News
A
About on SuperTechFans
I
InfoQ
D
DataBreaches.Net
爱范儿
爱范儿
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
U
Unit 42
aimingoo的专栏
aimingoo的专栏
宝玉的分享
宝玉的分享
P
Proofpoint News Feed
Microsoft Azure Blog
Microsoft Azure Blog
美团技术团队

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(plugin-sdk): bound live model catalog success body (#...
steipete · 2026-06-23 · via Recent Commits to openclaw:main

@@ -126,6 +126,24 @@ describe("provider-catalog-live-runtime", () => {

126126

).resolves.toEqual(["custom-a", "custom-b"]);

127127

});

128128129+

it("accepts UTF-8 BOM-prefixed catalog responses", async () => {

130+

const release = vi.fn(async () => undefined);

131+

const fetchGuardMock: MockedFunction<LiveModelCatalogFetchGuard> = vi.fn(async () => ({

132+

response: new Response("\uFEFF" + JSON.stringify({ data: [{ id: "model-a" }] })),

133+

finalUrl: "https://provider.example.test/v1/models",

134+

release,

135+

}));

136+137+

await expect(

138+

fetchLiveProviderModelIds({

139+

providerId: "provider",

140+

endpoint: "https://provider.example.test/v1/models",

141+

fetchGuard: fetchGuardMock,

142+

}),

143+

).resolves.toEqual(["model-a"]);

144+

expect(release).toHaveBeenCalledTimes(1);

145+

});

146+129147

it("caches raw live model rows for provider-specific projection", async () => {

130148

const { fetchGuard, fetchGuardMock } = buildFetchGuard({

131149

models: [{ slug: "custom-a" }, { slug: "custom-b" }],

@@ -157,6 +175,91 @@ describe("provider-catalog-live-runtime", () => {

157175

expect(fetchGuardMock).toHaveBeenCalledTimes(1);

158176

});

159177178+

it("bounds an unbounded live catalog success stream and cancels the body", async () => {

179+

const encoder = new TextEncoder();

180+

let pullCount = 0;

181+

let cancelled = false;

182+

const release = vi.fn(async () => undefined);

183+

const fetchGuardMock: MockedFunction<LiveModelCatalogFetchGuard> = vi.fn(async () => ({

184+

response: new Response(

185+

new ReadableStream<Uint8Array>({

186+

pull(controller) {

187+

pullCount += 1;

188+

// Stream a JSON array prefix followed by an effectively endless run of

189+

// padding so the body never terminates under its own power.

190+

if (pullCount === 1) {

191+

controller.enqueue(encoder.encode('[{"id":"model-a","object":"model"},'));

192+

return;

193+

}

194+

controller.enqueue(encoder.encode("0".repeat(1024 * 1024)));

195+

},

196+

cancel() {

197+

cancelled = true;

198+

},

199+

}),

200+

{ headers: { "content-type": "application/json" } },

201+

),

202+

finalUrl: "https://provider.example.test/v1/models",

203+

release,

204+

}));

205+206+

const error = await fetchLiveProviderModelIds({

207+

providerId: "provider",

208+

endpoint: "https://provider.example.test/v1/models",

209+

fetchGuard: fetchGuardMock,

210+

}).catch((err: unknown) => err);

211+212+

expect(error).toBeInstanceOf(Error);

213+

expect((error as Error).message).toMatch(/Live model catalog response exceeded \d+ bytes/);

214+

expect(cancelled).toBe(true);

215+

expect(release).toHaveBeenCalledTimes(1);

216+

});

217+218+

it("aborts a stalled live catalog success stream", async () => {

219+

vi.useFakeTimers();

220+

try {

221+

const encoder = new TextEncoder();

222+

let cancelReason: unknown;

223+

const release = vi.fn(async () => undefined);

224+

const fetchGuardMock: MockedFunction<LiveModelCatalogFetchGuard> = vi.fn(async () => ({

225+

response: new Response(

226+

new ReadableStream<Uint8Array>({

227+

start(controller) {

228+

// Emit a partial JSON prefix and then idle forever without closing.

229+

controller.enqueue(encoder.encode('[{"id":"model-a",'));

230+

},

231+

cancel(reason) {

232+

cancelReason = reason;

233+

},

234+

}),

235+

{ headers: { "content-type": "application/json" } },

236+

),

237+

finalUrl: "https://provider.example.test/v1/models",

238+

release,

239+

}));

240+241+

const resultPromise = fetchLiveProviderModelIds({

242+

providerId: "provider",

243+

endpoint: "https://provider.example.test/v1/models",

244+

fetchGuard: fetchGuardMock,

245+

timeoutMs: 1234,

246+

}).catch((err: unknown) => err);

247+248+

await vi.advanceTimersByTimeAsync(0);

249+

await vi.advanceTimersByTimeAsync(1234);

250+

const error = await resultPromise;

251+252+

expect(error).toBeInstanceOf(Error);

253+

expect((error as Error).message).toBe(

254+

"Live model catalog response stalled: no data received for 1234ms",

255+

);

256+

expect(cancelReason).toBeInstanceOf(Error);

257+

expect(release).toHaveBeenCalledTimes(1);

258+

} finally {

259+

vi.useRealTimers();

260+

}

261+

});

262+160263

it("throws structured HTTP errors after releasing guarded fetches", async () => {

161264

const release = vi.fn(async () => undefined);

162265

const response = new Response("{}", { status: 401 });