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

推荐订阅源

D
DataBreaches.Net
L
LangChain Blog
博客园_首页
J
Java Code Geeks
博客园 - 【当耐特】
Microsoft Azure Blog
Microsoft Azure Blog
小众软件
小众软件
WordPress大学
WordPress大学
V
Visual Studio Blog
T
The Blog of Author Tim Ferriss
U
Unit 42
酷 壳 – CoolShell
酷 壳 – CoolShell
Recent Announcements
Recent Announcements
C
Check Point Blog
IT之家
IT之家
Engineering at Meta
Engineering at Meta
N
Netflix TechBlog - Medium
A
About on SuperTechFans
aimingoo的专栏
aimingoo的专栏
D
Docker
有赞技术团队
有赞技术团队
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
阮一峰的网络日志
阮一峰的网络日志
I
InfoQ

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): align message flow fixture with rich draf...
obviyus · 2026-06-14 · via Recent Commits to openclaw:main

@@ -9,6 +9,21 @@ import {

99

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

10101111

describe("channel message flows dev runner", () => {

12+

function createTestDraftStream(params?: {

13+

update?: (text: string) => void;

14+

flush?: () => Promise<void>;

15+

clear?: () => Promise<void>;

16+

}) {

17+

return {

18+

update: vi.fn(params?.update ?? (() => {})),

19+

flush: vi.fn(params?.flush ?? (async () => {})),

20+

clear: vi.fn(params?.clear ?? (async () => {})),

21+

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

22+

messageId: vi.fn(() => 17),

23+

forceNewMessage: vi.fn(),

24+

};

25+

}

26+1227

it("parses the Telegram thinking-final flow from channel/target flags", () => {

1328

const parsed = parseChannelMessageFlowArgs([

1429

"--channel",

@@ -168,11 +183,8 @@ describe("channel message flows dev runner", () => {

168183

).rejects.toThrow("thinking-final final send did not return a durable Telegram message id");

169184

});

170185171-

it("streams working updates through native message drafts before the final answer", async () => {

172-

const draft = {

173-

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

174-

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

175-

};

186+

it("streams working updates through rich message drafts before the final answer", async () => {

187+

const stream = createTestDraftStream();

176188

const sendFinal = vi.fn(async () => ({ messageId: "100", chatId: "123" }));

177189178190

const result = await runTelegramWorkingFinalFlow(

@@ -183,42 +195,41 @@ describe("channel message flows dev runner", () => {

183195

target: "123",

184196

},

185197

{

186-

createNativeToolProgressDraft: vi.fn(() => draft),

198+

createDraftStream: vi.fn(() => stream),

187199

sendFinal,

188200

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

189201

},

190202

);

191203192-

expect(draft.update).toHaveBeenNthCalledWith(1, "Working");

193-

expect(draft.update.mock.calls[2]?.[0]).toContain("🛠️ pgrep -fl Discord || true (agent)");

194-

expect(draft.update.mock.calls[2]?.[0]).toContain(

204+

expect(stream.update).toHaveBeenNthCalledWith(1, "Working");

205+

expect(stream.update.mock.calls[2]?.[0]).toContain("🛠️ pgrep -fl Discord || true (agent)");

206+

expect(stream.update.mock.calls[2]?.[0]).toContain(

195207

"🛠️ list files in /Applications/Discord.app -> run true (agent)",

196208

);

197-

expect(draft.update.mock.calls[4]?.[0]).toContain(

209+

expect(stream.update.mock.calls[4]?.[0]).toContain(

198210

"• Discord is installed as a normal '/Applications/Discord.app'",

199211

);

200-

expect(draft.update).toHaveBeenCalledWith(

212+

expect(stream.update).toHaveBeenCalledWith(

201213

expect.stringContaining("Working\n\n🛠️ pgrep -fl Discord || true (agent)"),

202214

);

203-

expect(draft.stop).toHaveBeenCalledBefore(sendFinal);

215+

expect(stream.clear).toHaveBeenCalledBefore(sendFinal);

204216

expect(sendFinal).toHaveBeenCalledWith({

205217

accountId: undefined,

206218

cfg: {},

207219

target: "123",

208220

text: "Final answer: the Telegram working preview cleared and this durable reply landed.",

209221

threadId: undefined,

210222

});

211-

expect(draft.update).not.toHaveBeenCalledWith(expect.stringContaining("Working for"));

223+

expect(stream.update).not.toHaveBeenCalledWith(expect.stringContaining("Working for"));

212224

expect(result).toEqual({ finalMessageId: "100", previewUpdates: 6 });

213225

});

214226215-

it("stops native working drafts when progress updates fail before the final answer", async () => {

216-

const draft = {

217-

update: vi.fn(async () => {

227+

it("clears rich working drafts when progress updates fail before the final answer", async () => {

228+

const stream = createTestDraftStream({

229+

update: () => {

218230

throw new Error("draft update failed");

219-

}),

220-

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

221-

};

231+

},

232+

});

222233

const sendFinal = vi.fn(async () => ({ messageId: "100", chatId: "123" }));

223234224235

await expect(

@@ -230,22 +241,19 @@ describe("channel message flows dev runner", () => {

230241

target: "123",

231242

},

232243

{

233-

createNativeToolProgressDraft: vi.fn(() => draft),

244+

createDraftStream: vi.fn(() => stream),

234245

sendFinal,

235246

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

236247

},

237248

),

238249

).rejects.toThrow("draft update failed");

239250240-

expect(draft.stop).toHaveBeenCalledOnce();

251+

expect(stream.clear).toHaveBeenCalledOnce();

241252

expect(sendFinal).not.toHaveBeenCalled();

242253

});

243254244255

it("fails working-final when the final send does not return a message id", async () => {

245-

const draft = {

246-

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

247-

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

248-

};

256+

const stream = createTestDraftStream();

249257250258

await expect(

251259

runTelegramWorkingFinalFlow(

@@ -256,7 +264,7 @@ describe("channel message flows dev runner", () => {

256264

target: "123",

257265

},

258266

{

259-

createNativeToolProgressDraft: vi.fn(() => draft),

267+

createDraftStream: vi.fn(() => stream),

260268

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

261269

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

262270

},

@@ -265,10 +273,7 @@ describe("channel message flows dev runner", () => {

265273

});

266274267275

it("uses two second progress update cadence by default", async () => {

268-

const draft = {

269-

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

270-

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

271-

};

276+

const stream = createTestDraftStream();

272277

const sleep = vi.fn(async () => {});

273278274279

const result = await runTelegramWorkingFinalFlow(

@@ -278,7 +283,7 @@ describe("channel message flows dev runner", () => {

278283

target: "123",

279284

},

280285

{

281-

createNativeToolProgressDraft: vi.fn(() => draft),

286+

createDraftStream: vi.fn(() => stream),

282287

sendFinal: vi.fn(async () => ({ messageId: "101", chatId: "123" })),

283288

sleep,

284289

},