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

推荐订阅源

让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
罗磊的独立博客
博客园 - 【当耐特】
M
MIT News - Artificial intelligence
月光博客
月光博客
博客园_首页
博客园 - 叶小钗
T
Tailwind CSS Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
I
InfoQ
量子位
小众软件
小众软件
爱范儿
爱范儿
The GitHub Blog
The GitHub Blog
IT之家
IT之家
Jina AI
Jina AI
阮一峰的网络日志
阮一峰的网络日志
G
Google Developers Blog
WordPress大学
WordPress大学
人人都是产品经理
人人都是产品经理
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
J
Java Code Geeks
云风的 BLOG
云风的 BLOG
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报

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 qwen video request assertions · openclaw/op...
shakkernerd · 2026-05-11 · via Recent Commits to openclaw:main

@@ -20,6 +20,39 @@ beforeAll(async () => {

20202121

installProviderHttpMockCleanup();

222223+

function expectPostJsonRequest(

24+

call: unknown,

25+

expected: {

26+

url: string;

27+

body: Record<string, unknown>;

28+

},

29+

) {

30+

if (!call || typeof call !== "object") {

31+

throw new Error("expected postJsonRequest call object");

32+

}

33+

const request = call as {

34+

url?: unknown;

35+

headers?: unknown;

36+

body?: unknown;

37+

timeoutMs?: unknown;

38+

fetchFn?: unknown;

39+

allowPrivateNetwork?: unknown;

40+

dispatcherPolicy?: unknown;

41+

};

42+

expect(request.url).toBe(expected.url);

43+

expect(request.body).toEqual(expected.body);

44+

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

45+

expect(request.fetchFn).toBe(globalThis.fetch);

46+

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

47+

expect(request.dispatcherPolicy).toBeUndefined();

48+

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

49+

expect(Array.from((request.headers as Headers).entries())).toEqual([

50+

["authorization", "Bearer provider-key"],

51+

["content-type", "application/json"],

52+

["x-dashscope-async", "enable"],

53+

]);

54+

}

55+2356

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

2457

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

2558

expectExplicitVideoGenerationCapabilities(buildQwenVideoGenerationProvider());

@@ -39,18 +72,21 @@ describe("qwen video generation provider", () => {

3972

audio: true,

4073

});

417442-

expect(postJsonRequestMock).toHaveBeenCalledWith(

43-

expect.objectContaining({

44-

url: "https://dashscope-intl.aliyuncs.com/api/v1/services/aigc/video-generation/video-synthesis",

45-

body: expect.objectContaining({

46-

model: "wan2.6-r2v-flash",

47-

input: expect.objectContaining({

48-

prompt: "animate this shot",

49-

img_url: "https://example.com/ref.png",

50-

}),

51-

}),

52-

}),

53-

);

75+

expect(postJsonRequestMock).toHaveBeenCalledTimes(1);

76+

expectPostJsonRequest(postJsonRequestMock.mock.calls[0]?.[0], {

77+

url: "https://dashscope-intl.aliyuncs.com/api/v1/services/aigc/video-generation/video-synthesis",

78+

body: {

79+

model: "wan2.6-r2v-flash",

80+

input: {

81+

prompt: "animate this shot",

82+

img_url: "https://example.com/ref.png",

83+

},

84+

parameters: {

85+

duration: 6,

86+

enable_audio: true,

87+

},

88+

},

89+

});

5490

expectDashscopeVideoTaskPoll(fetchWithTimeoutMock);

5591

expectSuccessfulDashscopeVideoResult(result);

5692

});

@@ -98,11 +134,19 @@ describe("qwen video generation provider", () => {

98134

},

99135

});

100136101-

expect(postJsonRequestMock).toHaveBeenCalledWith(

102-

expect.objectContaining({

103-

url: "https://coding-intl.dashscope.aliyuncs.com/api/v1/services/aigc/video-generation/video-synthesis",

104-

}),

105-

);

137+

expect(postJsonRequestMock).toHaveBeenCalledTimes(1);

138+

expectPostJsonRequest(postJsonRequestMock.mock.calls[0]?.[0], {

139+

url: "https://coding-intl.dashscope.aliyuncs.com/api/v1/services/aigc/video-generation/video-synthesis",

140+

body: {

141+

model: "wan2.6-t2v",

142+

input: {

143+

prompt: "animate this shot",

144+

},

145+

parameters: {

146+

duration: 5,

147+

},

148+

},

149+

});

106150

expectDashscopeVideoTaskPoll(fetchWithTimeoutMock, {

107151

baseUrl: "https://coding-intl.dashscope.aliyuncs.com",

108152

taskId: "task-2",