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

推荐订阅源

IT之家
IT之家
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
大猫的无限游戏
大猫的无限游戏
美团技术团队
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园_首页
MyScale Blog
MyScale Blog
N
Netflix TechBlog - Medium
I
InfoQ
Jina AI
Jina AI
Martin Fowler
Martin Fowler
Recent Announcements
Recent Announcements
量子位
月光博客
月光博客
罗磊的独立博客
雷峰网
雷峰网
The Cloudflare Blog
V
V2EX
小众软件
小众软件
人人都是产品经理
人人都是产品经理
博客园 - Franky
T
Tailwind CSS Blog
有赞技术团队
有赞技术团队
S
SegmentFault 最新的问题

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: clear managed image broad matchers · openclaw/openc...
steipete · 2026-05-10 · via Recent Commits to openclaw:main

@@ -82,7 +82,29 @@ function requireAttachmentIdFromUrl(url: unknown): string {

8282

}

83838484

async function expectPathMissing(targetPath: string): Promise<void> {

85-

await expect(fs.access(targetPath)).rejects.toMatchObject({ code: "ENOENT" });

85+

try {

86+

await fs.access(targetPath);

87+

} catch (error) {

88+

expect((error as NodeJS.ErrnoException).code).toBe("ENOENT");

89+

return;

90+

}

91+

throw new Error(`expected ${targetPath} to be missing`);

92+

}

93+94+

type ManagedImageBlock = {

95+

type?: string;

96+

alt?: string;

97+

mimeType?: string;

98+

url?: string;

99+

openUrl?: string;

100+

};

101+102+

function requireBlock(blocks: unknown[], index = 0): ManagedImageBlock {

103+

const block = blocks[index];

104+

if (!block) {

105+

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

106+

}

107+

return block as ManagedImageBlock;

86108

}

8710988110

