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

推荐订阅源

H
Help Net Security
腾讯CDC
爱范儿
爱范儿
Google DeepMind News
Google DeepMind News
V
V2EX
Blog — PlanetScale
Blog — PlanetScale
Engineering at Meta
Engineering at Meta
GbyAI
GbyAI
量子位
F
Fortinet All Blogs
G
Google Developers Blog
T
The Blog of Author Tim Ferriss
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Hugging Face - Blog
Hugging Face - Blog
Last Week in AI
Last Week in AI
T
Tailwind CSS Blog
J
Java Code Geeks
S
SegmentFault 最新的问题
D
Docker
博客园 - 司徒正美
The GitHub Blog
The GitHub Blog
Jina AI
Jina AI
M
MIT News - Artificial intelligence
博客园 - 【当耐特】

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(image-gen): bound image generation provider JSON resp...
hugenshen · 2026-06-26 · via Recent Commits to openclaw:main

@@ -8,6 +8,13 @@ import { testing as geminiWebSearchTesting } from "./src/gemini-web-search-provi

8899

let ssrfMock: { mockRestore: () => void } | undefined;

101011+

function jsonResponse(payload: unknown): Response {

12+

return new Response(JSON.stringify(payload), {

13+

status: 200,

14+

headers: { "Content-Type": "application/json" },

15+

});

16+

}

17+1118

function mockGoogleApiKeyAuth() {

1219

vi.spyOn(providerAuthRuntime, "resolveApiKeyForProvider").mockResolvedValue({

1320

apiKey: "google-test-key",

@@ -24,9 +31,8 @@ function installGoogleFetchMock(params?: {

2431

const mimeType = params?.mimeType ?? "image/png";

2532

const data = params?.data ?? "png-data";

2633

const inlineDataKey = params?.inlineDataKey ?? "inlineData";

27-

const fetchMock = vi.fn().mockResolvedValue({

28-

ok: true,

29-

json: async () => ({

34+

const fetchMock = vi.fn().mockResolvedValue(

35+

jsonResponse({

3036

candidates: [

3137

{

3238

content: {

@@ -42,7 +48,7 @@ function installGoogleFetchMock(params?: {

4248

},

4349

],

4450

}),

45-

});

51+

);

4652

vi.stubGlobal("fetch", fetchMock);

4753

return fetchMock;

4854

}

@@ -100,9 +106,8 @@ describe("Google image-generation provider", () => {

100106

source: "env",

101107

mode: "api-key",

102108

});

103-

const fetchMock = vi.fn().mockResolvedValue({

104-

ok: true,

105-

json: async () => ({

109+

const fetchMock = vi.fn().mockResolvedValue(

110+

jsonResponse({

106111

candidates: [

107112

{

108113

content: {

@@ -119,7 +124,7 @@ describe("Google image-generation provider", () => {

119124

},

120125

],

121126

}),

122-

});

127+

);

123128

vi.stubGlobal("fetch", fetchMock);

124129125130

const provider = buildGoogleImageGenerationProvider();

@@ -208,10 +213,7 @@ describe("Google image-generation provider", () => {

208213

mockGoogleApiKeyAuth();

209214

vi.stubGlobal(

210215

"fetch",

211-

vi.fn().mockResolvedValue({

212-

ok: true,

213-

json: async () => ({ candidates: { content: { parts: [] } } }),

214-

}),

216+

vi.fn().mockResolvedValue(jsonResponse({ candidates: { content: { parts: [] } } })),

215217

);

216218217219

const provider = buildGoogleImageGenerationProvider();

@@ -229,9 +231,8 @@ describe("Google image-generation provider", () => {

229231

mockGoogleApiKeyAuth();

230232

vi.stubGlobal(

231233

"fetch",

232-

vi.fn().mockResolvedValue({

233-

ok: true,

234-

json: async () => ({

234+

vi.fn().mockResolvedValue(

235+

jsonResponse({

235236

candidates: [

236237

{

237238

content: {

@@ -240,7 +241,7 @@ describe("Google image-generation provider", () => {

240241

},

241242

],

242243

}),

243-

}),

244+

),

244245

);

245246246247

const provider = buildGoogleImageGenerationProvider();

@@ -260,9 +261,8 @@ describe("Google image-generation provider", () => {

260261

source: "profile",

261262

mode: "token",

262263

});

263-

const fetchMock = vi.fn().mockResolvedValue({

264-

ok: true,

265-

json: async () => ({

264+

const fetchMock = vi.fn().mockResolvedValue(

265+

jsonResponse({

266266

candidates: [

267267

{

268268

content: {

@@ -278,7 +278,7 @@ describe("Google image-generation provider", () => {

278278

},

279279

],

280280

}),

281-

});

281+

);

282282

vi.stubGlobal("fetch", fetchMock);

283283284284

const provider = buildGoogleImageGenerationProvider();

@@ -305,6 +305,74 @@ describe("Google image-generation provider", () => {

305305

});

306306

});

307307308+

it("accepts valid multi-image inline JSON responses above the generic provider JSON cap", async () => {

309+

mockGoogleApiKeyAuth();

310+

const imageBytes = Buffer.alloc(6 * 1024 * 1024, 1);

311+

const imagePayload = imageBytes.toString("base64");

312+

vi.stubGlobal(

313+

"fetch",

314+

vi.fn().mockResolvedValue(

315+

jsonResponse({

316+

candidates: [

317+

{

318+

content: {

319+

parts: Array.from({ length: 3 }, () => ({

320+

inlineData: {

321+

mimeType: "image/png",

322+

data: imagePayload,

323+

},

324+

})),

325+

},

326+

},

327+

],

328+

}),

329+

),

330+

);

331+332+

const provider = buildGoogleImageGenerationProvider();

333+

const result = await provider.generateImage({

334+

provider: "google",

335+

model: "gemini-3.1-flash-image-preview",

336+

prompt: "draw a cat",

337+

cfg: {},

338+

});

339+340+

expect(result.images).toHaveLength(3);

341+

expect(result.images.map((image) => image.buffer.byteLength)).toEqual([

342+

imageBytes.byteLength,

343+

imageBytes.byteLength,

344+

imageBytes.byteLength,

345+

]);

346+

});

347+348+

it("still rejects oversized Google image JSON responses", async () => {

349+

mockGoogleApiKeyAuth();

350+

vi.stubGlobal(

351+

"fetch",

352+

vi.fn().mockResolvedValue(

353+

jsonResponse({

354+

candidates: [

355+

{

356+

content: {

357+

parts: [{ text: "x".repeat(35 * 1024 * 1024) }],

358+

},

359+

},

360+

],

361+

}),

362+

),

363+

);

364+365+

const provider = buildGoogleImageGenerationProvider();

366+

await expect(

367+

provider.generateImage({

368+

provider: "google",

369+

model: "gemini-3.1-flash-image-preview",

370+

prompt: "draw a cat",

371+

cfg: {},

372+

}),

373+

).rejects.toThrow("google.image-generation: JSON response exceeds");

374+

});

375+308376

it("sends reference images and explicit resolution for edit flows", async () => {

309377

mockGoogleApiKeyAuth();

310378

const fetchMock = installGoogleFetchMock();