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

推荐订阅源

J
Java Code Geeks
aimingoo的专栏
aimingoo的专栏
Martin Fowler
Martin Fowler
C
Check Point Blog
G
Google Developers Blog
V
Visual Studio Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Google DeepMind News
Google DeepMind News
人人都是产品经理
人人都是产品经理
有赞技术团队
有赞技术团队
MongoDB | Blog
MongoDB | Blog
月光博客
月光博客
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
大猫的无限游戏
大猫的无限游戏
D
Docker
Hugging Face - Blog
Hugging Face - Blog
The GitHub Blog
The GitHub Blog
博客园 - 三生石上(FineUI控件)
A
About on SuperTechFans
Recent Announcements
Recent Announcements
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
阮一峰的网络日志
阮一峰的网络日志
Stack Overflow Blog
Stack Overflow Blog
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: honor openai video provider request network policy ·...
shakkernerd · 2026-05-23 · via Recent Commits to openclaw:main

@@ -5,8 +5,13 @@ import {

55

import { expectExplicitVideoGenerationCapabilities } from "openclaw/plugin-sdk/provider-test-contracts";

66

import { beforeAll, describe, expect, it, vi } from "vitest";

778-

const { postJsonRequestMock, fetchWithTimeoutMock, resolveProviderHttpRequestConfigMock } =

9-

getProviderHttpMocks();

8+

const {

9+

postJsonRequestMock,

10+

postMultipartRequestMock,

11+

fetchWithTimeoutMock,

12+

resolveProviderHttpRequestConfigMock,

13+

sanitizeConfiguredModelProviderRequestMock,

14+

} = getProviderHttpMocks();

10151116

let buildOpenAIVideoGenerationProvider: typeof import("./video-generation-provider.js").buildOpenAIVideoGenerationProvider;

1217

@@ -24,6 +29,16 @@ function postJsonRequest(index = 0): Record<string, unknown> {

2429

return request;

2530

}

263132+

function postMultipartRequest(index = 0): Record<string, unknown> {

33+

const request = postMultipartRequestMock.mock.calls[index]?.[0] as

34+

| Record<string, unknown>

35+

| undefined;

36+

if (!request) {

37+

throw new Error(`expected postMultipartRequest call ${index}`);

38+

}

39+

return request;

40+

}

41+2742

function fetchWithTimeoutCall(index: number): [string, RequestInit | undefined, number, unknown] {

2843

const call = fetchWithTimeoutMock.mock.calls[index] as

2944

| [string, RequestInit | undefined, number, unknown]

@@ -150,7 +165,7 @@ describe("openai video generation provider", () => {

150165

expect(pollFetch).toBe(fetch);

151166

});

152167153-

it("honors configured baseUrl for video requests", async () => {

168+

it("keeps configured local baseUrl private-network blocked unless explicitly enabled", async () => {

154169

postJsonRequestMock.mockResolvedValue({

155170

response: {

156171

json: async () => ({

@@ -192,11 +207,64 @@ describe("openai video generation provider", () => {

192207

});

193208194209

expect(providerHttpConfigRequest().baseUrl).toBe("http://127.0.0.1:44080/v1");

210+

expect(providerHttpConfigRequest().request).toBeUndefined();

195211

const createRequest = postJsonRequest();

196212

expect(createRequest.url).toBe("http://127.0.0.1:44080/v1/videos");

197213

expect(createRequest.allowPrivateNetwork).toBe(false);

198214

});

199215216+

it("honors configured request allowPrivateNetwork for local video providers", async () => {

217+

postJsonRequestMock.mockResolvedValue({

218+

response: {

219+

json: async () => ({

220+

id: "vid_local",

221+

model: "sora-2",

222+

status: "queued",

223+

}),

224+

},

225+

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

226+

});

227+

fetchWithTimeoutMock

228+

.mockResolvedValueOnce({

229+

json: async () => ({

230+

id: "vid_local",

231+

model: "sora-2",

232+

status: "completed",

233+

}),

234+

})

235+

.mockResolvedValueOnce({

236+

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

237+

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

238+

});

239+240+

const provider = buildOpenAIVideoGenerationProvider();

241+

await provider.generateVideo({

242+

provider: "openai",

243+

model: "sora-2",

244+

prompt: "Render via local relay",

245+

cfg: {

246+

models: {

247+

providers: {

248+

openai: {

249+

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

250+

request: { allowPrivateNetwork: true },

251+

models: [],

252+

},

253+

},

254+

},

255+

},

256+

});

257+258+

expect(sanitizeConfiguredModelProviderRequestMock).toHaveBeenCalledWith({

259+

allowPrivateNetwork: true,

260+

});

261+

expect(providerHttpConfigRequest().baseUrl).toBe("http://127.0.0.1:44080/v1");

262+

expect(providerHttpConfigRequest().request).toEqual({ allowPrivateNetwork: true });

263+

const createRequest = postJsonRequest();

264+

expect(createRequest.url).toBe("http://127.0.0.1:44080/v1/videos");

265+

expect(createRequest.allowPrivateNetwork).toBe(true);

266+

});

267+200268

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

201269

fetchWithTimeoutMock

202270

.mockResolvedValueOnce({

@@ -229,12 +297,12 @@ describe("openai video generation provider", () => {

229297

});

230298231299

expect(postJsonRequestMock).not.toHaveBeenCalled();

232-

const [createUrl, createInit, createTimeout, createFetch] = fetchWithTimeoutCall(0);

233-

expect(createUrl).toBe("https://api.openai.com/v1/videos");

234-

expect(createInit?.method).toBe("POST");

235-

expect(createInit?.body).toBeInstanceOf(FormData);

236-

expect(createTimeout).toBe(120000);

237-

expect(createFetch).toBe(fetch);

300+

const createRequest = postMultipartRequest();

301+

expect(createRequest.url).toBe("https://api.openai.com/v1/videos");

302+

expect(createRequest.body).toBeInstanceOf(FormData);

303+

expect(createRequest.timeoutMs).toBe(120000);

304+

expect(createRequest.fetchFn).toBe(fetch);

305+

expect(createRequest.allowPrivateNetwork).toBe(false);

238306

});

239307240308

it("rejects multiple reference assets", async () => {