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

推荐订阅源

博客园_首页
J
Java Code Geeks
博客园 - 聂微东
量子位
C
Check Point Blog
T
The Blog of Author Tim Ferriss
T
Tailwind CSS Blog
G
Google Developers Blog
Google DeepMind News
Google DeepMind News
B
Blog
罗磊的独立博客
腾讯CDC
GbyAI
GbyAI
博客园 - 【当耐特】
A
About on SuperTechFans
M
MIT News - Artificial intelligence
U
Unit 42
D
Docker
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Y
Y Combinator Blog
大猫的无限游戏
大猫的无限游戏
小众软件
小众软件
S
SegmentFault 最新的问题
有赞技术团队
有赞技术团队

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: preserve cron session transcript rotation (#82200) ·...
steipete · 2026-05-16 · via Recent Commits to openclaw:main

@@ -4,7 +4,12 @@ import path from "node:path";

44

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

55

import * as modelThinkingDefault from "../agents/model-thinking-default.js";

66

import { runCronIsolatedAgentTurn } from "./isolated-agent.js";

7-

import { makeCfg, makeJob, writeSessionStore } from "./isolated-agent.test-harness.js";

7+

import {

8+

makeCfg,

9+

makeJob,

10+

writeSessionStore,

11+

writeSessionStoreEntries,

12+

} from "./isolated-agent.test-harness.js";

813

import {

914

DEFAULT_AGENT_TURN_PAYLOAD,

1015

DEFAULT_MESSAGE,

@@ -18,6 +23,7 @@ import { setupRunCronIsolatedAgentTurnSuite } from "./isolated-agent/run.suite-h

1823

import {

1924

mockRunCronFallbackPassthrough,

2025

runEmbeddedPiAgentMock,

26+

updateSessionStoreMock,

2127

} from "./isolated-agent/run.test-harness.js";

22282329

setupRunCronIsolatedAgentTurnSuite();

@@ -142,6 +148,79 @@ describe("runCronIsolatedAgentTurn session identity", () => {

142148

});

143149

});

144150151+

it("persists rotated transcript identity for session-bound cron runs", async () => {

152+

await withTempHome(async (home) => {

153+

const deps = makeDeps();

154+

const boundSessionKey = "agent:main:telegram:direct:42";

155+

const originalSessionFile = path.join(home, "bound-session.jsonl");

156+

const rotatedSessionFile = path.join(home, "bound-session-rotated.jsonl");

157+

const storePath = await writeSessionStoreEntries(home, {

158+

[boundSessionKey]: {

159+

sessionId: "bound-session",

160+

sessionFile: originalSessionFile,

161+

updatedAt: Date.now(),

162+

lastInteractionAt: Date.now() - 1_000,

163+

systemSent: true,

164+

},

165+

});

166+

runEmbeddedPiAgentMock.mockResolvedValueOnce({

167+

payloads: [{ text: "ok" }],

168+

meta: {

169+

durationMs: 5,

170+

agentMeta: {

171+

sessionId: "bound-session-rotated",

172+

sessionFile: rotatedSessionFile,

173+

provider: "anthropic",

174+

model: "claude-opus-4-6",

175+

compactionCount: 1,

176+

compactionTokensAfter: 42,

177+

},

178+

},

179+

});

180+

updateSessionStoreMock.mockImplementation(async (_storePath, update) => {

181+

const store = {

182+

[boundSessionKey]: {

183+

sessionId: "bound-session",

184+

sessionFile: originalSessionFile,

185+

updatedAt: Date.now(),

186+

lastInteractionAt: Date.now() - 1_000,

187+

systemSent: true,

188+

},

189+

};

190+

update(store);

191+

});

192+193+

const res = await runCronIsolatedAgentTurn({

194+

cfg: makeCfg(home, storePath),

195+

deps,

196+

job: {

197+

...makeJob(DEFAULT_AGENT_TURN_PAYLOAD),

198+

sessionTarget: `session:${boundSessionKey}`,

199+

delivery: { mode: "none" },

200+

},

201+

message: DEFAULT_MESSAGE,

202+

sessionKey: boundSessionKey,

203+

lane: "cron",

204+

});

205+206+

expect(res.status).toBe("ok");

207+

expect(res.sessionId).toBe("bound-session-rotated");

208+209+

const finalPersist = updateSessionStoreMock.mock.calls.at(-1);

210+

expect(finalPersist?.[0]).toBe(storePath);

211+

const persistedStore: Record<string, { [key: string]: unknown }> = {};

212+

(finalPersist?.[1] as (store: typeof persistedStore) => void)(persistedStore);

213+

expect(persistedStore[boundSessionKey]).toEqual(

214+

expect.objectContaining({

215+

sessionId: "bound-session-rotated",

216+

sessionFile: rotatedSessionFile,

217+

usageFamilyKey: boundSessionKey,

218+

usageFamilySessionIds: ["bound-session", "bound-session-rotated"],

219+

}),

220+

);

221+

});

222+

});

223+145224

it("uses lightweight bootstrap context for command-style cron payloads", async () => {

146225

await withTempHome(async (home) => {

147226

await runCronTurn(home, {