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

推荐订阅源

A
About on SuperTechFans
人人都是产品经理
人人都是产品经理
量子位
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园 - 三生石上(FineUI控件)
小众软件
小众软件
月光博客
月光博客
T
Tailwind CSS Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
V
Visual Studio Blog
博客园 - 叶小钗
博客园 - 司徒正美
美团技术团队
博客园_首页
宝玉的分享
宝玉的分享
Apple Machine Learning Research
Apple Machine Learning Research
Hugging Face - Blog
Hugging Face - Blog
WordPress大学
WordPress大学
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
The Cloudflare Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
有赞技术团队
有赞技术团队
D
DataBreaches.Net
Google DeepMind News
Google DeepMind 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
test: tighten xai image assertions · openclaw/openclaw@ff...
steipete · 2026-05-10 · via Recent Commits to openclaw:main

@@ -58,6 +58,24 @@ vi.mock("openclaw/plugin-sdk/text-runtime", () => ({

5858

readStringValue: (v: unknown) => (typeof v === "string" ? v.trim() : undefined),

5959

}));

606061+

function requirePostJsonCall(index = 0): {

62+

url?: string;

63+

timeoutMs?: number;

64+

body?: Record<string, unknown>;

65+

} {

66+

const params = (postJsonRequestMock.mock.calls as unknown as Array<[unknown]>)[index]?.[0] as

67+

| {

68+

url?: string;

69+

timeoutMs?: number;

70+

body?: Record<string, unknown>;

71+

}

72+

| undefined;

73+

if (!params) {

74+

throw new Error(`Expected postJsonRequest call ${index}`);

75+

}

76+

return params;

77+

}

78+6179

describe("xai image generation provider", () => {

6280

afterEach(() => {

6381

resolveApiKeyForProviderMock.mockClear();

@@ -128,26 +146,27 @@ describe("xai image generation provider", () => {

128146

},

129147

} as any);

130148131-

expect(resolveApiKeyForProviderMock).toHaveBeenCalledWith(

132-

expect.objectContaining({ provider: "xai" }),

133-

);

134-

expect(resolveProviderHttpRequestConfigMock).toHaveBeenCalledWith(

135-

expect.objectContaining({

136-

provider: "xai",

137-

capability: "image",

138-

baseUrl: "https://custom.x.ai/v1",

139-

}),

140-

);

141-

expect(postJsonRequestMock).toHaveBeenCalledWith(

142-

expect.objectContaining({

143-

url: expect.stringContaining("/images/generations"),

144-

timeoutMs: 180_000,

145-

body: expect.objectContaining({

146-

aspect_ratio: "2:3",

147-

resolution: "2k",

148-

}),

149-

}),

150-

);

149+

const authParams = (

150+

resolveApiKeyForProviderMock.mock.calls as unknown as Array<[unknown]>

151+

)[0]?.[0] as { provider?: string } | undefined;

152+

expect(authParams?.provider).toBe("xai");

153+

const httpParams = (

154+

resolveProviderHttpRequestConfigMock.mock.calls as unknown as Array<[unknown]>

155+

)[0]?.[0] as

156+

| {

157+

provider?: string;

158+

capability?: string;

159+

baseUrl?: string;

160+

}

161+

| undefined;

162+

expect(httpParams?.provider).toBe("xai");

163+

expect(httpParams?.capability).toBe("image");

164+

expect(httpParams?.baseUrl).toBe("https://custom.x.ai/v1");

165+

const request = requirePostJsonCall();

166+

expect(request.url).toContain("/images/generations");

167+

expect(request.timeoutMs).toBe(180_000);

168+

expect(request.body?.aspect_ratio).toBe("2:3");

169+

expect(request.body?.resolution).toBe("2k");

151170

});

152171153172

it("supports edit with exact user-provided payload format including image object with type image_url", async () => {

@@ -181,20 +200,14 @@ describe("xai image generation provider", () => {

181200

cfg: {},

182201

} as any);

183202184-

expect(postJsonRequestMock).toHaveBeenCalledWith(

185-

expect.objectContaining({

186-

url: expect.stringContaining("/images/edits"),

187-

body: expect.objectContaining({

188-

model: "grok-imagine-image-pro",

189-

prompt: "Render this as a pencil sketch with detailed shading",

190-

image: {

191-

url: expect.stringContaining("data:image/png;base64,"),

192-

type: "image_url",

193-

},

194-

response_format: "b64_json",

195-

}),

196-

}),

197-

);

203+

const request = requirePostJsonCall();

204+

expect(request.url).toContain("/images/edits");

205+

expect(request.body?.model).toBe("grok-imagine-image-pro");

206+

expect(request.body?.prompt).toBe("Render this as a pencil sketch with detailed shading");

207+

const image = request.body?.image as { url?: string; type?: string } | undefined;

208+

expect(image?.url).toContain("data:image/png;base64,");

209+

expect(image?.type).toBe("image_url");

210+

expect(request.body?.response_format).toBe("b64_json");

198211

});

199212200213

it("uses the plural xAI images payload for multiple edit inputs", async () => {

@@ -224,22 +237,13 @@ describe("xai image generation provider", () => {

224237

cfg: {},

225238

} as any);

226239227-

expect(postJsonRequestMock).toHaveBeenCalledWith(

228-

expect.objectContaining({

229-

url: expect.stringContaining("/images/edits"),

230-

body: expect.objectContaining({

231-

images: [

232-

{

233-

url: expect.stringContaining("data:image/png;base64,"),

234-

type: "image_url",

235-

},

236-

{

237-

url: expect.stringContaining("data:image/jpeg;base64,"),

238-

type: "image_url",

239-

},

240-

],

241-

}),

242-

}),

243-

);

240+

const request = requirePostJsonCall();

241+

expect(request.url).toContain("/images/edits");

242+

const images = request.body?.images as Array<{ url?: string; type?: string }> | undefined;

243+

expect(images).toHaveLength(2);

244+

expect(images?.[0]?.url).toContain("data:image/png;base64,");

245+

expect(images?.[0]?.type).toBe("image_url");

246+

expect(images?.[1]?.url).toContain("data:image/jpeg;base64,");

247+

expect(images?.[1]?.type).toBe("image_url");

244248

});

245249

});