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

推荐订阅源

博客园 - 叶小钗
爱范儿
爱范儿
WordPress大学
WordPress大学
Last Week in AI
Last Week in AI
博客园 - 聂微东
雷峰网
雷峰网
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
博客园 - 三生石上(FineUI控件)
T
Tailwind CSS Blog
博客园 - Franky
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园_首页
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园 - 司徒正美
月光博客
月光博客
大猫的无限游戏
大猫的无限游戏
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
The Cloudflare Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
人人都是产品经理
人人都是产品经理
宝玉的分享
宝玉的分享
罗磊的独立博客
Jina AI
Jina AI

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 outbound media runner assertions · openclaw...
steipete · 2026-05-11 · via Recent Commits to openclaw:main

@@ -88,6 +88,29 @@ const runDrySend = (params: {

8888

sandboxRoot: params.sandboxRoot,

8989

});

909091+

function requireRecord(value: unknown): Record<string, unknown> {

92+

expect(value).toBeTruthy();

93+

expect(typeof value).toBe("object");

94+

expect(Array.isArray(value)).toBe(false);

95+

return value as Record<string, unknown>;

96+

}

97+98+

function requireActionPayload(

99+

result: Awaited<ReturnType<typeof runMessageAction>>,

100+

): Record<string, unknown> {

101+

expect(result.kind).toBe("action");

102+

if (result.kind !== "action") {

103+

throw new Error("expected action result");

104+

}

105+

return requireRecord(result.payload);

106+

}

107+108+

function requireLoadWebMediaOptions(): Record<string, unknown> {

109+

const call = vi.mocked(loadWebMedia).mock.calls[0];

110+

expect(call).toBeTruthy();

111+

return requireRecord(call?.[1]);

112+

}

113+91114

async function expectSandboxMediaRewrite(params: {

92115

sandboxDir: string;

93116

media?: string;

@@ -136,16 +159,12 @@ async function runAttachmentRemoteMediaAction(params: {

136159

}

137160138161

function expectAttachmentRemoteMediaPayload(result: Awaited<ReturnType<typeof runMessageAction>>) {

139-

expect(result.kind).toBe("action");

140-

expect(result.payload).toMatchObject({

141-

ok: true,

142-

filename: "pic.png",

143-

caption: "caption",

144-

contentType: "image/png",

145-

});

146-

expect((result.payload as { buffer?: string }).buffer).toBe(

147-

Buffer.from("hello").toString("base64"),

148-

);

162+

const payload = requireActionPayload(result);

163+

expect(payload.ok).toBe(true);

164+

expect(payload.filename).toBe("pic.png");

165+

expect(payload.caption).toBe("caption");

166+

expect(payload.contentType).toBe("image/png");

167+

expect(payload.buffer).toBe(Buffer.from("hello").toString("base64"));

149168

}

150169151170

let actualLoadWebMedia: typeof loadWebMedia;

@@ -256,11 +275,8 @@ describe("runMessageAction media behavior", () => {

256275

});

257276258277

expect(result.kind).toBe("send");

259-

expect(channelResolutionMocks.executeSendAction).toHaveBeenCalledWith(

260-

expect.objectContaining({

261-

asVoice: true,

262-

}),

263-

);

278+

const sendArgs = requireRecord(channelResolutionMocks.executeSendAction.mock.calls[0]?.[0]);

279+

expect(sendArgs.asVoice).toBe(true);

264280

});

265281266282

describe("sendAttachment hydration", () => {

@@ -373,17 +389,11 @@ describe("runMessageAction media behavior", () => {

373389

const result = await runAttachmentRemoteMediaAction({ cfg, action: "sendAttachment" });

374390375391

expectAttachmentRemoteMediaPayload(result);

376-

const call = vi.mocked(loadWebMedia).mock.calls[0];

377-

expect(call?.[1]).toEqual(

378-

expect.objectContaining({

379-

localRoots: expect.any(Array),

380-

readFile: expect.any(Function),

381-

hostReadCapability: true,

382-

}),

383-

);

384-

expect((call?.[1] as { sandboxValidated?: boolean } | undefined)?.sandboxValidated).not.toBe(

385-

true,

386-

);

392+

const options = requireLoadWebMediaOptions();

393+

expect(Array.isArray(options.localRoots)).toBe(true);

394+

expect(typeof options.readFile).toBe("function");

395+

expect(options.hostReadCapability).toBe(true);

396+

expect(options.sandboxValidated).not.toBe(true);

387397

});

388398389399

it("allows host-local image attachment paths when fs root expansion is enabled", async () => {

@@ -408,12 +418,10 @@ describe("runMessageAction media behavior", () => {

408418

},

409419

});

410420411-

expect(result.kind).toBe("action");

412-

expect(result.payload).toMatchObject({

413-

ok: true,

414-

filename: "photo.png",

415-

contentType: "image/png",

416-

});

421+

const payload = requireActionPayload(result);

422+

expect(payload.ok).toBe(true);

423+

expect(payload.filename).toBe("photo.png");

424+

expect(payload.contentType).toBe("image/png");

417425

} finally {

418426

await fs.rm(tempDir, { recursive: true, force: true });

419427

}

@@ -505,11 +513,7 @@ describe("runMessageAction media behavior", () => {

505513506514

const call = vi.mocked(loadWebMedia).mock.calls[0];

507515

expect(call?.[0], testCase.name).toBe(path.join(sandboxDir, testCase.expectedPath));

508-

expect(call?.[1], testCase.name).toEqual(

509-

expect.objectContaining({

510-

sandboxValidated: true,

511-

}),

512-

);

516+

expect(requireRecord(call?.[1]).sandboxValidated, testCase.name).toBe(true);

513517

});

514518

}

515519

@@ -773,12 +777,10 @@ describe("runMessageAction media behavior", () => {

773777

sandboxRoot: sandboxDir,

774778

});

775779776-

expect(result.kind).toBe("action");

777-

expect(result.payload).toMatchObject({

778-

ok: true,

779-

avatarPath: path.join(sandboxDir, "avatars", "profile.png"),

780-

avatarUrl: "mxc://matrix.org/abc123def456",

781-

});

780+

const payload = requireActionPayload(result);

781+

expect(payload.ok).toBe(true);

782+

expect(payload.avatarPath).toBe(path.join(sandboxDir, "avatars", "profile.png"));

783+

expect(payload.avatarUrl).toBe("mxc://matrix.org/abc123def456");

782784

});

783785

});

784786

@@ -800,9 +802,9 @@ describe("runMessageAction media behavior", () => {

800802

});

801803802804

expect(result.kind).toBe("action");

803-

expect((result.payload as { mediaLocalRoots?: string[] }).mediaLocalRoots).toEqual(

804-

expect.arrayContaining([tempDir]),

805-

);

805+

const mediaLocalRoots = requireActionPayload(result).mediaLocalRoots;

806+

expect(Array.isArray(mediaLocalRoots)).toBe(true);

807+

expect(mediaLocalRoots).toContain(tempDir);

806808

} finally {

807809

await fs.rm(tempDir, { recursive: true, force: true });

808810

}

@@ -828,9 +830,8 @@ describe("runMessageAction media behavior", () => {

828830

if (result.kind !== "send") {

829831

throw new Error("expected send result");

830832

}

831-

expect(result.sendResult).toMatchObject({

832-

channel: "profile-demo",

833-

});

833+

expect(result.sendResult).toBeTruthy();

834+

expect(result.sendResult?.channel).toBe("profile-demo");

834835

});

835836

});

836837

});