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

推荐订阅源

J
Java Code Geeks
Last Week in AI
Last Week in AI
T
Tailwind CSS Blog
WordPress大学
WordPress大学
B
Blog RSS Feed
T
The Blog of Author Tim Ferriss
F
Fortinet All Blogs
aimingoo的专栏
aimingoo的专栏
MongoDB | Blog
MongoDB | Blog
博客园 - Franky
C
Check Point Blog
P
Proofpoint News Feed
H
Help Net Security
月光博客
月光博客
博客园_首页
Stack Overflow Blog
Stack Overflow Blog
博客园 - 三生石上(FineUI控件)
Martin Fowler
Martin Fowler
Recent Announcements
Recent Announcements
人人都是产品经理
人人都是产品经理
U
Unit 42
美团技术团队
I
InfoQ
A
About on SuperTechFans

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

@@ -60,13 +60,35 @@ const DISCORD_CDN_HOSTNAMES = [

6060

"*.discordapp.net",

6161

];

626263+

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

64+

expect(value, label).toBeTypeOf("object");

65+

expect(value, label).not.toBeNull();

66+

return value as Record<string, unknown>;

67+

}

68+69+

function requireArray(value: unknown, label: string): Array<unknown> {

70+

expect(Array.isArray(value), label).toBe(true);

71+

return value as Array<unknown>;

72+

}

73+74+

function callArg(mock: unknown, callIndex: number, argIndex: number, label: string) {

75+

const calls = (mock as { mock?: { calls?: Array<Array<unknown>> } }).mock?.calls ?? [];

76+

const call = calls.at(callIndex);

77+

expect(call, label).toBeDefined();

78+

return call?.[argIndex];

79+

}

80+81+

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

82+

return requireRecord(callArg(fetchRemoteMedia, 0, 0, "fetch media params"), "fetch media params");

83+

}

84+6385

function expectDiscordCdnSsrFPolicy(policy: unknown) {

64-

expect(policy).toEqual(

65-

expect.objectContaining({

66-

allowRfc2544BenchmarkRange: true,

67-

hostnameAllowlist: expect.arrayContaining(DISCORD_CDN_HOSTNAMES),

68-

}),

69-

);

86+

const policyRecord = requireRecord(policy, "ssrf policy");

87+

expect(policyRecord.allowRfc2544BenchmarkRange).toBe(true);

88+

const hostnameAllowlist = requireArray(policyRecord.hostnameAllowlist, "hostname allowlist");

89+

for (const hostname of DISCORD_CDN_HOSTNAMES) {

90+

expect(hostnameAllowlist).toContain(hostname);

91+

}

7092

}

71937294

