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

推荐订阅源

宝玉的分享
宝玉的分享
小众软件
小众软件
J
Java Code Geeks
I
InfoQ
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
腾讯CDC
L
LangChain Blog
博客园 - 司徒正美
量子位
Y
Y Combinator Blog
C
Check Point Blog
T
Tailwind CSS Blog
D
DataBreaches.Net
Blog — PlanetScale
Blog — PlanetScale
N
Netflix TechBlog - Medium
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
F
Fortinet All Blogs
云风的 BLOG
云风的 BLOG
A
About on SuperTechFans
B
Blog RSS Feed
酷 壳 – CoolShell
酷 壳 – CoolShell
大猫的无限游戏
大猫的无限游戏
V
V2EX
阮一峰的网络日志
阮一峰的网络日志

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): finish streaming card closeout · openclaw/op...
vincentkoc · 2026-04-25 · via Recent Commits to openclaw:main

@@ -491,6 +491,64 @@ describe("createFeishuReplyDispatcher streaming behavior", () => {

491491

});

492492

});

493493494+

it("preserves previous generation blocks when partial snapshots reset after tools", async () => {

495+

resolveFeishuAccountMock.mockReturnValue({

496+

accountId: "main",

497+

appId: "app_id",

498+

appSecret: "app_secret",

499+

domain: "feishu",

500+

config: {

501+

renderMode: "card",

502+

streaming: true,

503+

},

504+

});

505+506+

const { result, options } = createDispatcherHarness({

507+

runtime: createRuntimeLogger(),

508+

});

509+

await options.onReplyStart?.();

510+

result.replyOptions.onPartialReply?.({

511+

text: "Preparing the lookup plan with enough text to count as one block.",

512+

});

513+

result.replyOptions.onPartialReply?.({ text: "Found" });

514+

result.replyOptions.onPartialReply?.({ text: "Found the answer." });

515+

await options.onIdle?.();

516+517+

expect(streamingInstances).toHaveLength(1);

518+

expect(streamingInstances[0].close).toHaveBeenCalledWith(

519+

"Preparing the lookup plan with enough text to count as one block.Found the answer.",

520+

{

521+

note: "Agent: agent",

522+

},

523+

);

524+

});

525+526+

it("strips reasoning tags from streamed partial snapshots", async () => {

527+

resolveFeishuAccountMock.mockReturnValue({

528+

accountId: "main",

529+

appId: "app_id",

530+

appSecret: "app_secret",

531+

domain: "feishu",

532+

config: {

533+

renderMode: "card",

534+

streaming: true,

535+

},

536+

});

537+538+

const { result, options } = createDispatcherHarness({

539+

runtime: createRuntimeLogger(),

540+

});

541+

await options.onReplyStart?.();

542+

result.replyOptions.onPartialReply?.({

543+

text: "<thinking>private chain of thought</thinking>\nvisible answer",

544+

});

545+

await options.onIdle?.();

546+547+

expect(streamingInstances[0].close).toHaveBeenCalledWith("visible answer", {

548+

note: "Agent: agent",

549+

});

550+

});

551+494552

