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

推荐订阅源

量子位
博客园_首页
Google DeepMind News
Google DeepMind News
博客园 - Franky
The GitHub Blog
The GitHub Blog
GbyAI
GbyAI
有赞技术团队
有赞技术团队
Microsoft Azure Blog
Microsoft Azure Blog
G
Google Developers Blog
Recent Announcements
Recent Announcements
A
About on SuperTechFans
博客园 - 【当耐特】
博客园 - 三生石上(FineUI控件)
酷 壳 – CoolShell
酷 壳 – CoolShell
美团技术团队
罗磊的独立博客
IT之家
IT之家
博客园 - 聂微东
Stack Overflow Blog
Stack Overflow Blog
Jina AI
Jina AI
腾讯CDC
P
Proofpoint News Feed
Hugging Face - Blog
Hugging Face - Blog
让小产品的独立变现更简单 - 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
perf: avoid no-op session store rewrites · openclaw/openc...
steipete · 2026-05-29 · via Recent Commits to openclaw:main
11

import fs from "node:fs";

22

import path from "node:path";

33

import { afterAll, afterEach, beforeAll, beforeEach, describe, expect, it, vi } from "vitest";

4+

import * as jsonFiles from "../infra/json-files.js";

45

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

56

import {

67

getSerializedSessionStore,

@@ -12,6 +13,7 @@ import {

1213

writeSessionStoreCache,

1314

} from "./sessions/store-cache.js";

1415

import {

16+

applySessionStoreEntryPatch,

1517

clearSessionStoreCacheForTest,

1618

loadSessionStore,

1719

readSessionEntries,

@@ -21,6 +23,7 @@ import {

2123

saveSessionStore,

2224

updateSessionStore,

2325

updateSessionStoreEntry,

26+

updateLastRoute,

2427

} from "./sessions/store.js";

2528

import type { SessionEntry } from "./sessions/types.js";

2629

@@ -627,6 +630,91 @@ describe("Session Store Cache", () => {

627630

expect(cached["session:1"].displayName).toBe("Entry writer owned");

628631

});

629632633+

it("publishes high-level entry patches without cloning the whole object cache", async () => {

634+

await saveSessionStore(storePath, {

635+

"session:1": createSessionEntry({ sessionId: "id-1" }),

636+

"session:2": createSessionEntry({ sessionId: "id-2" }),

637+

});

638+

const before = loadSessionStore(storePath, { clone: false });

639+

const untouched = before["session:2"];

640+641+

const persisted = await updateSessionStoreEntry({

642+

storePath,

643+

sessionKey: "session:1",

644+

update: async () => ({

645+

displayName: "Entry writer owned by default",

646+

updatedAt: Date.now() + 1,

647+

}),

648+

});

649+650+

const cached = loadSessionStore(storePath, { clone: false });

651+

expect(cached["session:2"]).toBe(untouched);

652+

expect(cached["session:1"]).not.toBe(persisted);

653+

persisted!.displayName = "Mutated returned entry";

654+

expect(cached["session:1"].displayName).toBe("Entry writer owned by default");

655+

});

656+657+

it("publishes route updates without cloning the whole object cache", async () => {

658+

await saveSessionStore(storePath, {

659+

"session:1": createSessionEntry({ sessionId: "id-1" }),

660+

"session:2": createSessionEntry({ sessionId: "id-2" }),

661+

});

662+

const before = loadSessionStore(storePath, { clone: false });

663+

const untouched = before["session:2"];

664+665+

const persisted = await updateLastRoute({

666+

storePath,

667+

sessionKey: "session:1",

668+

channel: "telegram",

669+

to: "chat-1",

670+

});

671+672+

const cached = loadSessionStore(storePath, { clone: false });

673+

expect(cached["session:2"]).toBe(untouched);

674+

expect(cached["session:1"]).not.toBe(persisted);

675+

persisted!.lastTo = "mutated-return";

676+

expect(cached["session:1"].lastTo).toBe("chat-1");

677+

});

678+679+

it("detaches caller-owned patch objects before publishing writer-owned caches", async () => {

680+

await saveSessionStore(storePath, {

681+

"session:1": createSessionEntry({ sessionId: "id-1" }),

682+

"session:2": createSessionEntry({ sessionId: "id-2" }),

683+

});

684+

const before = loadSessionStore(storePath, { clone: false });

685+

const untouched = before["session:2"];

686+

const deliveryContext = { channel: "telegram", to: "chat-1" };

687+688+

await applySessionStoreEntryPatch({

689+

storePath,

690+

sessionKey: "session:1",

691+

patch: { deliveryContext },

692+

});

693+

deliveryContext.to = "mutated-after-persist";

694+695+

const cached = loadSessionStore(storePath, { clone: false });

696+

expect(cached["session:2"]).toBe(untouched);

697+

expect(cached["session:1"].deliveryContext?.to).toBe("chat-1");

698+

});

699+700+

it("restores the writer-owned cache when update result proves the store unchanged", async () => {

701+

await saveSessionStore(storePath, {

702+

"session:1": createSessionEntry({ sessionId: "id-1" }),

703+

"session:2": createSessionEntry({ sessionId: "id-2" }),

704+

});

705+

const before = loadSessionStore(storePath, { clone: false });

706+

const writeSpy = vi.spyOn(jsonFiles, "writeTextAtomic");

707+708+

const result = await updateSessionStore(storePath, () => 0, {

709+

skipSaveWhenResult: (cleared) => cleared === 0,

710+

});

711+712+

const after = loadSessionStore(storePath, { clone: false });

713+

expect(result).toBe(0);

714+

expect(writeSpy).not.toHaveBeenCalled();

715+

expect(after).toBe(before);

716+

});

717+630718

it("builds immutable session snapshots lazily after writes", async () => {

631719

await saveSessionStore(storePath, createSingleSessionStore());

632720