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

推荐订阅源

WordPress大学
WordPress大学
Stack Overflow Blog
Stack Overflow Blog
人人都是产品经理
人人都是产品经理
Y
Y Combinator Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
D
DataBreaches.Net
GbyAI
GbyAI
Microsoft Security Blog
Microsoft Security Blog
博客园_首页
大猫的无限游戏
大猫的无限游戏
Jina AI
Jina AI
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Engineering at Meta
Engineering at Meta
IT之家
IT之家
MongoDB | Blog
MongoDB | Blog
The GitHub Blog
The GitHub Blog
月光博客
月光博客
U
Unit 42
Hugging Face - Blog
Hugging Face - Blog
博客园 - 叶小钗
腾讯CDC
B
Blog RSS Feed
博客园 - Franky
爱范儿
爱范儿

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 minimax video assertions · openclaw/opencla...
steipete · 2026-05-11 · via Recent Commits to openclaw:main

@@ -34,12 +34,20 @@ function expectMinimaxFetchCall(index: number, url: string) {

3434

}

3535

const [actualUrl, init, timeoutMs, fetchFn] = call;

3636

expect(actualUrl).toBe(url);

37-

expect(init).toMatchObject({ method: "GET" });

37+

expect(init?.method).toBe("GET");

3838

expect(Number.isInteger(timeoutMs)).toBe(true);

3939

expect(timeoutMs).toBeGreaterThan(0);

4040

expect(fetchFn).toBe(fetch);

4141

}

424243+

function mockCallArg(mock: { mock: { calls: unknown[][] } }, index = 0): Record<string, unknown> {

44+

const call = mock.mock.calls[index];

45+

if (!call) {

46+

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

47+

}

48+

return call[0] as Record<string, unknown>;

49+

}

50+4351

describe("minimax video generation provider", () => {

4452

it("declares explicit mode capabilities", () => {

4553

const provider = buildMinimaxVideoGenerationProvider();

@@ -83,23 +91,15 @@ describe("minimax video generation provider", () => {

8391

resolution: "720P",

8492

});

859386-

expect(postJsonRequestMock).toHaveBeenCalledWith(

87-

expect.objectContaining({

88-

url: "https://api.minimax.io/v1/video_generation",

89-

body: expect.objectContaining({

90-

duration: 6,

91-

resolution: "768P",

92-

}),

93-

}),

94-

);

94+

const request = mockCallArg(postJsonRequestMock);

95+

expect(request.url).toBe("https://api.minimax.io/v1/video_generation");

96+

const body = request.body as Record<string, unknown>;

97+

expect(body.duration).toBe(6);

98+

expect(body.resolution).toBe("768P");

9599

expect(result.videos).toHaveLength(1);

96100

expect(result.videos[0]?.fileName).toBe("video-1.webm");

97-

expect(result.metadata).toEqual(

98-

expect.objectContaining({

99-

taskId: "task-123",

100-

fileId: "file-1",

101-

}),

102-

);

101+

expect(result.metadata?.taskId).toBe("task-123");

102+

expect(result.metadata?.fileId).toBe("file-1");

103103

});

104104105105

it("downloads via file_id when the status response omits video_url", async () => {

@@ -147,13 +147,9 @@ describe("minimax video generation provider", () => {

147147

expectMinimaxFetchCall(1, "https://api.minimax.io/v1/files/retrieve?file_id=file-9");

148148

expectMinimaxFetchCall(2, "https://example.com/download.mp4");

149149

expect(result.videos).toHaveLength(1);

150-

expect(result.metadata).toEqual(

151-

expect.objectContaining({

152-

taskId: "task-456",

153-

fileId: "file-9",

154-

videoUrl: undefined,

155-

}),

156-

);

150+

expect(result.metadata?.taskId).toBe("task-456");

151+

expect(result.metadata?.fileId).toBe("file-9");

152+

expect(result.metadata?.videoUrl).toBeUndefined();

157153

});

158154159155

it("routes portal video generation through minimax-portal auth and HTTP config", async () => {

@@ -201,23 +197,14 @@ describe("minimax video generation provider", () => {

201197

},

202198

});

203199204-

expect(resolveApiKeyForProviderMock).toHaveBeenCalledWith(

205-

expect.objectContaining({

206-

provider: "minimax-portal",

207-

}),

208-

);

209-

expect(resolveProviderHttpRequestConfigMock).toHaveBeenCalledWith(

210-

expect.objectContaining({

211-

baseUrl: "https://api.minimaxi.com",

212-

provider: "minimax-portal",

213-

capability: "video",

214-

transport: "http",

215-

}),

216-

);

217-

expect(postJsonRequestMock).toHaveBeenCalledWith(

218-

expect.objectContaining({

219-

url: "https://api.minimaxi.com/v1/video_generation",

220-

}),

200+

expect(mockCallArg(resolveApiKeyForProviderMock).provider).toBe("minimax-portal");

201+

const httpConfigParams = mockCallArg(resolveProviderHttpRequestConfigMock);

202+

expect(httpConfigParams.baseUrl).toBe("https://api.minimaxi.com");

203+

expect(httpConfigParams.provider).toBe("minimax-portal");

204+

expect(httpConfigParams.capability).toBe("video");

205+

expect(httpConfigParams.transport).toBe("http");

206+

expect(mockCallArg(postJsonRequestMock).url).toBe(

207+

"https://api.minimaxi.com/v1/video_generation",

221208

);

222209

expectMinimaxFetchCall(

223210

0,