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

推荐订阅源

V
Visual Studio Blog
Recent Announcements
Recent Announcements
雷峰网
雷峰网
The GitHub Blog
The GitHub Blog
罗磊的独立博客
月光博客
月光博客
J
Java Code Geeks
A
About on SuperTechFans
Microsoft Security Blog
Microsoft Security Blog
D
Docker
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
F
Fortinet All Blogs
U
Unit 42
C
Check Point Blog
Martin Fowler
Martin Fowler
有赞技术团队
有赞技术团队
博客园 - 叶小钗
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
酷 壳 – CoolShell
酷 壳 – CoolShell
Blog — PlanetScale
Blog — PlanetScale
大猫的无限游戏
大猫的无限游戏
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
阮一峰的网络日志
阮一峰的网络日志
MyScale Blog
MyScale 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: retry guarded video downloads · openclaw/openclaw@ef...
shakkernerd · 2026-05-23 · via Recent Commits to openclaw:main

@@ -12,6 +12,7 @@ const {

1212

fetchWithTimeoutGuardedMock,

1313

pollProviderOperationJsonMock,

1414

assertOkOrThrowHttpErrorMock,

15+

executeProviderOperationWithRetryMock,

1516

resolveProviderHttpRequestConfigMock,

1617

sanitizeConfiguredModelProviderRequestMock,

1718

} = getProviderHttpMocks();

@@ -304,11 +305,84 @@ describe("openai video generation provider", () => {

304305

});

305306

});

306307308+

it("retries guarded local video downloads after transient HTTP errors", async () => {

309+

const firstRelease = vi.fn(async () => {});

310+

const secondRelease = vi.fn(async () => {});

311+

assertOkOrThrowHttpErrorMock

312+

.mockImplementationOnce(async () => {})

313+

.mockImplementationOnce(async () => {})

314+

.mockImplementationOnce(async (_response, label) => {

315+

throw new Error(label);

316+

})

317+

.mockImplementationOnce(async () => {});

318+

postJsonRequestMock.mockResolvedValue({

319+

response: {

320+

json: async () => ({

321+

id: "vid_local",

322+

model: "sora-2",

323+

status: "queued",

324+

}),

325+

},

326+

release: vi.fn(async () => {}),

327+

});

328+

fetchWithTimeoutMock.mockResolvedValueOnce({

329+

json: async () => ({

330+

id: "vid_local",

331+

model: "sora-2",

332+

status: "completed",

333+

}),

334+

});

335+

fetchWithTimeoutGuardedMock

336+

.mockResolvedValueOnce({

337+

response: new Response("busy", { status: 503, statusText: "Service Unavailable" }),

338+

finalUrl: "http://127.0.0.1:44080/v1/videos/vid_local/content?variant=video",

339+

release: firstRelease,

340+

})

341+

.mockResolvedValueOnce({

342+

response: {

343+

headers: new Headers({ "content-type": "video/mp4" }),

344+

arrayBuffer: async () => Buffer.from("mp4-bytes"),

345+

},

346+

finalUrl: "http://127.0.0.1:44080/v1/videos/vid_local/content?variant=video",

347+

release: secondRelease,

348+

});

349+350+

const provider = buildOpenAIVideoGenerationProvider();

351+

const result = await provider.generateVideo({

352+

provider: "openai",

353+

model: "sora-2",

354+

prompt: "Render via local relay",

355+

cfg: {

356+

models: {

357+

providers: {

358+

openai: {

359+

baseUrl: "http://127.0.0.1:44080/v1",

360+

request: { allowPrivateNetwork: true },

361+

models: [],

362+

},

363+

},

364+

},

365+

},

366+

});

367+368+

expect(result.videos[0]?.buffer.toString()).toBe("mp4-bytes");

369+

expect(executeProviderOperationWithRetryMock).toHaveBeenCalledWith(

370+

expect.objectContaining({ provider: "openai", stage: "download" }),

371+

);

372+

expect(fetchWithTimeoutGuardedMock).toHaveBeenCalledTimes(2);

373+

expect(firstRelease).toHaveBeenCalledTimes(1);

374+

expect(secondRelease).toHaveBeenCalledTimes(1);

375+

});

376+307377

it("releases guarded local video download requests when HTTP errors throw", async () => {

308-

const release = vi.fn(async () => {});

378+

const firstRelease = vi.fn(async () => {});

379+

const secondRelease = vi.fn(async () => {});

309380

assertOkOrThrowHttpErrorMock

310381

.mockImplementationOnce(async () => {})

311382

.mockImplementationOnce(async () => {})

383+

.mockImplementationOnce(async (_response, label) => {

384+

throw new Error(label);

385+

})

312386

.mockImplementationOnce(async (_response, label) => {

313387

throw new Error(label);

314388

});

@@ -329,11 +403,17 @@ describe("openai video generation provider", () => {

329403

status: "completed",

330404

}),

331405

});

332-

fetchWithTimeoutGuardedMock.mockResolvedValueOnce({

333-

response: new Response("busy", { status: 503, statusText: "Service Unavailable" }),

334-

finalUrl: "http://127.0.0.1:44080/v1/videos/vid_local/content?variant=video",

335-

release,

336-

});

406+

fetchWithTimeoutGuardedMock

407+

.mockResolvedValueOnce({

408+

response: new Response("busy", { status: 503, statusText: "Service Unavailable" }),

409+

finalUrl: "http://127.0.0.1:44080/v1/videos/vid_local/content?variant=video",

410+

release: firstRelease,

411+

})

412+

.mockResolvedValueOnce({

413+

response: new Response("busy", { status: 503, statusText: "Service Unavailable" }),

414+

finalUrl: "http://127.0.0.1:44080/v1/videos/vid_local/content?variant=video",

415+

release: secondRelease,

416+

});

337417338418

const provider = buildOpenAIVideoGenerationProvider();

339419

await expect(

@@ -355,7 +435,9 @@ describe("openai video generation provider", () => {

355435

}),

356436

).rejects.toThrow("OpenAI video download failed");

357437358-

expect(release).toHaveBeenCalledTimes(1);

438+

expect(fetchWithTimeoutGuardedMock).toHaveBeenCalledTimes(2);

439+

expect(firstRelease).toHaveBeenCalledTimes(1);

440+

expect(secondRelease).toHaveBeenCalledTimes(1);

359441

});

360442361443

it("uses multipart input_reference for video-to-video uploads", async () => {