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

推荐订阅源

B
Blog
D
Docker
J
Java Code Geeks
腾讯CDC
Blog — PlanetScale
Blog — PlanetScale
G
Google Developers Blog
M
MIT News - Artificial intelligence
L
LangChain Blog
T
The Blog of Author Tim Ferriss
P
Proofpoint News Feed
MyScale Blog
MyScale Blog
博客园 - Franky
GbyAI
GbyAI
Hugging Face - Blog
Hugging Face - Blog
aimingoo的专栏
aimingoo的专栏
Last Week in AI
Last Week in AI
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园 - 聂微东
N
Netflix TechBlog - Medium
B
Blog RSS Feed
Y
Y Combinator Blog
阮一峰的网络日志
阮一峰的网络日志
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Google DeepMind News
Google DeepMind News

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 channel outbound bridge assertions · opencl...
steipete · 2026-05-10 · via Recent Commits to openclaw:main

@@ -1,13 +1,20 @@

11

import { describe, expect, it, vi } from "vitest";

22

import type { OpenClawConfig } from "../../config/types.openclaw.js";

33

import { createChannelMessageAdapterFromOutbound } from "./outbound-bridge.js";

4-

import type { MessageReceipt } from "./types.js";

4+

import type {

5+

ChannelMessageSendPayloadContext,

6+

ChannelMessageSendTextContext,

7+

MessageReceipt,

8+

} from "./types.js";

59610

const cfg = {} as OpenClawConfig;

711812

describe("createChannelMessageAdapterFromOutbound", () => {

913

it("wraps outbound text sends with a message receipt", async () => {

10-

const sendText = vi.fn(async () => ({ channel: "demo", messageId: "msg-1" }));

14+

const sendText = vi.fn(async (_request: ChannelMessageSendTextContext) => ({

15+

channel: "demo",

16+

messageId: "msg-1",

17+

}));

1118

const adapter = createChannelMessageAdapterFromOutbound({

1219

id: "demo",

1320

outbound: {

@@ -24,37 +31,34 @@ describe("createChannelMessageAdapterFromOutbound", () => {

2431

threadId: "thread-1",

2532

});

263327-

expect(adapter).toEqual(

28-

expect.objectContaining({

29-

id: "demo",

30-

durableFinal: { capabilities: { text: true, replyTo: true } },

31-

}),

32-

);

33-

expect(sendText).toHaveBeenCalledWith(

34-

expect.objectContaining({

35-

to: "room-1",

36-

text: "hello",

37-

replyToId: "parent-1",

38-

threadId: "thread-1",

39-

}),

40-

);

41-

expect(result).toEqual({

42-

messageId: "msg-1",

43-

receipt: expect.objectContaining({

44-

primaryPlatformMessageId: "msg-1",

45-

platformMessageIds: ["msg-1"],

34+

expect(adapter.id).toBe("demo");

35+

expect(adapter.durableFinal).toEqual({ capabilities: { text: true, replyTo: true } });

36+

expect(sendText).toHaveBeenCalledTimes(1);

37+

const sendTextRequest = sendText.mock.calls[0]?.[0];

38+

expect(sendTextRequest?.to).toBe("room-1");

39+

expect(sendTextRequest?.text).toBe("hello");

40+

expect(sendTextRequest?.replyToId).toBe("parent-1");

41+

expect(sendTextRequest?.threadId).toBe("thread-1");

42+

expect(result?.messageId).toBe("msg-1");

43+

expect(result?.receipt.primaryPlatformMessageId).toBe("msg-1");

44+

expect(result?.receipt.platformMessageIds).toEqual(["msg-1"]);

45+

expect(result?.receipt.threadId).toBe("thread-1");

46+

expect(result?.receipt.replyToId).toBe("parent-1");

47+

expect(

48+

result?.receipt.parts.map(({ platformMessageId, kind, threadId, replyToId }) => ({

49+

platformMessageId,

50+

kind,

51+

threadId,

52+

replyToId,

53+

})),

54+

).toEqual([

55+

{

56+

platformMessageId: "msg-1",

57+

kind: "text",

4658

threadId: "thread-1",

4759

replyToId: "parent-1",

48-

parts: [

49-

expect.objectContaining({

50-

platformMessageId: "msg-1",

51-

kind: "text",

52-

threadId: "thread-1",

53-

replyToId: "parent-1",

54-

}),

55-

],

56-

}),

57-

});

60+

},

61+

]);

5862

});

59636064

it("preserves an outbound receipt instead of rebuilding it", async () => {

@@ -85,7 +89,10 @@ describe("createChannelMessageAdapterFromOutbound", () => {

8589

});

86908791

it("wraps rich payload sends and infers the receipt part kind", async () => {

88-

const sendPayload = vi.fn(async () => ({ channel: "demo", messageId: "card-1" }));

92+

const sendPayload = vi.fn(async (_request: ChannelMessageSendPayloadContext) => ({

93+

channel: "demo",

94+

messageId: "card-1",

95+

}));

8996

const adapter = createChannelMessageAdapterFromOutbound({

9097

capabilities: { payload: true, batch: true },

9198

outbound: { sendPayload },

@@ -101,16 +108,12 @@ describe("createChannelMessageAdapterFromOutbound", () => {

101108

});

102109103110

expect(adapter.durableFinal?.capabilities).toEqual({ payload: true, batch: true });

104-

expect(sendPayload).toHaveBeenCalledWith(

105-

expect.objectContaining({

106-

payload: {

107-

presentation: { blocks: [{ type: "text", text: "ready" }] },

108-

},

109-

}),

110-

);

111-

expect(result?.receipt.parts[0]).toEqual(

112-

expect.objectContaining({ platformMessageId: "card-1", kind: "card" }),

113-

);

111+

expect(sendPayload).toHaveBeenCalledTimes(1);

112+

expect(sendPayload.mock.calls[0]?.[0].payload).toEqual({

113+

presentation: { blocks: [{ type: "text", text: "ready" }] },

114+

});

115+

expect(result?.receipt.parts[0]?.platformMessageId).toBe("card-1");

116+

expect(result?.receipt.parts[0]?.kind).toBe("card");

114117

});

115118116119

it("exposes only send methods backed by outbound handlers", async () => {

@@ -125,13 +128,10 @@ describe("createChannelMessageAdapterFromOutbound", () => {

125128

throw new Error("expected text send adapter");

126129

}

127130128-

await expect(sendText({ cfg, to: "room-1", text: "hello" })).resolves.toEqual({

129-

messageId: "msg-1",

130-

receipt: expect.objectContaining({

131-

primaryPlatformMessageId: "msg-1",

132-

platformMessageIds: ["msg-1"],

133-

}),

134-

});

131+

const result = await sendText({ cfg, to: "room-1", text: "hello" });

132+

expect(result.messageId).toBe("msg-1");

133+

expect(result.receipt.primaryPlatformMessageId).toBe("msg-1");

134+

expect(result.receipt.platformMessageIds).toEqual(["msg-1"]);

135135

expect(adapter.send?.media).toBeUndefined();

136136

expect(adapter.send?.payload).toBeUndefined();

137137

});