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

推荐订阅源

博客园_首页
H
Help Net Security
N
Netflix TechBlog - Medium
Apple Machine Learning Research
Apple Machine Learning Research
P
Proofpoint News Feed
A
About on SuperTechFans
V
V2EX
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
宝玉的分享
宝玉的分享
aimingoo的专栏
aimingoo的专栏
F
Fortinet All Blogs
博客园 - 【当耐特】
Microsoft Security Blog
Microsoft Security Blog
Martin Fowler
Martin Fowler
I
InfoQ
Google DeepMind News
Google DeepMind News
人人都是产品经理
人人都是产品经理
Engineering at Meta
Engineering at Meta
腾讯CDC
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
B
Blog RSS Feed
U
Unit 42
The Cloudflare Blog
Y
Y Combinator 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
fix(sessions): cache validated transcripts across turns (...
Alix-007 · 2026-06-16 · via Recent Commits to openclaw:main

@@ -66,6 +66,65 @@ function cloneBigIntStatWith(

6666

}

67676868

describe("embedded attempt session lock lifecycle", () => {

69+

it("recognizes an unchanged session file trusted by the previous prompt release", async () => {

70+

const sessionFile = await createTempSessionFile();

71+

const options = { ...lockOptions, sessionFile };

72+

const first = await createEmbeddedAttemptSessionLockController({

73+

acquireSessionWriteLock,

74+

lockOptions: options,

75+

});

76+77+

expect(await first.readTrustedCurrentSessionFileSnapshot()).toBeUndefined();

78+

await first.releaseForPrompt();

79+

await first.dispose();

80+81+

const second = await createEmbeddedAttemptSessionLockController({

82+

acquireSessionWriteLock,

83+

lockOptions: options,

84+

});

85+

expect(await second.readTrustedCurrentSessionFileSnapshot()).toBeDefined();

86+

await second.dispose();

87+

});

88+89+

it("does not trust a session file changed after the previous prompt release", async () => {

90+

const sessionFile = await createTempSessionFile();

91+

const options = { ...lockOptions, sessionFile };

92+

const first = await createEmbeddedAttemptSessionLockController({

93+

acquireSessionWriteLock,

94+

lockOptions: options,

95+

});

96+

await first.releaseForPrompt();

97+

await first.dispose();

98+

await fs.appendFile(sessionFile, '{"type":"message","id":"external"}\n', "utf8");

99+100+

const second = await createEmbeddedAttemptSessionLockController({

101+

acquireSessionWriteLock,

102+

lockOptions: options,

103+

});

104+

expect(await second.readTrustedCurrentSessionFileSnapshot()).toBeUndefined();

105+

await second.dispose();

106+

});

107+108+

it("publishes a known owned append for the next attempt", async () => {

109+

const sessionFile = await createTempSessionFile();

110+

const options = { ...lockOptions, sessionFile };

111+

const first = await createEmbeddedAttemptSessionLockController({

112+

acquireSessionWriteLock,

113+

lockOptions: options,

114+

});

115+

await fs.appendFile(sessionFile, '{"type":"message","id":"owned"}\n', "utf8");

116+

first.refreshAfterOwnedSessionWrite();

117+

await first.releaseForPrompt();

118+

await first.dispose();

119+120+

const second = await createEmbeddedAttemptSessionLockController({

121+

acquireSessionWriteLock,

122+

lockOptions: options,

123+

});

124+

expect(await second.readTrustedCurrentSessionFileSnapshot()).toBeDefined();

125+

await second.dispose();

126+

});

127+69128

it("serializes embedded attempts that share a session file owner", async () => {

70129

const sessionFile = await createTempSessionFile();

71130

const firstOwner = await acquireEmbeddedAttemptSessionFileOwner({ sessionFile });

@@ -1045,6 +1104,90 @@ describe("embedded attempt session lock lifecycle", () => {

10451104

expect(release).toHaveBeenCalledTimes(3);

10461105

});

104711061107+

it("authorizes entry-cache advancement only under the exact trusted file lock", async () => {

1108+

const sessionFile = await createTempSessionFile();

1109+

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

1110+

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

1111+

const controller = await createEmbeddedAttemptSessionLockController({

1112+

acquireSessionWriteLock: acquireSessionWriteLockLocal,

1113+

lockOptions: { ...lockOptions, sessionFile },

1114+

});

1115+1116+

await controller.releaseForPrompt();

1117+

const stat = await fs.stat(sessionFile, { bigint: true });

1118+

const snapshot = {

1119+

dev: stat.dev,

1120+

ino: stat.ino,

1121+

size: stat.size,

1122+

mtimeNs: stat.mtimeNs,

1123+

ctimeNs: stat.ctimeNs,

1124+

};

1125+1126+

expect(controller.canAdvanceSessionEntryCache(snapshot)).toBe(false);

1127+

await expect(

1128+

controller.withSessionWriteLock(() => {

1129+

expect(controller.canAdvanceSessionEntryCache(snapshot)).toBe(true);

1130+

return "locked";

1131+

}),

1132+

).resolves.toBe("locked");

1133+

expect(controller.canAdvanceSessionEntryCache(snapshot)).toBe(false);

1134+

});

1135+1136+

it("publishes an exact owned snapshot only while the write lock is active", async () => {

1137+

const sessionFile = await createTempSessionFile();

1138+

const controller = await createEmbeddedAttemptSessionLockController({

1139+

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

1140+

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

1141+

})),

1142+

lockOptions: { ...lockOptions, sessionFile },

1143+

});

1144+

const readSnapshot = async () => {

1145+

const stat = await fs.stat(sessionFile, { bigint: true });

1146+

return {

1147+

dev: stat.dev,

1148+

ino: stat.ino,

1149+

size: stat.size,

1150+

mtimeNs: stat.mtimeNs,

1151+

ctimeNs: stat.ctimeNs,

1152+

};

1153+

};

1154+

const initialSnapshot = await readSnapshot();

1155+1156+

expect(controller.publishOwnedSessionFileSnapshot(initialSnapshot)).toBe(false);

1157+

await controller.withSessionWriteLock(async () => {

1158+

expect(controller.publishOwnedSessionFileSnapshot(initialSnapshot)).toBe(true);

1159+

await fs.appendFile(sessionFile, '{"type":"message","id":"owned"}\n', "utf8");

1160+

expect(controller.publishOwnedSessionFileSnapshot(initialSnapshot)).toBe(false);

1161+

expect(controller.publishOwnedSessionFileSnapshot(await readSnapshot())).toBe(true);

1162+

});

1163+

expect(controller.publishOwnedSessionFileSnapshot(await readSnapshot())).toBe(false);

1164+

await controller.dispose();

1165+

});

1166+1167+

it("publishes only an unchanged repair-validated snapshot while retaining the lock", async () => {

1168+

const sessionFile = await createTempSessionFile();

1169+

const acquireSessionWriteLockLocal = vi.fn(async () => ({

1170+

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

1171+

}));

1172+

const controller = await createEmbeddedAttemptSessionLockController({

1173+

acquireSessionWriteLock: acquireSessionWriteLockLocal,

1174+

lockOptions: { ...lockOptions, sessionFile },

1175+

});

1176+

const stat = await fs.stat(sessionFile, { bigint: true });

1177+

const snapshot = {

1178+

dev: stat.dev,

1179+

ino: stat.ino,

1180+

size: stat.size,

1181+

mtimeNs: stat.mtimeNs,

1182+

ctimeNs: stat.ctimeNs,

1183+

};

1184+1185+

expect(controller.publishValidatedSessionFileSnapshot(snapshot)).toBe(true);

1186+

await fs.appendFile(sessionFile, '{"type":"message","id":"external"}\n', "utf8");

1187+

expect(controller.publishValidatedSessionFileSnapshot(snapshot)).toBe(false);

1188+

await controller.dispose();

1189+

});

1190+10481191

it("refreshes the prompt fence after an owned session manager append", async () => {

10491192

const sessionFile = await createTempSessionFile();

10501193

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