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

推荐订阅源

J
Java Code Geeks
博客园 - 聂微东
人人都是产品经理
人人都是产品经理
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
博客园_首页
量子位
阮一峰的网络日志
阮一峰的网络日志
酷 壳 – CoolShell
酷 壳 – CoolShell
H
Hackread – Cybersecurity News, Data Breaches, AI and More
云风的 BLOG
云风的 BLOG
D
DataBreaches.Net
B
Blog
L
LangChain Blog
Apple Machine Learning Research
Apple Machine Learning Research
Vercel News
Vercel News
博客园 - 三生石上(FineUI控件)
爱范儿
爱范儿
Microsoft Azure Blog
Microsoft Azure Blog
IT之家
IT之家
aimingoo的专栏
aimingoo的专栏
B
Blog RSS Feed
H
Help Net Security
The Cloudflare Blog
U
Unit 42

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 slack channel assertions · openclaw/opencla...
steipete · 2026-05-11 · via Recent Commits to openclaw:main

@@ -138,6 +138,19 @@ function requireMockCallArg(mock: ReturnType<typeof vi.fn>, callIndex: number, a

138138

return requireRecord(mock.mock.calls[callIndex]?.[argIndex], "mock call argument");

139139

}

140140141+

function findSchemaEntry(

142+

schema: unknown,

143+

actions: string[],

144+

label: string,

145+

): Record<string, unknown> {

146+

const entries = requireArray(schema, label);

147+

const entry = entries.find((candidate) => {

148+

const record = requireRecord(candidate, `${label} entry`);

149+

return JSON.stringify(record.actions) === JSON.stringify(actions);

150+

});

151+

return requireRecord(entry, `${label} ${actions.join(",")} entry`);

152+

}

153+141154

describe("slackPlugin actions", () => {

142155

it("prefers session lookup for announce target routing", () => {

143156

expect(slackPlugin.meta.preferSessionLookupForAnnounceTarget).toBe(true);

@@ -158,16 +171,9 @@ describe("slackPlugin actions", () => {

158171159172

expect(discovery?.actions).toContain("send");

160173

expect(discovery?.capabilities).toContain("presentation");

161-

expect(discovery?.schema).toEqual(

162-

expect.arrayContaining([

163-

expect.objectContaining({

164-

actions: ["download-file"],

165-

properties: expect.objectContaining({

166-

fileId: expect.any(Object),

167-

}),

168-

}),

169-

]),

170-

);

174+

const downloadFile = findSchemaEntry(discovery?.schema, ["download-file"], "Slack schema");

175+

const downloadProperties = requireRecord(downloadFile.properties, "download-file properties");

176+

expect(isRecord(downloadProperties.fileId)).toBe(true);

171177

});

172178173179

it("honors the selected Slack account during message tool discovery", () => {

@@ -296,23 +302,18 @@ describe("slackPlugin actions", () => {

296302

},

297303

} as OpenClawConfig,

298304

});

299-

expect(discovery?.schema).toEqual(

300-

expect.arrayContaining([

301-

expect.objectContaining({

302-

actions: ["download-file"],

303-

properties: expect.objectContaining({

304-

fileId: expect.any(Object),

305-

}),

306-

}),

307-

expect.objectContaining({

308-

actions: ["react", "reactions", "edit", "delete", "pin", "unpin"],

309-

properties: expect.objectContaining({

310-

messageId: expect.any(Object),

311-

message_id: expect.any(Object),

312-

}),

313-

}),

314-

]),

305+

const downloadFile = findSchemaEntry(discovery?.schema, ["download-file"], "Slack schema");

306+

const downloadProperties = requireRecord(downloadFile.properties, "download-file properties");

307+

expect(isRecord(downloadProperties.fileId)).toBe(true);

308+309+

const messageActions = findSchemaEntry(

310+

discovery?.schema,

311+

["react", "reactions", "edit", "delete", "pin", "unpin"],

312+

"Slack schema",

315313

);

314+

const messageProperties = requireRecord(messageActions.properties, "message properties");

315+

expect(isRecord(messageProperties.messageId)).toBe(true);

316+

expect(isRecord(messageProperties.message_id)).toBe(true);

316317

});

317318318319

it("treats interactive reply payloads as structured Slack payloads", () => {

@@ -486,15 +487,18 @@ describe("slackPlugin status", () => {

486487

prevent_creation: true,

487488

return_im: true,

488489

});

489-

expect(route).toMatchObject({

490+

expectRecordFields(route, "Slack direct route", {

490491

sessionKey: "agent:main:slack:direct:u09g2dj0275:thread:1778110574.653649",

491492

baseSessionKey: "agent:main:slack:direct:u09g2dj0275",

492-

peer: { kind: "direct", id: "U09G2DJ0275" },

493493

chatType: "direct",

494494

from: "slack:U09G2DJ0275",

495495

to: "user:U09G2DJ0275",

496496

threadId: "1778110574.653649",

497497

});

498+

expectRecordFields(requireRecord(route?.peer, "Slack direct peer"), "Slack direct peer", {

499+

kind: "direct",

500+

id: "U09G2DJ0275",

501+

});

498502

});

499503500504

it("canonicalizes explicit channel-prefixed Slack IM targets for mirror routing", async () => {

@@ -524,10 +528,17 @@ describe("slackPlugin status", () => {

524528

target: "channel:D123",

525529

});

526530527-

expect(route).toMatchObject({

531+

expectRecordFields(route, "Slack explicit IM route", {

528532

sessionKey: "agent:main:slack:direct:u123",

529-

peer: { kind: "direct", id: "U123" },

530533

});

534+

expectRecordFields(

535+

requireRecord(route?.peer, "Slack explicit IM peer"),

536+

"Slack explicit IM peer",

537+

{

538+

kind: "direct",

539+

id: "U123",

540+

},

541+

);

531542

});

532543533544

it("skips mirror routing for unresolved Slack IM channel targets", async () => {

@@ -560,13 +571,16 @@ describe("slackPlugin status", () => {

560571

target: "G123",

561572

});

562573563-

expect(route).toMatchObject({

574+

expectRecordFields(route, "Slack MPIM route", {

564575

sessionKey: "agent:main:slack:group:g123",

565-

peer: { kind: "group", id: "G123" },

566576

chatType: "channel",

567577

from: "slack:group:G123",

568578

to: "channel:G123",

569579

});

580+

expectRecordFields(requireRecord(route?.peer, "Slack MPIM peer"), "Slack MPIM peer", {

581+

kind: "group",

582+

id: "G123",

583+

});

570584

});

571585

});

572586