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

推荐订阅源

MongoDB | Blog
MongoDB | Blog
V
V2EX
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
有赞技术团队
有赞技术团队
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
罗磊的独立博客
月光博客
月光博客
爱范儿
爱范儿
D
Docker
U
Unit 42
P
Proofpoint News Feed
I
InfoQ
腾讯CDC
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
L
LangChain Blog
V
Visual Studio Blog
IT之家
IT之家
Vercel News
Vercel News
G
Google Developers Blog
M
MIT News - Artificial intelligence
美团技术团队
The GitHub Blog
The GitHub Blog
阮一峰的网络日志
阮一峰的网络日志
MyScale Blog
MyScale 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: tighten channel message lifecycle assertions · open...
steipete · 2026-05-10 · via Recent Commits to openclaw:main

@@ -21,25 +21,16 @@ describe("message lifecycle primitives", () => {

2121

};

22222323

const preview = createLiveMessageState({ receipt });

24-

expect(preview).toEqual(

25-

expect.objectContaining({

26-

phase: "previewing",

27-

canFinalizeInPlace: true,

28-

}),

29-

);

24+

expect(preview.phase).toBe("previewing");

25+

expect(preview.canFinalizeInPlace).toBe(true);

302631-

expect(markLiveMessageFinalized(preview, receipt)).toEqual(

32-

expect.objectContaining({

33-

phase: "finalized",

34-

canFinalizeInPlace: false,

35-

}),

36-

);

37-

expect(markLiveMessageCancelled(preview)).toEqual(

38-

expect.objectContaining({

39-

phase: "cancelled",

40-

canFinalizeInPlace: false,

41-

}),

42-

);

27+

const finalized = markLiveMessageFinalized(preview, receipt);

28+

expect(finalized.phase).toBe("finalized");

29+

expect(finalized.canFinalizeInPlace).toBe(false);

30+31+

const cancelled = markLiveMessageCancelled(preview);

32+

expect(cancelled.phase).toBe("cancelled");

33+

expect(cancelled.canFinalizeInPlace).toBe(false);

4334

});

44354536

it("tracks live preview rendered batch updates", () => {

@@ -58,12 +49,9 @@ describe("message lifecycle primitives", () => {

5849

},

5950

};

605161-

expect(markLiveMessagePreviewUpdated(preview, rendered)).toEqual(

62-

expect.objectContaining({

63-

phase: "previewing",

64-

lastRendered: rendered,

65-

}),

66-

);

52+

const updated = markLiveMessagePreviewUpdated(preview, rendered);

53+

expect(updated.phase).toBe("previewing");

54+

expect(updated.lastRendered).toBe(rendered);

6755

});

68566957

