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

推荐订阅源

MongoDB | Blog
MongoDB | Blog
J
Java Code Geeks
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
D
DataBreaches.Net
腾讯CDC
GbyAI
GbyAI
I
InfoQ
博客园 - Franky
G
Google Developers Blog
Last Week in AI
Last Week in AI
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
V
Visual Studio Blog
Vercel News
Vercel News
博客园_首页
MyScale Blog
MyScale Blog
Martin Fowler
Martin Fowler
N
Netflix TechBlog - Medium
V
V2EX
T
The Blog of Author Tim Ferriss
M
MIT News - Artificial intelligence
雷峰网
雷峰网
H
Hackread – Cybersecurity News, Data Breaches, AI and More
大猫的无限游戏
大猫的无限游戏
The GitHub Blog
The GitHub 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
test(telegram): cover retained preview chunk gaps · openc...
obviyus · 2026-06-28 · via Recent Commits to openclaw:main

@@ -228,10 +228,7 @@ describe("createLaneTextDeliverer", () => {

228228

expect(answer.update).toHaveBeenCalledWith(previousBlock);

229229

expect(answer.update).not.toHaveBeenCalledWith(nextAssistantBlock);

230230

expect(harness.clearDraftLane).toHaveBeenCalledTimes(1);

231-

expect(harness.sendPayload).toHaveBeenCalledWith(

232-

{ text: previousBlock },

233-

{ durable: false },

234-

);

231+

expect(harness.sendPayload).toHaveBeenCalledWith({ text: previousBlock }, { durable: false });

235232

expect(harness.sendPayload).not.toHaveBeenCalledWith(

236233

{ text: nextAssistantBlock },

237234

expect.anything(),

@@ -924,7 +921,7 @@ describe("createLaneTextDeliverer", () => {

924921

expect(harness.markDelivered).toHaveBeenCalledTimes(1);

925922

});

926923927-

it("does not resend chunks retained while stopping a long streamed final", async () => {

924+

it("sends chunks after the reported delivered text when stop advances the retained index", async () => {

928925

const answer = createTestDraftStream({ messageId: 999 });

929926

const harness = createHarness({

930927

answerStream: answer,

@@ -940,11 +937,35 @@ describe("createLaneTextDeliverer", () => {

940937941938

const delivery = expectPreviewFinalized(result);

942939

expect(delivery.content).toBe("Hello world again");

943-

expect(harness.sendPayload).toHaveBeenCalledTimes(1);

944-

expect(harness.sendPayload).toHaveBeenCalledWith({ text: " again" });

940+

expect(delivery.promptContextContent).toBe("Hello");

941+

expect(harness.sendPayload).toHaveBeenCalledTimes(2);

942+

expect(harness.sendPayload).toHaveBeenNthCalledWith(1, { text: " world" });

943+

expect(harness.sendPayload).toHaveBeenNthCalledWith(2, { text: " again" });

945944

expect(harness.markDelivered).toHaveBeenCalledTimes(1);

946945

});

947946947+

it("does not skip middle chunks when stop advances past the reported delivered chunk", async () => {

948+

const answer = createTestDraftStream({ messageId: 999 });

949+

const harness = createHarness({

950+

answerStream: answer,

951+

draftMaxChars: 6,

952+

splitFinalTextForStream: () => ["chunk0", "chunk1", "chunk2", "chunk3"],

953+

});

954+

harness.lanes.answer.hasStreamedMessage = true;

955+

answer.stop.mockImplementation(async () => {

956+

harness.lanes.answer.activeChunkIndex = 2;

957+

});

958+959+

const result = await deliverFinalAnswer(harness, "chunk0chunk1chunk2chunk3");

960+961+

const delivery = expectPreviewFinalized(result);

962+

expect(delivery.promptContextContent).toBe("chunk0");

963+

expect(harness.sendPayload).toHaveBeenCalledTimes(3);

964+

expect(harness.sendPayload).toHaveBeenNthCalledWith(1, { text: "chunk1" });

965+

expect(harness.sendPayload).toHaveBeenNthCalledWith(2, { text: "chunk2" });

966+

expect(harness.sendPayload).toHaveBeenNthCalledWith(3, { text: "chunk3" });

967+

});

968+948969

it("compares retained delivered prefixes against the full final text", async () => {

949970

let deliveredText = "Hello";

950971

const answer = createTestDraftStream({ messageId: 999 });

@@ -995,11 +1016,15 @@ describe("createLaneTextDeliverer", () => {

9951016

expect(harness.editStreamMessage).toHaveBeenCalledWith({

9961017

laneName: "answer",

9971018

messageId: 999,

998-

text: " world",

1019+

text: "Hello",

9991020

buttons,

10001021

});

1001-

expect(harness.sendPayload).toHaveBeenCalledTimes(1);

1002-

expect(harness.sendPayload).toHaveBeenCalledWith({

1022+

expect(harness.sendPayload).toHaveBeenCalledTimes(2);

1023+

expect(harness.sendPayload).toHaveBeenNthCalledWith(1, {

1024+

text: " world",

1025+

channelData: { telegram: { buttons } },

1026+

});

1027+

expect(harness.sendPayload).toHaveBeenNthCalledWith(2, {

10031028

text: " again",

10041029

channelData: { telegram: { buttons } },

10051030

});