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

推荐订阅源

博客园 - Franky
J
Java Code Geeks
腾讯CDC
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Jina AI
Jina AI
博客园 - 司徒正美
Stack Overflow Blog
Stack Overflow Blog
美团技术团队
L
LangChain Blog
WordPress大学
WordPress大学
A
About on SuperTechFans
Martin Fowler
Martin Fowler
月光博客
月光博客
Y
Y Combinator Blog
U
Unit 42
D
Docker
Recent Announcements
Recent Announcements
Hugging Face - Blog
Hugging Face - Blog
B
Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
G
Google Developers Blog
Last Week in AI
Last Week in AI
T
The Blog of Author Tim Ferriss
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com

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(sessions): guard unsafe transcript serialization cach...
vincentkoc · 2026-06-16 · via Recent Commits to openclaw:main

@@ -245,6 +245,54 @@ describe("SessionManager.open", () => {

245245

}

246246

});

247247248+

it("publishes owned snapshots when a safe append pushes the transcript over the cache limit", async () => {

249+

const dir = await makeTempDir();

250+

const sessionFile = path.join(dir, "large-session.jsonl");

251+

const maxCachedSessionBytes = 32 * 1024 * 1024;

252+

const headerLine = JSON.stringify(buildSessionHeader(dir));

253+

const largeEntryBase = {

254+

type: "message",

255+

id: "assistant-1",

256+

parentId: null,

257+

timestamp: "2026-06-04T00:00:01.000Z",

258+

message: buildAssistantMessage(""),

259+

};

260+

const initialTranscriptWithContent = (content: string) =>

261+

`${headerLine}\n${JSON.stringify({

262+

...largeEntryBase,

263+

message: buildAssistantMessage(content),

264+

})}\n`;

265+

let filler = "x".repeat(

266+

maxCachedSessionBytes - Buffer.byteLength(initialTranscriptWithContent(""), "utf8") - 16,

267+

);

268+

while (

269+

Buffer.byteLength(initialTranscriptWithContent(filler), "utf8") >

270+

maxCachedSessionBytes - 16

271+

) {

272+

filler = filler.slice(0, -1024);

273+

}

274+

await fs.writeFile(sessionFile, initialTranscriptWithContent(filler), "utf8");

275+276+

const sessionManager = SessionManager.open(sessionFile, dir, dir);

277+

const publishSessionFileSnapshot = vi.fn(() => true);

278+

await withOwnedSessionTranscriptWrites(

279+

{

280+

sessionFile,

281+

canAdvanceSessionEntryCache: () => true,

282+

publishSessionFileSnapshot,

283+

withSessionWriteLock: async (run) => await run(),

284+

},

285+

async () => {

286+

sessionManager.appendMessage(buildAssistantMessage("small append"));

287+

},

288+

);

289+290+

expect(Buffer.byteLength(await fs.readFile(sessionFile, "utf8"), "utf8")).toBeGreaterThan(

291+

maxCachedSessionBytes,

292+

);

293+

expect(publishSessionFileSnapshot).toHaveBeenCalledTimes(1);

294+

});

295+248296