it("finalizes live previews in place with preview receipts", async () => {

@@ -89,21 +77,23 @@ describe("message lifecycle primitives", () => {

8977

expect(result.kind).toBe("preview-finalized");

9078

expect(editFinal).toHaveBeenCalledWith("preview-1", { text: "done" });

9179

expect(deliverNormally).not.toHaveBeenCalled();

92-

expect(result.liveState).toEqual(

93-

expect.objectContaining({

94-

phase: "finalized",

95-

canFinalizeInPlace: false,

96-

receipt: expect.objectContaining({

97-

primaryPlatformMessageId: "preview-1",

98-

platformMessageIds: ["preview-1"],

99-

}),

100-

}),

101-

);

102-

expect(onPreviewFinalized).toHaveBeenCalledWith(

103-

"preview-1",

104-

expect.objectContaining({ primaryPlatformMessageId: "preview-1" }),

105-

result.liveState,

106-

);

80+

const liveState = result.liveState;

81+

if (!liveState) {

82+

throw new Error("expected finalized live state");

83+

}

84+

expect(liveState.phase).toBe("finalized");

85+

expect(liveState.canFinalizeInPlace).toBe(false);

86+

expect(liveState.receipt?.primaryPlatformMessageId).toBe("preview-1");

87+

expect(liveState.receipt?.platformMessageIds).toEqual(["preview-1"]);

88+

expect(onPreviewFinalized).toHaveBeenCalledTimes(1);

89+

const [previewId, receiptArg, stateArg] = onPreviewFinalized.mock.calls[0] as unknown as [

90+

string,

91+

{ primaryPlatformMessageId?: string },

92+

unknown,

93+

];

94+

expect(previewId).toBe("preview-1");

95+

expect(receiptArg.primaryPlatformMessageId).toBe("preview-1");

96+

expect(stateArg).toBe(liveState);

10797

});

1089810999

it("treats live preview fallback delivery as terminal state", async () => {

@@ -129,12 +119,12 @@ describe("message lifecycle primitives", () => {

129119

expect(discardPending).toHaveBeenCalledTimes(1);

130120

expect(deliverNormally).toHaveBeenCalledWith({ text: "with media" });

131121

expect(clear).toHaveBeenCalledTimes(1);

132-

expect(result.liveState).toEqual(

133-

expect.objectContaining({

134-

phase: "cancelled",

135-

canFinalizeInPlace: false,

136-

}),

137-

);

122+

const liveState = result.liveState;

123+

if (!liveState) {

124+

throw new Error("expected fallback live state");

125+

}

126+

expect(liveState.phase).toBe("cancelled");

127+

expect(liveState.canFinalizeInPlace).toBe(false);

138128

});

139129140130

it("delivers through finalizable live preview adapters", async () => {

@@ -222,14 +212,14 @@ describe("message lifecycle primitives", () => {

222212

expect(result.kind).toBe("preview-retained");

223213

expect(result.liveState?.phase).toBe("previewing");

224214

expect(deliverNormally).not.toHaveBeenCalled();

225-

expect(handlePreviewEditError).toHaveBeenCalledWith(

226-

expect.objectContaining({

227-

error: editError,

228-

id: "preview-maybe-final",

229-

edit: { text: "done" },

230-

payload: { text: "done" },

231-

}),

232-

);

215+

expect(handlePreviewEditError).toHaveBeenCalledTimes(1);

216+

const [editErrorContext] = handlePreviewEditError.mock.calls[0] as unknown as [

217+

{ error: unknown; id?: string; edit?: unknown; payload?: unknown },

218+

];

219+

expect(editErrorContext.error).toBe(editError);

220+

expect(editErrorContext.id).toBe("preview-maybe-final");

221+

expect(editErrorContext.edit).toEqual({ text: "done" });

222+

expect(editErrorContext.payload).toEqual({ text: "done" });

233223

});

234224235225

it("does not fallback-send after a successful preview edit when finalization hooks fail", async () => {

@@ -268,16 +258,12 @@ describe("message lifecycle primitives", () => {

268258

receivedAt: 123,

269259

});

270260271-

expect(ctx).toEqual(

272-

expect.objectContaining({

273-

id: "rx-1",

274-

channel: "telegram",

275-

message: { text: "hello" },

276-

ackPolicy: "after_receive_record",

277-

ackState: "pending",

278-

receivedAt: 123,

279-

}),

280-

);

261+

expect(ctx.id).toBe("rx-1");

262+

expect(ctx.channel).toBe("telegram");

263+

expect(ctx.message).toEqual({ text: "hello" });

264+

expect(ctx.ackPolicy).toBe("after_receive_record");

265+

expect(ctx.ackState).toBe("pending");

266+

expect(ctx.receivedAt).toBe(123);

281267

});

282268283269

it("acks and nacks receive contexts through explicit hooks", async () => {

@@ -335,24 +321,19 @@ describe("message lifecycle primitives", () => {

335321

});

336322337323

it("creates durable message state records with normalized errors", () => {

338-

expect(

339-

createDurableMessageStateRecord({

340-

intent: {

341-

id: "intent-1",

342-

channel: "telegram",

343-

to: "12345",

344-

durability: "required",

345-

},

346-

state: "failed",

347-

error: new Error("network"),

348-

updatedAt: 123,

349-

}),

350-

).toEqual(

351-

expect.objectContaining({

352-

state: "failed",

353-

errorMessage: "network",

354-

updatedAt: 123,

355-

}),

356-

);

324+

const record = createDurableMessageStateRecord({

325+

intent: {

326+

id: "intent-1",

327+

channel: "telegram",

328+

to: "12345",

329+

durability: "required",

330+

},

331+

state: "failed",

332+

error: new Error("network"),

333+

updatedAt: 123,

334+

});

335+

expect(record.state).toBe("failed");

336+

expect(record.errorMessage).toBe("network");

337+

expect(record.updatedAt).toBe(123);

357338

});

358339

});