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

推荐订阅源

Stack Overflow Blog
Stack Overflow Blog
Vercel News
Vercel News
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
J
Java Code Geeks
M
MIT News - Artificial intelligence
Microsoft Azure Blog
Microsoft Azure Blog
B
Blog RSS Feed
MongoDB | Blog
MongoDB | Blog
G
Google Developers Blog
Engineering at Meta
Engineering at Meta
量子位
S
SegmentFault 最新的问题
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
A
About on SuperTechFans
P
Proofpoint News Feed
Last Week in AI
Last Week in AI
Recent Announcements
Recent Announcements
腾讯CDC
I
InfoQ
F
Fortinet All Blogs
Hugging Face - Blog
Hugging Face - Blog
Blog — PlanetScale
Blog — PlanetScale
H
Help Net Security
爱范儿
爱范儿

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

@@ -188,35 +188,23 @@ describe("openclaw channel mcp server", () => {

188188

});

189189

attachReadyGateway(bridge, gatewayRequest);

190190191-

await expect(bridge.listConversations()).resolves.toEqual(

192-

expect.arrayContaining([

193-

expect.objectContaining({

194-

sessionKey,

195-

channel: "telegram",

196-

to: "-100123",

197-

accountId: "acct-1",

198-

threadId: 42,

199-

}),

200-

]),

201-

);

191+

const conversations = await bridge.listConversations();

192+

expect(conversations).toHaveLength(1);

193+

expect(conversations[0]?.sessionKey).toBe(sessionKey);

194+

expect(conversations[0]?.channel).toBe("telegram");

195+

expect(conversations[0]?.to).toBe("-100123");

196+

expect(conversations[0]?.accountId).toBe("acct-1");

197+

expect(conversations[0]?.threadId).toBe(42);

202198203199

const messages = await bridge.readMessages(sessionKey, 5);

204-

expect(messages[0]).toMatchObject({

205-

role: "assistant",

206-

content: [{ type: "text", text: "hello from transcript" }],

207-

});

208-

expect(messages[1]).toMatchObject({

209-

__openclaw: {

210-

id: "msg-attachment",

211-

},

212-

});

213-

expect(extractAttachmentsFromMessage(messages[1])).toEqual(

214-

expect.arrayContaining([

215-

expect.objectContaining({

216-

type: "image",

217-

}),

218-

]),

219-

);

200+

expect(messages[0]?.role).toBe("assistant");

201+

expect(messages[0]?.content).toEqual([{ type: "text", text: "hello from transcript" }]);

202+

expect((messages[1]?.__openclaw as { id?: string } | undefined)?.id).toBe("msg-attachment");

203+

expect(

204+

extractAttachmentsFromMessage(messages[1]).some(

205+

(entry) => (entry as { type?: unknown }).type === "image",

206+

),

207+

).toBe(true);

220208

});

221209222210

