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

推荐订阅源

IT之家
IT之家
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
A
About on SuperTechFans
博客园 - 聂微东
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
B
Blog RSS Feed
U
Unit 42
Stack Overflow Blog
Stack Overflow Blog
Recent Announcements
Recent Announcements
雷峰网
雷峰网
罗磊的独立博客
Microsoft Security Blog
Microsoft Security Blog
Hugging Face - Blog
Hugging Face - Blog
L
LangChain Blog
人人都是产品经理
人人都是产品经理
The GitHub Blog
The GitHub Blog
F
Fortinet All Blogs
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
H
Help Net Security
P
Proofpoint News Feed
The Cloudflare Blog
D
Docker
大猫的无限游戏
大猫的无限游戏

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
fix(matrix): preserve final mention delivery · openclaw/o...
vincentkoc · 2026-05-27 · via Recent Commits to openclaw:main

@@ -36,11 +36,21 @@ const prepareMatrixSingleTextMock = vi.hoisted(() =>

3636

};

3737

}),

3838

);

39+

const resolveMatrixMentionsForBodyMock = vi.hoisted(() =>

40+

vi.fn(async ({ body }: { body: string }) => {

41+

const userIds = Array.from(body.matchAll(/@[A-Za-z0-9._=/-]+:[^\s`<]+/g), (match) => match[0]);

42+

return {

43+

...(body.includes("@room") ? { room: true } : {}),

44+

...(userIds.length > 0 ? { user_ids: userIds } : {}),

45+

};

46+

}),

47+

);

39484049

vi.mock("../send.js", () => ({

4150

editMessageMatrix: editMessageMatrixMock,

4251

prepareMatrixSingleText: prepareMatrixSingleTextMock,

4352

reactMatrixMessage: vi.fn(async () => {}),

53+

resolveMatrixMentionsForBody: resolveMatrixMentionsForBodyMock,

4454

sendMessageMatrix: sendMessageMatrixMock,

4555

sendSingleTextMessageMatrix: sendSingleTextMessageMatrixMock,

4656

sendReadReceiptMatrix: vi.fn(async () => {}),

@@ -101,6 +111,7 @@ beforeEach(() => {

101111

fitsInSingleEvent: true,

102112

};

103113

});

114+

resolveMatrixMentionsForBodyMock.mockClear();

104115

});

105116106117

function createReactionHarness(params?: {

@@ -3110,6 +3121,32 @@ describe("matrix monitor handler draft streaming", () => {

31103121

await finish();

31113122

});

311231233124+

it("redacts partial previews before normal final delivery for unchanged Matrix mentions", async () => {

3125+

const { dispatch, redactEventMock } = createStreamingHarness({

3126+

blockStreamingEnabled: true,

3127+

streaming: "partial",

3128+

});

3129+

const { deliver, opts, finish } = await dispatch();

3130+3131+

opts.onPartialReply?.({ text: "hello @alice:example.org" });

3132+

await vi.waitFor(() => {

3133+

expect(sendSingleTextMessageMatrixMock).toHaveBeenCalledTimes(1);

3134+

});

3135+3136+

await deliver({ text: "hello @alice:example.org" }, { kind: "final" });

3137+3138+

expect(editMessageMatrixMock).not.toHaveBeenCalled();

3139+

expect(redactEventMock).toHaveBeenCalledWith("!room:example.org", "$draft1");

3140+

expect(deliverMatrixRepliesMock).toHaveBeenCalledTimes(1);

3141+

const deliverParams = requireRecord(

3142+

callArg(deliverMatrixRepliesMock, 0, 0, "deliver replies params"),

3143+

"deliver replies params",

3144+

);

3145+

const replies = requireArray(deliverParams.replies, "delivered replies");

3146+

expect(requireRecord(replies[0], "delivered reply").text).toBe("hello @alice:example.org");

3147+

await finish();

3148+

});

3149+31133150

it("keeps the draft preview and sends media-only for TTS supplement finals", async () => {

31143151

const { dispatch, redactEventMock } = createStreamingHarness({

31153152

blockStreamingEnabled: true,

@@ -3864,22 +3901,22 @@ describe("matrix monitor handler draft streaming", () => {

38643901

const { dispatch, redactEventMock } = createStreamingHarness({ streaming: "partial" });

38653902

const { deliver, opts, finish } = await dispatch();

386639033867-

opts.onPartialReply?.({ text: "@room screenshot ready" });

3904+

opts.onPartialReply?.({ text: "screenshot ready" });

38683905

await vi.waitFor(() => {

38693906

expect(sendSingleTextMessageMatrixMock).toHaveBeenCalledTimes(1);

38703907

});

3871390838723909

deliverMatrixRepliesMock.mockClear();

38733910

await deliver(

38743911

{

3875-

text: "@room screenshot ready",

3912+

text: "screenshot ready",

38763913

mediaUrl: "https://example.com/image.png",

38773914

},

38783915

{ kind: "final" },

38793916

);

3880391738813918

expect(editMessageMatrixMock).toHaveBeenCalledTimes(1);

3882-

expectEditLiveFlag("$draft1", "@room screenshot ready", false);

3919+

expectEditLiveFlag("$draft1", "screenshot ready", false);

38833920

expect(redactEventMock).not.toHaveBeenCalled();

38843921

expectDeliveredMediaReply();

38853922

await finish();

@@ -3889,26 +3926,58 @@ describe("matrix monitor handler draft streaming", () => {

38893926

const { dispatch, redactEventMock } = createStreamingHarness({ streaming: "quiet" });

38903927

const { deliver, opts, finish } = await dispatch();

389139283892-

opts.onPartialReply?.({ text: "@room screenshot ready" });

3929+

opts.onPartialReply?.({ text: "screenshot ready" });

38933930

await vi.waitFor(() => {

38943931

expect(sendSingleTextMessageMatrixMock).toHaveBeenCalledTimes(1);

38953932

});

3896393338973934

deliverMatrixRepliesMock.mockClear();

38983935

await deliver(

38993936

{

3900-

text: "@room screenshot ready",

3937+

text: "screenshot ready",

39013938

mediaUrl: "https://example.com/image.png",

39023939

},

39033940

{ kind: "final" },

39043941

);

390539423906-

expectFinalizedPreviewEdit("$draft1", "@room screenshot ready");

3943+

expectFinalizedPreviewEdit("$draft1", "screenshot ready");

39073944

expect(redactEventMock).not.toHaveBeenCalled();

39083945

expectDeliveredMediaReply();

39093946

await finish();

39103947

});

391139483949+

it("redacts unchanged media-caption previews before normal final delivery for Matrix mentions", async () => {

3950+

const { dispatch, redactEventMock } = createStreamingHarness({ streaming: "partial" });

3951+

const { deliver, opts, finish } = await dispatch();

3952+3953+

opts.onPartialReply?.({ text: "@room screenshot ready" });

3954+

await vi.waitFor(() => {

3955+

expect(sendSingleTextMessageMatrixMock).toHaveBeenCalledTimes(1);

3956+

});

3957+3958+

deliverMatrixRepliesMock.mockClear();

3959+

await deliver(

3960+

{

3961+

text: "@room screenshot ready",

3962+

mediaUrl: "https://example.com/image.png",

3963+

},

3964+

{ kind: "final" },

3965+

);

3966+3967+

expect(editMessageMatrixMock).not.toHaveBeenCalled();

3968+

expect(redactEventMock).toHaveBeenCalledWith("!room:example.org", "$draft1");

3969+

expect(deliverMatrixRepliesMock).toHaveBeenCalledTimes(1);

3970+

const deliverParams = requireRecord(

3971+

callArg(deliverMatrixRepliesMock, 0, 0, "deliver replies params"),

3972+

"deliver replies params",

3973+

);

3974+

const replies = requireArray(deliverParams.replies, "delivered replies");

3975+

const reply = requireRecord(replies[0], "delivered reply");

3976+

expect(reply.text).toBe("@room screenshot ready");

3977+

expect(reply.mediaUrl).toBe("https://example.com/image.png");

3978+

await finish();

3979+

});

3980+39123981

it("redacts stale draft and sends the final once when a later preview exceeds the event limit", async () => {

39133982

const { dispatch, redactEventMock } = createStreamingHarness();

39143983

const { deliver, opts, finish } = await dispatch();