it("invalidates warm entries after an append outside the owned write context", async () => {

249297

const dir = await makeTempDir();

250298

const sessionFile = path.join(dir, "session.jsonl");

@@ -370,7 +418,7 @@ describe("SessionManager.open", () => {

370418

expect(warmEntry).toMatchObject({ data: { value: "first" } });

371419

});

372420373-

it("validates the transcript prefix after extension-owned entries are serialized", async () => {

421+

it("validates the transcript prefix after entries with custom serializers are serialized", async () => {

374422

const appenders: Array<{

375423

name: string;

376424

append: (manager: SessionManager, value: unknown) => void;

@@ -402,55 +450,144 @@ describe("SessionManager.open", () => {

402450

append: (manager, value) =>

403451

manager.branchWithSummary("assistant-1", "summary", { value }, true),

404452

},

453+

{

454+

name: "tool_result_details",

455+

append: (manager, value) =>

456+

manager.appendMessage({

457+

role: "toolResult",

458+

toolCallId: "call-1",

459+

toolName: "test",

460+

content: [{ type: "text", text: "ok" }],

461+

details: { value },

462+

isError: false,

463+

timestamp: Date.now(),

464+

} as Parameters<SessionManager["appendMessage"]>[0]),

465+

},

405466

];

406467407-

for (const { name, append } of appenders) {

408-

const dir = await makeTempDir();

409-

const sessionFile = path.join(dir, `${name}.jsonl`);

410-

const originalEntry = {

411-

type: "message",

412-

id: "assistant-1",

413-

parentId: null,

414-

timestamp: "2026-06-04T00:00:01.000Z",

415-

message: buildAssistantMessage("message 1"),

416-

};

417-

const replacementEntry = {

418-

...originalEntry,

419-

message: buildAssistantMessage("changed 1"),

468+

const serializerCases: Array<{

469+

name: string;

470+

createValue: (rewriteTranscript: () => void) => {

471+

value: unknown;

472+

cleanup?: () => void;

420473

};

421-

const headerLine = JSON.stringify(buildSessionHeader(dir));

422-

await fs.writeFile(sessionFile, `${headerLine}\n${JSON.stringify(originalEntry)}\n`, "utf8");

423-424-

const sessionManager = SessionManager.open(sessionFile, dir, dir);

425-

const publishSessionFileSnapshot = vi.fn(() => true);

426-

await withOwnedSessionTranscriptWrites(

427-

{

428-

sessionFile,

429-

canAdvanceSessionEntryCache: () => true,

430-

publishSessionFileSnapshot,

431-

withSessionWriteLock: async (run) => await run(),

432-

},

433-

async () => {

434-

append(sessionManager, {

474+

}> = [

475+

{

476+

name: "own_to_json",

477+

createValue: (rewriteTranscript) => ({

478+

value: {

435479

toJSON() {

436-

writeFileSync(

437-

sessionFile,

438-

`${headerLine}\n${JSON.stringify(replacementEntry)}\n`,

439-

"utf8",

440-

);

480+

rewriteTranscript();

441481

return "persisted";

442482

},

483+

},

484+

}),

485+

},

486+

{

487+

name: "non_enumerable_array_index",

488+

createValue: (rewriteTranscript) => {

489+

const array = ["placeholder"];

490+

Object.defineProperty(array, "0", {

491+

configurable: true,

492+

enumerable: false,

493+

value: {

494+

toJSON() {

495+

rewriteTranscript();

496+

return "persisted";

497+

},

498+

},

443499

});

500+

return { value: array };

444501

},

445-

);

502+

},

503+

{

504+

name: "bigint_to_json",

505+

createValue: (rewriteTranscript) => {

506+

const originalBigIntToJson = Object.getOwnPropertyDescriptor(BigInt.prototype, "toJSON");

507+

// eslint-disable-next-line no-extend-native -- JSON.stringify invokes BigInt.prototype.toJSON when present.

508+

Object.defineProperty(BigInt.prototype, "toJSON", {

509+

configurable: true,

510+

value() {

511+

rewriteTranscript();

512+

return "persisted";

513+

},

514+

});

515+

return {

516+

value: 1n,

517+

cleanup: () => {

518+

if (originalBigIntToJson) {

519+

// eslint-disable-next-line no-extend-native -- Restore the serializer installed for this case.

520+

Object.defineProperty(BigInt.prototype, "toJSON", originalBigIntToJson);

521+

} else {

522+

delete (BigInt.prototype as { toJSON?: unknown }).toJSON;

523+

}

524+

},

525+

};

526+

},

527+

},

528+

];

446529447-

expect(

448-

SessionManager.open(sessionFile, dir, dir)

449-

.getEntries()

450-

.filter((entry) => entry.type === "message")

451-

.map((entry) => readMessageContent(entry)),

452-

).toEqual(["changed 1"]);

453-

expect(publishSessionFileSnapshot).toHaveBeenCalledTimes(1);

530+

for (const { name, append } of appenders) {

531+

for (const serializerCase of serializerCases) {

532+

const dir = await makeTempDir();

533+

const sessionFile = path.join(dir, `${name}-${serializerCase.name}.jsonl`);

534+

const originalEntry = {

535+

type: "message",

536+

id: "assistant-1",

537+

parentId: null,

538+

timestamp: "2026-06-04T00:00:01.000Z",

539+

message: buildAssistantMessage("message 1"),

540+

};

541+

const replacementEntry = {

542+

...originalEntry,

543+

message: buildAssistantMessage("changed 1"),

544+

};

545+

const headerLine = JSON.stringify(buildSessionHeader(dir));

546+

await fs.writeFile(

547+

sessionFile,

548+

`${headerLine}\n${JSON.stringify(originalEntry)}\n`,

549+

"utf8",

550+

);

551+552+

const sessionManager = SessionManager.open(sessionFile, dir, dir);

553+

let cacheAdvanceChecks = 0;

554+

const publishSessionFileSnapshot = vi.fn(() => true);

555+

const { value, cleanup } = serializerCase.createValue(() => {

556+

writeFileSync(

557+

sessionFile,

558+

`${headerLine}\n${JSON.stringify(replacementEntry)}\n`,

559+

"utf8",

560+

);

561+

});

562+563+

try {

564+

await withOwnedSessionTranscriptWrites(

565+

{

566+

sessionFile,

567+

canAdvanceSessionEntryCache: () => {

568+

cacheAdvanceChecks += 1;

569+

return true;

570+

},

571+

publishSessionFileSnapshot,

572+

withSessionWriteLock: async (run) => await run(),

573+

},

574+

async () => {

575+

append(sessionManager, value);

576+

},

577+

);

578+

} finally {

579+

cleanup?.();

580+

}

581+582+

expect(

583+

SessionManager.open(sessionFile, dir, dir)

584+

.getEntries()

585+

.filter((entry) => entry.type === "message")

586+

.map((entry) => readMessageContent(entry)),

587+

).toEqual(name === "tool_result_details" ? ["changed 1", "ok"] : ["changed 1"]);

588+

expect(cacheAdvanceChecks, `${name}/${serializerCase.name}`).toBe(0);

589+

expect(publishSessionFileSnapshot, `${name}/${serializerCase.name}`).not.toHaveBeenCalled();

590+

}

454591

}

455592

});

456593