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

推荐订阅源

罗磊的独立博客
L
LangChain Blog
aimingoo的专栏
aimingoo的专栏
IT之家
IT之家
B
Blog
博客园_首页
博客园 - 司徒正美
有赞技术团队
有赞技术团队
博客园 - 聂微东
I
InfoQ
美团技术团队
GbyAI
GbyAI
阮一峰的网络日志
阮一峰的网络日志
H
Help Net Security
大猫的无限游戏
大猫的无限游戏
MyScale Blog
MyScale Blog
WordPress大学
WordPress大学
The GitHub Blog
The GitHub Blog
A
About on SuperTechFans
人人都是产品经理
人人都是产品经理
Microsoft Azure Blog
Microsoft Azure Blog
Engineering at Meta
Engineering at Meta
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
The Cloudflare 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
refactor(acp): remove file event ledger runtime · opencla...
vincentkoc · 2026-06-17 · via Recent Commits to openclaw:main

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

55

import { closeOpenClawStateDatabaseForTest } from "../state/openclaw-state-db.js";

66

import { withTempDir } from "../test-helpers/temp-dir.js";

77

import {

8-

createFileAcpEventLedger,

98

createInMemoryAcpEventLedger,

109

createSqliteAcpEventLedger,

1110

migrateFileAcpEventLedgerToSqlite,

@@ -117,42 +116,6 @@ describe("ACP event ledger", () => {

117116

});

118117

});

119118120-

it("persists file-backed replay state across ledger instances", async () => {

121-

await withTempDir({ prefix: "openclaw-acp-ledger-" }, async (dir) => {

122-

const filePath = path.join(dir, "acp", "event-ledger.json");

123-

const first = createFileAcpEventLedger({ filePath, now: () => 1000 });

124-

await first.startSession({

125-

sessionId: "session-1",

126-

sessionKey: "agent:main:work",

127-

cwd: "/work",

128-

complete: true,

129-

});

130-

await first.recordUpdate({

131-

sessionId: "session-1",

132-

sessionKey: "agent:main:work",

133-

runId: "run-1",

134-

update: {

135-

sessionUpdate: "agent_thought_chunk",

136-

content: { type: "text", text: "Thinking" },

137-

},

138-

});

139-140-

const second = createFileAcpEventLedger({ filePath });

141-

const replay = await second.readReplay({

142-

sessionId: "session-1",

143-

sessionKey: "agent:main:work",

144-

});

145-146-

expect(replay.complete).toBe(true);

147-

expect(replay.events).toHaveLength(1);

148-

expect(replay.events[0]?.update).toEqual({

149-

sessionUpdate: "agent_thought_chunk",

150-

content: { type: "text", text: "Thinking" },

151-

});

152-

await expect(fs.readFile(filePath, "utf8")).resolves.toContain('"version":1');

153-

});

154-

});

155-156119