test("serializes conversation and message payloads into MCP primary content", async () => {

@@ -306,15 +294,11 @@ describe("openclaw channel mcp server", () => {

306294307295

await flushMcpNotifications();

308296

expect(channelNotifications).toHaveLength(1);

309-

expect(channelNotifications[0]).toMatchObject({

310-

content: "hello Claude",

311-

meta: expect.objectContaining({

312-

session_key: sessionKey,

313-

channel: "imessage",

314-

to: "+15551234567",

315-

message_id: "msg-user-1",

316-

}),

317-

});

297+

expect(channelNotifications[0]?.content).toBe("hello Claude");

298+

expect(channelNotifications[0]?.meta.session_key).toBe(sessionKey);

299+

expect(channelNotifications[0]?.meta.channel).toBe("imessage");

300+

expect(channelNotifications[0]?.meta.to).toBe("+15551234567");

301+

expect(channelNotifications[0]?.meta.message_id).toBe("msg-user-1");

318302319303

await mcp.client.notification({

320304

method: "notifications/claude/channel/permission_request",

@@ -367,13 +351,9 @@ describe("openclaw channel mcp server", () => {

367351368352

await flushMcpNotifications();

369353

expect(channelNotifications).toHaveLength(2);

370-

expect(channelNotifications[1]).toMatchObject({

371-

content: "plain string user turn",

372-

meta: expect.objectContaining({

373-

session_key: sessionKey,

374-

message_id: "msg-user-3",

375-

}),

376-

});

354+

expect(channelNotifications[1]?.content).toBe("plain string user turn");

355+

expect(channelNotifications[1]?.meta.session_key).toBe(sessionKey);

356+

expect(channelNotifications[1]?.meta.message_id).toBe("msg-user-3");

377357

} finally {

378358

await mcp?.close();

379359

}

@@ -402,17 +382,16 @@ describe("openclaw channel mcp server", () => {

402382

text: "reply from mcp",

403383

});

404384405-

expect(gatewayRequest).toHaveBeenCalledWith(

406-

"send",

407-

expect.objectContaining({

408-

to: "-100123",

409-

channel: "telegram",

410-

accountId: "acct-1",

411-

threadId: "42",

412-

sessionKey: "agent:main:main",

413-

message: "reply from mcp",

414-

}),

415-

);

385+

expect(gatewayRequest).toHaveBeenCalledTimes(1);

386+

const [method, payload] = gatewayRequest.mock.calls[0] ?? [];

387+

expect(method).toBe("send");

388+

const sendPayload = payload as Record<string, unknown>;

389+

expect(sendPayload.to).toBe("-100123");

390+

expect(sendPayload.channel).toBe("telegram");

391+

expect(sendPayload.accountId).toBe("acct-1");

392+

expect(sendPayload.threadId).toBe("42");

393+

expect(sendPayload.sessionKey).toBe("agent:main:main");

394+

expect(sendPayload.message).toBe("reply from mcp");

416395

});

417396418397

test("gets one conversation through sessions.describe without broad listing", async () => {

@@ -439,15 +418,12 @@ describe("openclaw channel mcp server", () => {

439418440419

attachReadyGateway(bridge, gatewayRequest);

441420442-

await expect(bridge.getConversation("agent:main:main")).resolves.toEqual(

443-

expect.objectContaining({

444-

sessionKey: "agent:main:main",

445-

channel: "telegram",

446-

to: "-100123",

447-

accountId: "acct-1",

448-

lastMessagePreview: "latest message",

449-

}),

450-

);

421+

const conversation = await bridge.getConversation("agent:main:main");

422+

expect(conversation?.sessionKey).toBe("agent:main:main");

423+

expect(conversation?.channel).toBe("telegram");

424+

expect(conversation?.to).toBe("-100123");

425+

expect(conversation?.accountId).toBe("acct-1");

426+

expect(conversation?.lastMessagePreview).toBe("latest message");

451427

expect(gatewayRequest).toHaveBeenCalledWith("sessions.describe", {

452428

key: "agent:main:main",

453429

includeDerivedTitles: true,

@@ -483,20 +459,16 @@ describe("openclaw channel mcp server", () => {

483459484460

attachReadyGateway(bridge, gatewayRequest);

485461486-

await expect(bridge.listConversations()).resolves.toEqual([

487-

expect.objectContaining({

488-

sessionKey: "agent:main:channel-field",

489-

channel: "telegram",

490-

to: "-100111",

491-

}),

492-

expect.objectContaining({

493-

sessionKey: "agent:main:origin-field",

494-

channel: "imessage",

495-

to: "+15551230000",

496-

accountId: "imessage-default",

497-

threadId: "thread-7",

498-

}),

499-

]);

462+

const conversations = await bridge.listConversations();

463+

expect(conversations).toHaveLength(2);

464+

expect(conversations[0]?.sessionKey).toBe("agent:main:channel-field");

465+

expect(conversations[0]?.channel).toBe("telegram");

466+

expect(conversations[0]?.to).toBe("-100111");

467+

expect(conversations[1]?.sessionKey).toBe("agent:main:origin-field");

468+

expect(conversations[1]?.channel).toBe("imessage");

469+

expect(conversations[1]?.to).toBe("+15551230000");

470+

expect(conversations[1]?.accountId).toBe("imessage-default");

471+

expect(conversations[1]?.threadId).toBe("thread-7");

500472

});

501473502474

test("swallows notification send errors after channel replies are matched", async () => {

@@ -567,13 +539,11 @@ describe("openclaw channel mcp server", () => {

567539

})) as {

568540

structuredContent?: { event?: Record<string, unknown> };

569541

};

570-

expect(waited.structuredContent?.event).toMatchObject({

571-

type: "message",

572-

sessionKey: "agent:main:main",

573-

messageId: "msg-2",

574-

role: "user",

575-

text: "inbound live message",

576-

});

542+

expect(waited.structuredContent?.event?.type).toBe("message");

543+

expect(waited.structuredContent?.event?.sessionKey).toBe("agent:main:main");

544+

expect(waited.structuredContent?.event?.messageId).toBe("msg-2");

545+

expect(waited.structuredContent?.event?.role).toBe("user");

546+

expect(waited.structuredContent?.event?.text).toBe("inbound live message");

577547

} finally {

578548

await mcp.close();

579549

}