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

推荐订阅源

有赞技术团队
有赞技术团队
H
Hackread – Cybersecurity News, Data Breaches, AI and More
I
InfoQ
J
Java Code Geeks
Microsoft Security Blog
Microsoft Security Blog
G
Google Developers Blog
D
DataBreaches.Net
Recent Announcements
Recent Announcements
Microsoft Azure Blog
Microsoft Azure Blog
B
Blog RSS Feed
Y
Y Combinator Blog
博客园 - 【当耐特】
博客园 - 聂微东
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
大猫的无限游戏
大猫的无限游戏
P
Proofpoint News Feed
量子位
C
Check Point Blog
F
Fortinet All Blogs
罗磊的独立博客
Last Week in AI
Last Week in AI
GbyAI
GbyAI
L
LangChain Blog
博客园 - 司徒正美

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(feishu): repair media-aware message dedupe (#76408) ·...
clawsweeper · 2026-05-03 · via Recent Commits to openclaw:main

@@ -5,6 +5,7 @@ import { beforeEach, describe, expect, it, vi } from "vitest";

55

import type { ClawdbotConfig, PluginRuntime } from "../runtime-api.js";

66

import type { FeishuMessageEvent } from "./bot.js";

77

import { handleFeishuMessage } from "./bot.js";

8+

import { createFeishuMessageReceiveHandler } from "./monitor.message-handler.js";

89

import { setFeishuRuntime } from "./runtime.js";

9101011

type ConfiguredBindingRoute = ReturnType<typeof ConversationRuntime.resolveConfiguredBindingRoute>;

@@ -3000,6 +3001,58 @@ describe("handleFeishuMessage command authorization", () => {

30003001

expect(mockDispatchReplyFromConfig).toHaveBeenCalledTimes(1);

30013002

});

300230033004+

it("dedupes Feishu media by message_id plus file_key", async () => {

3005+

mockShouldComputeCommandAuthorized.mockReturnValue(false);

3006+3007+

const cfg: ClawdbotConfig = {

3008+

channels: {

3009+

feishu: {

3010+

dmPolicy: "open",

3011+

},

3012+

},

3013+

} as ClawdbotConfig;

3014+

const createAudioEvent = (fileKey: string): FeishuMessageEvent => ({

3015+

sender: {

3016+

sender_id: {

3017+

open_id: "ou-audio-dedup",

3018+

},

3019+

},

3020+

message: {

3021+

message_id: "msg-audio-reused-id",

3022+

chat_id: "oc-dm",

3023+

chat_type: "p2p",

3024+

message_type: "audio",

3025+

content: JSON.stringify({

3026+

file_key: fileKey,

3027+

duration: 1200,

3028+

}),

3029+

},

3030+

});

3031+3032+

await dispatchMessage({ cfg, event: createAudioEvent("file_audio_first") });

3033+

await dispatchMessage({ cfg, event: createAudioEvent("file_audio_second") });

3034+

await dispatchMessage({ cfg, event: createAudioEvent("file_audio_first") });

3035+3036+

expect(mockDispatchReplyFromConfig).toHaveBeenCalledTimes(2);

3037+

expect(mockDownloadMessageResourceFeishu).toHaveBeenCalledTimes(2);

3038+

expect(mockDownloadMessageResourceFeishu).toHaveBeenNthCalledWith(

3039+

1,

3040+

expect.objectContaining({

3041+

messageId: "msg-audio-reused-id",

3042+

fileKey: "file_audio_first",

3043+

type: "file",

3044+

}),

3045+

);

3046+

expect(mockDownloadMessageResourceFeishu).toHaveBeenNthCalledWith(

3047+

2,

3048+

expect.objectContaining({

3049+

messageId: "msg-audio-reused-id",

3050+

fileKey: "file_audio_second",

3051+

type: "file",

3052+

}),

3053+

);

3054+

});

3055+30033056

it("skips empty-text messages with no media to prevent blank user turns in session (#74634)", async () => {

30043057

// Feishu can deliver { "text": "" } events (empty-text or media-stripped

30053058

// messages). Writing blank user content to the session causes downstream

@@ -3038,3 +3091,73 @@ describe("handleFeishuMessage command authorization", () => {

30383091

expect(mockDispatchReplyFromConfig).not.toHaveBeenCalled();

30393092

});

30403093

});

3094+3095+

describe("createFeishuMessageReceiveHandler media dedupe", () => {

3096+

it("keeps same-id media variants distinct at receive time", async () => {

3097+

const handleMessage = vi.fn(async () => undefined);

3098+

const core = {

3099+

channel: {

3100+

debounce: {

3101+

resolveInboundDebounceMs: vi.fn(() => 0),

3102+

createInboundDebouncer: vi.fn(

3103+

(options: { onFlush: (entries: FeishuMessageEvent[]) => Promise<void> | void }) => ({

3104+

enqueue: async (event: FeishuMessageEvent) => {

3105+

await options.onFlush([event]);

3106+

},

3107+

}),

3108+

),

3109+

},

3110+

text: {

3111+

hasControlCommand: vi.fn(() => false),

3112+

},

3113+

},

3114+

} as unknown as PluginRuntime;

3115+

const createAudioEvent = (fileKey: string): FeishuMessageEvent => ({

3116+

sender: {

3117+

sender_id: {

3118+

open_id: "ou-audio-receive-dedup",

3119+

},

3120+

},

3121+

message: {

3122+

message_id: "msg-audio-receive-reused-id",

3123+

chat_id: "oc-dm",

3124+

chat_type: "p2p",

3125+

message_type: "audio",

3126+

content: JSON.stringify({

3127+

file_key: fileKey,

3128+

duration: 1200,

3129+

}),

3130+

},

3131+

});

3132+

const handler = createFeishuMessageReceiveHandler({

3133+

cfg: { channels: { feishu: { dmPolicy: "open" } } } as ClawdbotConfig,

3134+

core,

3135+

accountId: "receive-media-dedupe",

3136+

chatHistories: new Map(),

3137+

handleMessage,

3138+

resolveDebounceText: () => "",

3139+

hasProcessedMessage: vi.fn(async () => false),

3140+

recordProcessedMessage: vi.fn(async () => true),

3141+

});

3142+3143+

await handler(createAudioEvent("file_audio_receive_first"));

3144+

await handler(createAudioEvent("file_audio_receive_second"));

3145+

await handler(createAudioEvent("file_audio_receive_first"));

3146+3147+

expect(handleMessage).toHaveBeenCalledTimes(2);

3148+

expect(handleMessage).toHaveBeenNthCalledWith(

3149+

1,

3150+

expect.objectContaining({

3151+

event: createAudioEvent("file_audio_receive_first"),

3152+

processingClaimHeld: true,

3153+

}),

3154+

);

3155+

expect(handleMessage).toHaveBeenNthCalledWith(

3156+

2,

3157+

expect.objectContaining({

3158+

event: createAudioEvent("file_audio_receive_second"),

3159+

processingClaimHeld: true,

3160+

}),

3161+

);

3162+

});

3163+

});