async function createFixture(

@@ -409,13 +431,12 @@ describe("createManagedOutgoingImageBlocks", () => {

409431

});

410432411433

expect(blocks).toHaveLength(1);

412-

expect(blocks[0]).toMatchObject({

413-

type: "image",

414-

alt: "Generated image 1",

415-

mimeType: "image/png",

416-

});

417-

expect(blocks[0]?.url).toBe(blocks[0]?.openUrl);

418-

expect(String(blocks[0]?.url)).toMatch(/\/full$/);

434+

const block = requireBlock(blocks);

435+

expect(block.type).toBe("image");

436+

expect(block.alt).toBe("Generated image 1");

437+

expect(block.mimeType).toBe("image/png");

438+

expect(block.url).toBe(block.openUrl);

439+

expect(String(block.url)).toMatch(/\/full$/);

419440420441

const recordsDir = path.join(stateDir, "media", "outgoing", "records");

421442

const [recordName] = await fs.readdir(recordsDir);

@@ -461,15 +482,14 @@ describe("createManagedOutgoingImageBlocks", () => {

461482

});

462483463484

expect(blocks).toHaveLength(1);

464-

expect(blocks[0]).toMatchObject({

465-

type: "image",

466-

url: expect.stringContaining("/api/chat/media/outgoing/agent%3Amain%3Amain/"),

467-

openUrl: expect.stringContaining("/full"),

468-

});

469-

expect(blocks[0]?.url).toBe(blocks[0]?.openUrl);

470-

expect(JSON.stringify(blocks[0])).not.toContain(sourcePath);

471-472-

const attachmentId = requireAttachmentIdFromUrl(blocks[0]?.url);

485+

const block = requireBlock(blocks);

486+

expect(block.type).toBe("image");

487+

expect(block.url).toContain("/api/chat/media/outgoing/agent%3Amain%3Amain/");

488+

expect(block.openUrl).toContain("/full");

489+

expect(block.url).toBe(block.openUrl);

490+

expect(JSON.stringify(block)).not.toContain(sourcePath);

491+492+

const attachmentId = requireAttachmentIdFromUrl(block.url);

473493

const record = JSON.parse(

474494

await fs.readFile(

475495

path.join(stateDir, "media", "outgoing", "records", `${attachmentId}.json`),

@@ -518,17 +538,16 @@ describe("createManagedOutgoingImageBlocks", () => {

518538

});

519539520540

expect(blocks).toHaveLength(1);

521-

expect(blocks[0]?.alt).toBe("remote-cat.png");

522-

expect(blocks[0]).toMatchObject({

523-

type: "image",

524-

url: expect.stringContaining("/api/chat/media/outgoing/agent%3Amain%3Amain/"),

525-

openUrl: expect.stringContaining("/full"),

526-

});

527-

expect(blocks[0]?.url).toBe(blocks[0]?.openUrl);

528-

expect(JSON.stringify(blocks[0])).not.toContain("127.0.0.1");

529-

expect(JSON.stringify(blocks[0])).not.toContain("sig=secret");

530-531-

const attachmentId = requireAttachmentIdFromUrl(blocks[0]?.url);

541+

const block = requireBlock(blocks);

542+

expect(block.alt).toBe("remote-cat.png");

543+

expect(block.type).toBe("image");

544+

expect(block.url).toContain("/api/chat/media/outgoing/agent%3Amain%3Amain/");

545+

expect(block.openUrl).toContain("/full");

546+

expect(block.url).toBe(block.openUrl);

547+

expect(JSON.stringify(block)).not.toContain("127.0.0.1");

548+

expect(JSON.stringify(block)).not.toContain("sig=secret");

549+550+

const attachmentId = requireAttachmentIdFromUrl(block.url);

532551

const record = JSON.parse(

533552

await fs.readFile(

534553

path.join(stateDir, "media", "outgoing", "records", `${attachmentId}.json`),

@@ -632,7 +651,7 @@ describe("createManagedOutgoingImageBlocks", () => {

632651633652

expect(blocks).toHaveLength(2);

634653

expect(blocks[0]?.type).toBe("image");

635-

expect(blocks[1]).toMatchObject({ type: "text" });

654+

expect(requireBlock(blocks, 1).type).toBe("text");

636655

});

637656638657

it("skips broken attachments when continueOnPrepareError is enabled", async () => {

@@ -647,7 +666,7 @@ describe("createManagedOutgoingImageBlocks", () => {

647666

});

648667649668

expect(blocks).toHaveLength(1);

650-

expect(blocks[0]).toMatchObject({ type: "image" });

669+

expect(requireBlock(blocks).type).toBe("image");

651670

expect(onPrepareError).toHaveBeenCalledTimes(1);

652671

expect(onPrepareError.mock.calls[0]?.[0]).toBeInstanceOf(Error);

653672

expect(onPrepareError.mock.calls[0]?.[0]?.message).toMatch(

@@ -685,7 +704,7 @@ describe("createManagedOutgoingImageBlocks", () => {

685704

});

686705687706

expect(blocks).toHaveLength(1);

688-

expect(blocks[0]).toMatchObject({ type: "image" });

707+

expect(requireBlock(blocks).type).toBe("image");

689708

} finally {

690709

setMediaStoreNetworkDepsForTest();

691710

await new Promise<void>((resolve, reject) =>

@@ -732,7 +751,7 @@ describe("createManagedOutgoingImageBlocks", () => {

732751

});

733752734753

expect(blocks).toHaveLength(1);

735-

expect(blocks[0]).toMatchObject({ type: "image" });

754+

expect(requireBlock(blocks).type).toBe("image");

736755

});

737756738757

it("rejects relative local image paths that resolve outside allowed roots", async () => {

@@ -772,7 +791,7 @@ describe("createManagedOutgoingImageBlocks", () => {

772791

try {

773792

originals = await fs.readdir(originalsDir);

774793

} catch (error) {

775-

expect(error).toMatchObject({ code: "ENOENT" });

794+

expect((error as NodeJS.ErrnoException).code).toBe("ENOENT");

776795

}

777796

expect(originals ?? []).toStrictEqual([]);

778797

});

@@ -794,7 +813,7 @@ describe("createManagedOutgoingImageBlocks", () => {

794813

try {

795814

originals = await fs.readdir(originalsDir);

796815

} catch (error) {

797-

expect(error).toMatchObject({ code: "ENOENT" });

816+

expect((error as NodeJS.ErrnoException).code).toBe("ENOENT");

798817

}

799818

expect(originals ?? []).toStrictEqual([]);

800819

});

@@ -909,11 +928,9 @@ describe("cleanupManagedOutgoingImageRecords", () => {

909928910929

const result = await cleanupManagedOutgoingImageRecords({ stateDir });

911930912-

expect(result).toMatchObject({

913-

deletedRecordCount: 1,

914-

deletedFileCount: 1,

915-

retainedCount: 0,

916-

});

931+

expect(result.deletedRecordCount).toBe(1);

932+

expect(result.deletedFileCount).toBe(1);

933+

expect(result.retainedCount).toBe(0);

917934

await expectPathMissing(fixture.originalPath);

918935

});

919936

@@ -938,11 +955,9 @@ describe("cleanupManagedOutgoingImageRecords", () => {

938955939956

const result = await cleanupManagedOutgoingImageRecords({ stateDir });

940957941-

expect(result).toMatchObject({

942-

deletedRecordCount: 0,

943-

deletedFileCount: 0,

944-

retainedCount: 1,

945-

});

958+

expect(result.deletedRecordCount).toBe(0);

959+

expect(result.deletedFileCount).toBe(0);

960+

expect(result.retainedCount).toBe(1);

946961

await expect(fs.access(fixture.originalPath)).resolves.toBeUndefined();

947962

});

948963

@@ -979,11 +994,9 @@ describe("cleanupManagedOutgoingImageRecords", () => {

979994980995

const result = await cleanupManagedOutgoingImageRecords({ stateDir });

981996982-

expect(result).toMatchObject({

983-

deletedRecordCount: 0,

984-

deletedFileCount: 0,

985-

retainedCount: 2,

986-

});

997+

expect(result.deletedRecordCount).toBe(0);

998+

expect(result.deletedFileCount).toBe(0);

999+

expect(result.retainedCount).toBe(2);

9871000

expect(readSessionMessagesMock).toHaveBeenCalledTimes(1);

9881001

});

9891002

@@ -1012,10 +1025,8 @@ describe("cleanupManagedOutgoingImageRecords", () => {

10121025

forceDeleteSessionRecords: true,

10131026

});

101410271015-

expect(result).toMatchObject({

1016-

deletedRecordCount: 1,

1017-

retainedCount: 1,

1018-

});

1028+

expect(result.deletedRecordCount).toBe(1);

1029+

expect(result.retainedCount).toBe(1);

10191030

await expect(fs.access(retainedFixture.originalPath)).resolves.toBeUndefined();

10201031

});

10211032

});