function expectSinglePngDownload(params: {

@@ -77,30 +99,18 @@ function expectSinglePngDownload(params: {

7799

placeholder: "<media:image>" | "<media:sticker>";

78100

}) {

79101

expect(fetchRemoteMedia).toHaveBeenCalledTimes(1);

80-

const call = fetchRemoteMedia.mock.calls[0]?.[0] as {

81-

url?: string;

82-

filePathHint?: string;

83-

maxBytes?: number;

84-

fetchImpl?: unknown;

85-

readIdleTimeoutMs?: number;

86-

requestInit?: { signal?: AbortSignal };

87-

ssrfPolicy?: unknown;

88-

};

89-

expect(call).toMatchObject({

90-

url: params.expectedUrl,

91-

filePathHint: params.filePathHint,

92-

maxBytes: 512,

93-

fetchImpl: undefined,

94-

});

102+

const call = fetchParams();

103+

expect(call.url).toBe(params.expectedUrl);

104+

expect(call.filePathHint).toBe(params.filePathHint);

105+

expect(call.maxBytes).toBe(512);

106+

expect(call.fetchImpl).toBeUndefined();

95107

expectDiscordCdnSsrFPolicy(call.ssrfPolicy);

96108

expect(saveMediaBuffer).toHaveBeenCalledTimes(1);

97-

expect(saveMediaBuffer).toHaveBeenCalledWith(

98-

expect.any(Buffer),

99-

"image/png",

100-

"inbound",

101-

512,

102-

params.filePathHint,

103-

);

109+

expect(Buffer.isBuffer(callArg(saveMediaBuffer, 0, 0, "saved buffer"))).toBe(true);

110+

expect(callArg(saveMediaBuffer, 0, 1, "saved content type")).toBe("image/png");

111+

expect(callArg(saveMediaBuffer, 0, 2, "saved direction")).toBe("inbound");

112+

expect(callArg(saveMediaBuffer, 0, 3, "saved max bytes")).toBe(512);

113+

expect(callArg(saveMediaBuffer, 0, 4, "saved file path hint")).toBe(params.filePathHint);

104114

expect(params.result).toEqual([

105115

{

106116

path: params.expectedPath,

@@ -272,9 +282,7 @@ describe("resolveForwardedMediaList", () => {

272282

{ fetchImpl: proxyFetch },

273283

);

274284275-

expect(fetchRemoteMedia).toHaveBeenCalledWith(

276-

expect.objectContaining({ fetchImpl: proxyFetch }),

277-

);

285+

expect(fetchParams().fetchImpl).toBe(proxyFetch);

278286

});

279287280288

it("keeps forwarded attachment metadata when download fails", async () => {

@@ -410,9 +418,7 @@ describe("resolveForwardedMediaList", () => {

410418

{ readIdleTimeoutMs: 60_000 },

411419

);

412420413-

expect(fetchRemoteMedia).toHaveBeenCalledWith(

414-

expect.objectContaining({ readIdleTimeoutMs: 60_000 }),

415-

);

421+

expect(fetchParams().readIdleTimeoutMs).toBe(60_000);

416422

});

417423418424

it("passes readIdleTimeoutMs to forwarded sticker downloads", async () => {

@@ -440,9 +446,7 @@ describe("resolveForwardedMediaList", () => {

440446

{ readIdleTimeoutMs: 60_000 },

441447

);

442448443-

expect(fetchRemoteMedia).toHaveBeenCalledWith(

444-

expect.objectContaining({ readIdleTimeoutMs: 60_000 }),

445-

);

449+

expect(fetchParams().readIdleTimeoutMs).toBe(60_000);

446450

});

447451

});

448452

@@ -507,9 +511,7 @@ describe("resolveMediaList", () => {

507511

{ fetchImpl: proxyFetch },

508512

);

509513510-

expect(fetchRemoteMedia).toHaveBeenCalledWith(

511-

expect.objectContaining({ fetchImpl: proxyFetch }),

512-

);

514+

expect(fetchParams().fetchImpl).toBe(proxyFetch);

513515

});

514516515517

it("keeps attachment metadata when download fails", async () => {

@@ -726,9 +728,7 @@ describe("resolveMediaList", () => {

726728

{ readIdleTimeoutMs: 60_000 },

727729

);

728730729-

expect(fetchRemoteMedia).toHaveBeenCalledWith(

730-

expect.objectContaining({ readIdleTimeoutMs: 60_000 }),

731-

);

731+

expect(fetchParams().readIdleTimeoutMs).toBe(60_000);

732732

});

733733734734

it("passes readIdleTimeoutMs to fetchRemoteMedia for stickers", async () => {

@@ -754,9 +754,7 @@ describe("resolveMediaList", () => {

754754

{ readIdleTimeoutMs: 60_000 },

755755

);

756756757-

expect(fetchRemoteMedia).toHaveBeenCalledWith(

758-

expect.objectContaining({ readIdleTimeoutMs: 60_000 }),

759-

);

757+

expect(fetchParams().readIdleTimeoutMs).toBe(60_000);

760758

});

761759762760

it("times out slow attachment downloads and returns fallback", async () => {

@@ -834,11 +832,8 @@ describe("resolveMediaList", () => {

834832

placeholder: "<media:image>",

835833

},

836834

]);

837-

expect(fetchRemoteMedia).toHaveBeenCalledWith(

838-

expect.objectContaining({

839-

requestInit: expect.objectContaining({ signal: abortController.signal }),

840-

}),

841-

);

835+

const requestInit = requireRecord(fetchParams().requestInit, "fetch request init");

836+

expect(requestInit.signal).toBe(abortController.signal);

842837

});

843838

});

844839

@@ -893,15 +888,17 @@ describe("Discord media SSRF policy", () => {

893888

},

894889

);

895890896-

const policy = fetchRemoteMedia.mock.calls[0]?.[0]?.ssrfPolicy;

897-

expect(policy).toEqual(

898-

expect.objectContaining({

899-

allowPrivateNetwork: true,

900-

allowRfc2544BenchmarkRange: true,

901-

allowedHostnames: expect.arrayContaining(["assets.example.com"]),

902-

hostnameAllowlist: expect.arrayContaining(["assets.example.com", ...DISCORD_CDN_HOSTNAMES]),

903-

}),

891+

const policy = requireRecord(fetchParams().ssrfPolicy, "ssrf policy");

892+

expect(policy.allowPrivateNetwork).toBe(true);

893+

expect(policy.allowRfc2544BenchmarkRange).toBe(true);

894+

expect(requireArray(policy.allowedHostnames, "allowed hostnames")).toContain(

895+

"assets.example.com",

904896

);

897+

const hostnameAllowlist = requireArray(policy.hostnameAllowlist, "hostname allowlist");

898+

expect(hostnameAllowlist).toContain("assets.example.com");

899+

for (const hostname of DISCORD_CDN_HOSTNAMES) {

900+

expect(hostnameAllowlist).toContain(hostname);

901+

}

905902

});

906903

});

907904