it("persists SQLite-backed replay state across ledger instances", async () => {

157120

await withTempDir({ prefix: "openclaw-acp-ledger-" }, async (dir) => {

158121

const databasePath = path.join(dir, "openclaw.sqlite");

@@ -193,22 +156,38 @@ describe("ACP event ledger", () => {

193156

await withTempDir({ prefix: "openclaw-acp-ledger-" }, async (dir) => {

194157

const filePath = path.join(dir, "acp", "event-ledger.json");

195158

const databasePath = path.join(dir, "openclaw.sqlite");

196-

const legacy = createFileAcpEventLedger({ filePath, now: () => 1000 });

197-

await legacy.startSession({

198-

sessionId: "session-1",

199-

sessionKey: "agent:main:work",

200-

cwd: "/work",

201-

complete: true,

202-

});

203-

await legacy.recordUpdate({

204-

sessionId: "session-1",

205-

sessionKey: "agent:main:work",

206-

runId: "run-1",

207-

update: {

208-

sessionUpdate: "agent_message_chunk",

209-

content: { type: "text", text: "Answer" },

210-

},

211-

});

159+

await fs.mkdir(path.dirname(filePath), { recursive: true });

160+

await fs.writeFile(

161+

filePath,

162+

JSON.stringify({

163+

version: 1,

164+

sessions: {

165+

"session-1": {

166+

sessionId: "session-1",

167+

sessionKey: "agent:main:work",

168+

cwd: "/work",

169+

complete: true,

170+

createdAt: 1000,

171+

updatedAt: 1000,

172+

nextSeq: 2,

173+

events: [

174+

{

175+

seq: 1,

176+

at: 1000,

177+

sessionId: "session-1",

178+

sessionKey: "agent:main:work",

179+

runId: "run-1",

180+

update: {

181+

sessionUpdate: "agent_message_chunk",

182+

content: { type: "text", text: "Answer" },

183+

},

184+

},

185+

],

186+

},

187+

},

188+

}),

189+

"utf8",

190+

);

212191213192

const migrated = await migrateFileAcpEventLedgerToSqlite({

214193

filePath,

@@ -449,81 +428,4 @@ describe("ACP event ledger", () => {

449428

).resolves.toEqual({ complete: false, events: [] });

450429

});

451430452-

it("keeps the persisted ledger file under the serialized byte budget", async () => {

453-

await withTempDir({ prefix: "openclaw-acp-ledger-" }, async (dir) => {

454-

const filePath = path.join(dir, "acp", "event-ledger.json");

455-

const ledger = createFileAcpEventLedger({ filePath, maxSerializedBytes: 1024 });

456-

await ledger.startSession({

457-

sessionId: "session-1",

458-

sessionKey: "agent:main:work",

459-

cwd: "/work",

460-

complete: true,

461-

});

462-

await ledger.recordUpdate({

463-

sessionId: "session-1",

464-

sessionKey: "agent:main:work",

465-

update: {

466-

sessionUpdate: "tool_call_update",

467-

toolCallId: "tool-1",

468-

status: "completed",

469-

rawOutput: { content: "x".repeat(5_000) },

470-

},

471-

});

472-473-

const bytes = Buffer.byteLength(await fs.readFile(filePath, "utf8"), "utf8");

474-

expect(bytes).toBeLessThanOrEqual(1024);

475-

await expect(

476-

ledger.readReplay({ sessionId: "session-1", sessionKey: "agent:main:work" }),

477-

).resolves.toEqual({ complete: false, events: [] });

478-

});

479-

});

480-481-

it("ignores corrupt ledger files instead of replaying unknown state", async () => {

482-

await withTempDir({ prefix: "openclaw-acp-ledger-" }, async (dir) => {

483-

const filePath = path.join(dir, "event-ledger.json");

484-

await fs.writeFile(filePath, "{bad json", "utf8");

485-

const ledger = createFileAcpEventLedger({ filePath });

486-487-

await expect(

488-

ledger.readReplay({ sessionId: "session-1", sessionKey: "agent:main:work" }),

489-

).resolves.toEqual({ complete: false, events: [] });

490-

});

491-

});

492-493-

it("reloads file-backed state under lock before writing", async () => {

494-

await withTempDir({ prefix: "openclaw-acp-ledger-" }, async (dir) => {

495-

const filePath = path.join(dir, "acp", "event-ledger.json");

496-

const first = createFileAcpEventLedger({ filePath });

497-

const second = createFileAcpEventLedger({ filePath });

498-499-

await first.startSession({

500-

sessionId: "session-1",

501-

sessionKey: "acp:gateway-session-1",

502-

cwd: "/work",

503-

complete: true,

504-

});

505-

await second.startSession({

506-

sessionId: "session-2",

507-

sessionKey: "acp:gateway-session-2",

508-

cwd: "/work",

509-

complete: true,

510-

});

511-

await first.recordUpdate({

512-

sessionId: "session-1",

513-

sessionKey: "acp:gateway-session-1",

514-

update: {

515-

sessionUpdate: "agent_message_chunk",

516-

content: { type: "text", text: "Answer" },

517-

},

518-

});

519-520-

const reader = createFileAcpEventLedger({ filePath });

521-

const replay = await reader.readReplay({

522-

sessionId: "session-2",

523-

sessionKey: "acp:gateway-session-2",

524-

});

525-

expect(replay.complete).toBe(true);

526-

expect(replay.sessionKey).toBe("acp:gateway-session-2");

527-

});

528-

});

529431

});