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

推荐订阅源

博客园 - Franky
N
Netflix TechBlog - Medium
宝玉的分享
宝玉的分享
Google DeepMind News
Google DeepMind News
腾讯CDC
G
Google Developers Blog
Martin Fowler
Martin Fowler
Microsoft Security Blog
Microsoft Security Blog
Recent Announcements
Recent Announcements
爱范儿
爱范儿
Engineering at Meta
Engineering at Meta
Microsoft Azure Blog
Microsoft Azure Blog
A
About on SuperTechFans
aimingoo的专栏
aimingoo的专栏
有赞技术团队
有赞技术团队
Jina AI
Jina AI
人人都是产品经理
人人都是产品经理
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
M
MIT News - Artificial intelligence
罗磊的独立博客
博客园 - 三生石上(FineUI控件)
美团技术团队
WordPress大学
WordPress大学
阮一峰的网络日志
阮一峰的网络日志

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 slack upload broad matchers · openclaw/opencl...
steipete · 2026-05-10 · via Recent Commits to openclaw:main

@@ -70,6 +70,75 @@ type UploadTestClient = WebClient & {

7070

};

7171

};

727273+

type MockCalls = {

74+

mock: { calls: unknown[][] };

75+

};

76+77+

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

78+

return typeof value === "object" && value !== null;

79+

}

80+81+

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

82+

expect(isRecord(value), `${label} should be an object`).toBe(true);

83+

if (!isRecord(value)) {

84+

throw new Error(`${label} should be an object`);

85+

}

86+

return value;

87+

}

88+89+

function requireArray(value: unknown, label: string): unknown[] {

90+

expect(Array.isArray(value), `${label} should be an array`).toBe(true);

91+

if (!Array.isArray(value)) {

92+

throw new Error(`${label} should be an array`);

93+

}

94+

return value;

95+

}

96+97+

function expectFields(record: Record<string, unknown>, expected: Record<string, unknown>) {

98+

for (const [key, value] of Object.entries(expected)) {

99+

expect(record[key], key).toEqual(value);

100+

}

101+

}

102+103+

function expectCallFirstArg(

104+

mock: MockCalls,

105+

callNumber: number,

106+

expected: Record<string, unknown>,

107+

label = "mock first argument",

108+

): Record<string, unknown> {

109+

expect(mock.mock.calls.length).toBeGreaterThanOrEqual(callNumber);

110+

const [firstArg] = mock.mock.calls[callNumber - 1] ?? [];

111+

const record = requireRecord(firstArg, label);

112+

expectFields(record, expected);

113+

return record;

114+

}

115+116+

function expectOnlyCallFirstArg(

117+

mock: MockCalls,

118+

expected: Record<string, unknown>,

119+

label?: string,

120+

): Record<string, unknown> {

121+

expect(mock.mock.calls).toHaveLength(1);

122+

return expectCallFirstArg(mock, 1, expected, label);

123+

}

124+125+

function expectCompletedUpload(params: {

126+

client: UploadTestClient;

127+

expected: Record<string, unknown>;

128+

file?: Record<string, unknown>;

129+

}) {

130+

const payload = expectOnlyCallFirstArg(

131+

params.client.files.completeUploadExternal,

132+

params.expected,

133+

"complete upload payload",

134+

);

135+

if (params.file) {

136+

const [file] = requireArray(payload.files, "complete upload files");

137+

expectFields(requireRecord(file, "complete upload file"), params.file);

138+

}

139+

return payload;

140+

}

141+73142

