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

推荐订阅源

J
Java Code Geeks
腾讯CDC
Jina AI
Jina AI
博客园 - 司徒正美
博客园 - 三生石上(FineUI控件)
Apple Machine Learning Research
Apple Machine Learning Research
GbyAI
GbyAI
WordPress大学
WordPress大学
Hugging Face - Blog
Hugging Face - Blog
T
The Blog of Author Tim Ferriss
小众软件
小众软件
M
MIT News - Artificial intelligence
MyScale Blog
MyScale Blog
D
Docker
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Google DeepMind News
Google DeepMind News
月光博客
月光博客
L
LangChain Blog
F
Fortinet All Blogs
Microsoft Azure Blog
Microsoft Azure Blog
博客园 - Franky
C
Check Point Blog
U
Unit 42
人人都是产品经理
人人都是产品经理

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

@@ -40,6 +40,14 @@ function mockMusicGenerationResponse(json: Record<string, unknown>): void {

4040

});

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 music generation provider", () => {

4452

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

4553

expectExplicitMusicGenerationCapabilities(buildMinimaxMusicGenerationProvider());

@@ -63,33 +71,24 @@ describe("minimax music generation provider", () => {

6371

durationSeconds: 45,

6472

});

657366-

expect(postJsonRequestMock).toHaveBeenCalledWith(

67-

expect.objectContaining({

68-

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

69-

body: expect.objectContaining({

70-

model: "music-2.6",

71-

lyrics: "our city wakes",

72-

output_format: "url",

73-

audio_setting: {

74-

sample_rate: 44100,

75-

bitrate: 256000,

76-

format: "mp3",

77-

},

78-

}),

79-

}),

80-

);

81-

const request = postJsonRequestMock.mock.calls[0]?.[0];

74+

const request = mockCallArg(postJsonRequestMock);

75+

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

76+

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

77+

expect(body.model).toBe("music-2.6");

78+

expect(body.lyrics).toBe("our city wakes");

79+

expect(body.output_format).toBe("url");

80+

expect(body.audio_setting).toEqual({

81+

sample_rate: 44100,

82+

bitrate: 256000,

83+

format: "mp3",

84+

});

8285

expect(request?.headers).toBeInstanceOf(Headers);

8386

const headers = request?.headers as Headers | undefined;

8487

expect(headers?.get("content-type")).toBe("application/json");

8588

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

8689

expect(result.lyrics).toEqual(["our city wakes"]);

87-

expect(result.metadata).toEqual(

88-

expect.objectContaining({

89-

taskId: "task-123",

90-

audioUrl: "https://example.com/out.mp3",

91-

}),

92-

);

90+

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

91+

expect(result.metadata?.audioUrl).toBe("https://example.com/out.mp3");

9392

});

94939594

it("downloads tracks when url output is returned in data.audio", async () => {

@@ -148,14 +147,10 @@ describe("minimax music generation provider", () => {

148147

cfg: {},

149148

});

150149151-

expect(postJsonRequestMock).toHaveBeenCalledWith(

152-

expect.objectContaining({

153-

body: expect.objectContaining({

154-

model: "music-2.6",

155-

lyrics_optimizer: true,

156-

}),

157-

}),

158-

);

150+

const request = mockCallArg(postJsonRequestMock);

151+

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

152+

expect(body.model).toBe("music-2.6");

153+

expect(body.lyrics_optimizer).toBe(true);

159154

});

160155161156

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

@@ -186,23 +181,14 @@ describe("minimax music generation provider", () => {

186181

},

187182

});

188183189-

expect(resolveApiKeyForProviderMock).toHaveBeenCalledWith(

190-

expect.objectContaining({

191-

provider: "minimax-portal",

192-

}),

193-

);

194-

expect(resolveProviderHttpRequestConfigMock).toHaveBeenCalledWith(

195-

expect.objectContaining({

196-

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

197-

provider: "minimax-portal",

198-

capability: "audio",

199-

transport: "http",

200-

}),

201-

);

202-

expect(postJsonRequestMock).toHaveBeenCalledWith(

203-

expect.objectContaining({

204-

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

205-

}),

184+

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

185+

const httpConfigParams = mockCallArg(resolveProviderHttpRequestConfigMock);

186+

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

187+

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

188+

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

189+

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

190+

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

191+

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

206192

);

207193

});

208194

});