it("sends media-only payloads as attachments", async () => {

495553

const { options } = createDispatcherHarness();

496554

await options.deliver({ mediaUrl: "https://example.com/a.png" }, { kind: "final" });

@@ -757,7 +815,7 @@ describe("createFeishuReplyDispatcher streaming behavior", () => {

757815

);

758816

});

759817760-

it("disables streaming for thread replies and keeps reply metadata", async () => {

818+

it("uses streaming cards for thread replies and keeps topic metadata", async () => {

761819

const { options } = createDispatcherHarness({

762820

runtime: createRuntimeLogger(),

763821

replyToMessageId: "om_msg",

@@ -767,13 +825,127 @@ describe("createFeishuReplyDispatcher streaming behavior", () => {

767825

});

768826

await options.deliver({ text: "```ts\nconst x = 1\n```" }, { kind: "final" });

769827770-

expect(streamingInstances).toHaveLength(0);

771-

expect(sendStructuredCardFeishuMock).toHaveBeenCalledWith(

828+

expect(streamingInstances).toHaveLength(1);

829+

expect(streamingInstances[0].start).toHaveBeenCalledWith(

830+

"oc_chat",

831+

"chat_id",

772832

expect.objectContaining({

773833

replyToMessageId: "om_msg",

774834

replyInThread: true,

835+

rootId: "om_root_topic",

775836

}),

776837

);

838+

expect(sendStructuredCardFeishuMock).not.toHaveBeenCalled();

839+

});

840+841+

it("omits the generic main header from streaming and static cards", async () => {

842+

resolveFeishuAccountMock.mockReturnValue({

843+

accountId: "main",

844+

appId: "app_id",

845+

appSecret: "app_secret",

846+

domain: "feishu",

847+

config: {

848+

renderMode: "card",

849+

streaming: true,

850+

},

851+

});

852+853+

const { options } = createDispatcherHarness({

854+

agentId: "main",

855+

runtime: createRuntimeLogger(),

856+

});

857+

await options.deliver({ text: "streamed card" }, { kind: "final" });

858+

await options.onIdle?.();

859+860+

expect(streamingInstances[0].start).toHaveBeenCalledWith(

861+

"oc_chat",

862+

"chat_id",

863+

expect.objectContaining({

864+

header: undefined,

865+

}),

866+

);

867+868+

resolveFeishuAccountMock.mockReturnValue({

869+

accountId: "main",

870+

appId: "app_id",

871+

appSecret: "app_secret",

872+

domain: "feishu",

873+

config: {

874+

renderMode: "card",

875+

streaming: false,

876+

},

877+

});

878+879+

const { options: staticOptions } = createDispatcherHarness({

880+

agentId: "main",

881+

runtime: createRuntimeLogger(),

882+

});

883+

await staticOptions.deliver({ text: "static card" }, { kind: "final" });

884+885+

expect(sendStructuredCardFeishuMock).toHaveBeenCalledWith(

886+

expect.objectContaining({

887+

header: undefined,

888+

}),

889+

);

890+

});

891+892+

it("shows transient tool status on streaming cards but omits it from the final close", async () => {

893+

resolveFeishuAccountMock.mockReturnValue({

894+

accountId: "main",

895+

appId: "app_id",

896+

appSecret: "app_secret",

897+

domain: "feishu",

898+

config: {

899+

renderMode: "card",

900+

streaming: true,

901+

},

902+

});

903+904+

const { result, options } = createDispatcherHarness({

905+

runtime: createRuntimeLogger(),

906+

});

907+

await options.onReplyStart?.();

908+

result.replyOptions.onToolStart?.({ name: "web_search" });

909+

result.replyOptions.onPartialReply?.({ text: "final answer" });

910+

await options.onIdle?.();

911+912+

const updateTexts = streamingInstances[0].update.mock.calls.map((call: unknown[]) =>

913+

typeof call[0] === "string" ? call[0] : "",

914+

);

915+

expect(updateTexts.some((text) => text.includes("Using: web_search"))).toBe(true);

916+

expect(streamingInstances[0].close).toHaveBeenCalledWith("final answer", {

917+

note: "Agent: agent",

918+

});

919+

});

920+921+

it("cleans streaming state even when close throws", async () => {

922+

const origPush = streamingInstances.push.bind(streamingInstances);

923+

streamingInstances.push = (...args: StreamingSessionStub[]) => {

924+

if (args.length > 0 && streamingInstances.length === 0) {

925+

args[0].close = vi.fn(async () => {

926+

args[0].active = false;

927+

throw new Error("close failed");

928+

});

929+

}

930+

return origPush(...args);

931+

};

932+933+

try {

934+

const { options } = createDispatcherHarness({

935+

runtime: createRuntimeLogger(),

936+

});

937+

await options.deliver({ text: "```md\nfirst\n```" }, { kind: "final" });

938+

await expect(options.onIdle?.()).rejects.toThrow("close failed");

939+

await options.deliver({ text: "```md\nsecond\n```" }, { kind: "final" });

940+

await options.onIdle?.();

941+942+

expect(streamingInstances).toHaveLength(2);

943+

expect(streamingInstances[1].close).toHaveBeenCalledWith("```md\nsecond\n```", {

944+

note: "Agent: agent",

945+

});

946+

} finally {

947+

streamingInstances.push = origPush;

948+

}

777949

});

778950779951

it("passes replyInThread to media attachments", async () => {