function createUploadTestClient(): UploadTestClient {

74143

return {

75144

conversations: {

@@ -124,12 +193,11 @@ describe("sendMessageSlack file upload with user IDs", () => {

124193

users: "U2ZH3MFSR",

125194

});

126195127-

expect(client.files.completeUploadExternal).toHaveBeenCalledWith(

128-

expect.objectContaining({

129-

channel_id: "D99RESOLVED",

130-

files: [expect.objectContaining({ id: "F001", title: "screenshot.png" })],

131-

}),

132-

);

196+

expectCompletedUpload({

197+

client,

198+

expected: { channel_id: "D99RESOLVED" },

199+

file: { id: "F001", title: "screenshot.png" },

200+

});

133201

});

134202135203

it("resolves prefixed user ID to DM channel before completing upload", async () => {

@@ -145,9 +213,7 @@ describe("sendMessageSlack file upload with user IDs", () => {

145213

expect(client.conversations.open).toHaveBeenCalledWith({

146214

users: "UABC123",

147215

});

148-

expect(client.files.completeUploadExternal).toHaveBeenCalledWith(

149-

expect.objectContaining({ channel_id: "D99RESOLVED" }),

150-

);

216+

expectCompletedUpload({ client, expected: { channel_id: "D99RESOLVED" } });

151217

});

152218153219

it("posts text-only user-target DMs directly without conversations.open", async () => {

@@ -167,13 +233,10 @@ describe("sendMessageSlack file upload with user IDs", () => {

167233168234

expect(client.conversations.open).not.toHaveBeenCalled();

169235

expect(client.chat.postMessage).toHaveBeenCalledTimes(2);

170-

expect(client.chat.postMessage).toHaveBeenNthCalledWith(

171-

2,

172-

expect.objectContaining({

173-

channel: "UABC123",

174-

text: "second",

175-

}),

176-

);

236+

expectCallFirstArg(client.chat.postMessage, 2, {

237+

channel: "UABC123",

238+

text: "second",

239+

});

177240

});

178241179242

it("serializes concurrent sends to the same Slack target", async () => {

@@ -209,26 +272,25 @@ describe("sendMessageSlack file upload with user IDs", () => {

209272

}

210273

resolveFirst();

211274212-

await expect(first).resolves.toMatchObject({

275+

const firstResult = await first;

276+

expectFields(requireRecord(firstResult, "first send result"), {

213277

channelId: "C123CHAN",

214278

messageId: "1.000",

215-

receipt: expect.objectContaining({

216-

primaryPlatformMessageId: "1.000",

217-

platformMessageIds: ["1.000"],

218-

}),

219279

});

220-

await expect(second).resolves.toMatchObject({

280+

expectFields(requireRecord(firstResult.receipt, "first receipt"), {

281+

primaryPlatformMessageId: "1.000",

282+

platformMessageIds: ["1.000"],

283+

});

284+

const secondResult = await second;

285+

expectFields(requireRecord(secondResult, "second send result"), {

221286

channelId: "C123CHAN",

222287

messageId: "2.000",

223-

receipt: expect.objectContaining({

224-

primaryPlatformMessageId: "2.000",

225-

platformMessageIds: ["2.000"],

226-

}),

227-

});

228-

expect(client.chat.postMessage).toHaveBeenNthCalledWith(

229-

2,

230-

expect.objectContaining({ text: "second" }),

231-

);

288+

});

289+

expectFields(requireRecord(secondResult.receipt, "second receipt"), {

290+

primaryPlatformMessageId: "2.000",

291+

platformMessageIds: ["2.000"],

292+

});

293+

expectCallFirstArg(client.chat.postMessage, 2, { text: "second" });

232294

});

233295234296

it("scopes DM channel resolution cache by token identity", async () => {

@@ -261,19 +323,20 @@ describe("sendMessageSlack file upload with user IDs", () => {

261323

});

262324263325

expect(client.conversations.open).not.toHaveBeenCalled();

264-

expect(client.files.completeUploadExternal).toHaveBeenCalledWith(

265-

expect.objectContaining({ channel_id: "C123CHAN" }),

266-

);

267-

expect(result.receipt).toMatchObject({

326+

expectCompletedUpload({ client, expected: { channel_id: "C123CHAN" } });

327+

expectFields(requireRecord(result.receipt, "receipt"), {

268328

primaryPlatformMessageId: "F001",

269329

platformMessageIds: ["F001"],

270-

parts: [

271-

expect.objectContaining({

272-

platformMessageId: "F001",

273-

kind: "media",

274-

raw: expect.objectContaining({ channel: "slack", channelId: "C123CHAN" }),

275-

}),

276-

],

330+

});

331+

const [part] = requireArray(result.receipt.parts, "receipt parts");

332+

const partRecord = requireRecord(part, "receipt part");

333+

expectFields(partRecord, {

334+

platformMessageId: "F001",

335+

kind: "media",

336+

});

337+

expectFields(requireRecord(partRecord.raw, "receipt raw"), {

338+

channel: "slack",

339+

channelId: "C123CHAN",

277340

});

278341

});

279342

@@ -290,9 +353,7 @@ describe("sendMessageSlack file upload with user IDs", () => {

290353

expect(client.conversations.open).toHaveBeenCalledWith({

291354

users: "U777TEST",

292355

});

293-

expect(client.files.completeUploadExternal).toHaveBeenCalledWith(

294-

expect.objectContaining({ channel_id: "D99RESOLVED" }),

295-

);

356+

expectCompletedUpload({ client, expected: { channel_id: "D99RESOLVED" } });

296357

});

297358298359

it("uploads bytes to the presigned URL and completes with thread+caption", async () => {

@@ -310,26 +371,24 @@ describe("sendMessageSlack file upload with user IDs", () => {

310371

filename: "screenshot.png",

311372

length: Buffer.from("fake-image").length,

312373

});

313-

expect(globalThis.fetch).toHaveBeenCalledWith(

314-

"https://uploads.slack.test/upload",

315-

expect.objectContaining({

316-

method: "POST",

317-

}),

318-

);

319-

expect(fetchWithSsrFGuard).toHaveBeenCalledWith(

320-

expect.objectContaining({

321-

url: "https://uploads.slack.test/upload",

322-

mode: "trusted_env_proxy",

323-

auditContext: "slack-upload-file",

324-

}),

325-

);

326-

expect(client.files.completeUploadExternal).toHaveBeenCalledWith(

327-

expect.objectContaining({

374+

const fetchCalls = (globalThis.fetch as unknown as MockCalls).mock.calls;

375+

expect(fetchCalls).toHaveLength(1);

376+

const [fetchUrl, fetchInit] = fetchCalls[0] ?? [];

377+

expect(fetchUrl).toBe("https://uploads.slack.test/upload");

378+

expectFields(requireRecord(fetchInit, "fetch init"), { method: "POST" });

379+

expectOnlyCallFirstArg(fetchWithSsrFGuard, {

380+

url: "https://uploads.slack.test/upload",

381+

mode: "trusted_env_proxy",

382+

auditContext: "slack-upload-file",

383+

});

384+

expectCompletedUpload({

385+

client,

386+

expected: {

328387

channel_id: "C123CHAN",

329388

initial_comment: "caption",

330389

thread_ts: "171.222",

331-

}),

332-

);

390+

},

391+

});

333392

expect(hasSlackThreadParticipation("default", "C123CHAN", "171.222")).toBe(true);

334393

expect(result.receipt.threadId).toBe("171.222");

335394

});

@@ -350,11 +409,11 @@ describe("sendMessageSlack file upload with user IDs", () => {

350409

filename: "custom-name.bin",

351410

length: Buffer.from("fake-image").length,

352411

});

353-

expect(client.files.completeUploadExternal).toHaveBeenCalledWith(

354-

expect.objectContaining({

355-

files: [expect.objectContaining({ id: "F001", title: "Custom Title" })],

356-

}),

357-

);

412+

expectCompletedUpload({

413+

client,

414+

expected: {},

415+

file: { id: "F001", title: "Custom Title" },

416+

});

358417

});

359418360419

it("uses uploadFileName as the title fallback when uploadTitle is omitted", async () => {

@@ -372,10 +431,10 @@ describe("sendMessageSlack file upload with user IDs", () => {

372431

filename: "custom-name.bin",

373432

length: Buffer.from("fake-image").length,

374433

});

375-

expect(client.files.completeUploadExternal).toHaveBeenCalledWith(

376-

expect.objectContaining({

377-

files: [expect.objectContaining({ id: "F001", title: "custom-name.bin" })],

378-

}),

379-

);

434+

expectCompletedUpload({

435+

client,

436+

expected: {},

437+

file: { id: "F001", title: "custom-name.bin" },

438+

});

380439

});

381440

});