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

推荐订阅源

Last Week in AI
Last Week in AI
有赞技术团队
有赞技术团队
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
人人都是产品经理
人人都是产品经理
博客园 - 司徒正美
博客园 - 聂微东
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园 - 叶小钗
罗磊的独立博客
IT之家
IT之家
博客园 - 三生石上(FineUI控件)
V
Visual Studio Blog
T
Tailwind CSS Blog
大猫的无限游戏
大猫的无限游戏
Hugging Face - Blog
Hugging Face - Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
N
Netflix TechBlog - Medium
MyScale Blog
MyScale Blog
J
Java Code Geeks
L
LangChain Blog
S
SegmentFault 最新的问题
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Apple Machine Learning Research
Apple Machine Learning Research
G
Google Developers 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): restore reset archive fallback reads · ope...
openclaw-clo · 2026-06-14 · via Recent Commits to openclaw:main

@@ -19,6 +19,7 @@ const resolveOpenAiCompatibleHttpOperatorScopesMock = vi.fn();

1919

const resolveOpenAiCompatibleHttpSenderIsOwnerMock = vi.fn();

2020

const loadSessionEntryMock = vi.fn();

2121

const readSessionMessagesMock = vi.fn();

22+

const resolveSessionHistoryTranscriptPathMock = vi.fn();

2223

const getRuntimeConfigMock = vi.fn(() => ({}));

23242425

vi.mock("../config/config.js", () => ({

@@ -34,6 +35,11 @@ vi.mock("./http-utils.js", () => ({

3435

vi.mock("./session-utils.js", () => ({

3536

loadSessionEntry: loadSessionEntryMock,

3637

readSessionMessagesAsync: readSessionMessagesMock,

38+

readSessionMessagesWithSourceAsync: async (...args: unknown[]) => ({

39+

messages: await readSessionMessagesMock(...args),

40+

transcriptPath: await resolveSessionHistoryTranscriptPathMock(...args),

41+

}),

42+

resolveSessionHistoryTranscriptPathAsync: resolveSessionHistoryTranscriptPathMock,

3743

}));

38443945

const {

@@ -144,6 +150,8 @@ async function requestManagedImage(params: {

144150

headers?: Record<string, string>;

145151

transcriptMessages?: Record<string, unknown>[];

146152

sessionEntry?: { sessionId: string; sessionFile?: string };

153+

resolvedTranscriptPath?: string | null;

154+

onReadTranscriptMessages?: () => Promise<void> | void;

147155

}) {

148156

authorizeGatewayHttpRequestOrReplyMock.mockImplementation(async ({ res }) => {

149157

if (params.denyAuth) {

@@ -167,21 +175,27 @@ async function requestManagedImage(params: {

167175

storePath: path.join(params.stateDir, "gateway-sessions.json"),

168176

entry: params.sessionEntry ?? { sessionId: "sess-1", sessionFile: "session.jsonl" },

169177

});

170-

readSessionMessagesMock.mockReturnValue(

171-

params.transcriptMessages ?? [

172-

{

173-

role: "assistant",

174-

content: [

175-

{

176-

type: "image",

177-

url: params.pathName,

178-

openUrl: params.pathName,

179-

},

180-

],

181-

__openclaw: { id: "msg-1" },

182-

},

183-

],

178+

resolveSessionHistoryTranscriptPathMock.mockResolvedValue(

179+

params.resolvedTranscriptPath ?? params.sessionEntry?.sessionFile ?? "session.jsonl",

184180

);

181+

readSessionMessagesMock.mockImplementation(async () => {

182+

await params.onReadTranscriptMessages?.();

183+

return (

184+

params.transcriptMessages ?? [

185+

{

186+

role: "assistant",

187+

content: [

188+

{

189+

type: "image",

190+

url: params.pathName,

191+

openUrl: params.pathName,

192+

},

193+

],

194+

__openclaw: { id: "msg-1" },

195+

},

196+

]

197+

);

198+

});

185199186200

const auth = { mode: "test" } as never;

187201

const server = http.createServer((req, res) => {

@@ -272,6 +286,12 @@ describe("handleManagedOutgoingImageHttpRequest", () => {

272286

expect(result.headers["content-type"]).toBe("image/png");

273287

expect(result.headers["content-disposition"]).toContain("inline");

274288

expect(result.body.toString("utf-8")).toBe("original-image");

289+

expect(readSessionMessagesMock).toHaveBeenCalledWith(

290+

"sess-1",

291+

path.join(stateDir, "gateway-sessions.json"),

292+

"session.jsonl",

293+

expect.objectContaining({ allowResetArchiveFallback: true }),

294+

);

275295

});

276296277297

it("rejects unauthenticated requests before serving bytes", async () => {

@@ -404,6 +424,99 @@ describe("handleManagedOutgoingImageHttpRequest", () => {

404424

expect(third.result.statusCode).toBe(200);

405425

expect(readSessionMessagesMock).toHaveBeenCalledTimes(2);

406426

});

427+428+

it("reuses the session attachment index for archive-backed requests", async () => {

429+

const { attachmentId, sessionKey } = await createFixture(stateDir);

430+

const archiveFile = path.join(

431+

stateDir,

432+

"sessions",

433+

"sess-main.jsonl.reset.2026-02-16T22-26-34.000Z",

434+

);

435+

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

436+

await fs.writeFile(archiveFile, '{"message":{}}\n', "utf-8");

437+438+

const transcriptMessages = [

439+

{

440+

__openclaw: { id: "msg-1" },

441+

content: [

442+

{

443+

type: "image",

444+

url: `/api/chat/media/outgoing/${encodeURIComponent(sessionKey)}/${attachmentId}/full`,

445+

openUrl: `/api/chat/media/outgoing/${encodeURIComponent(sessionKey)}/${attachmentId}/full`,

446+

},

447+

],

448+

},

449+

];

450+451+

const pathName = `/api/chat/media/outgoing/${encodeURIComponent(sessionKey)}/${attachmentId}/full`;

452+

const first = await requestManagedImage({

453+

stateDir,

454+

pathName,

455+

authResponse: { authMethod: "token" },

456+

sessionEntry: { sessionId: "sess-main" },

457+

resolvedTranscriptPath: archiveFile,

458+

transcriptMessages,

459+

});

460+

const second = await requestManagedImage({

461+

stateDir,

462+

pathName,

463+

authResponse: { authMethod: "token" },

464+

sessionEntry: { sessionId: "sess-main" },

465+

resolvedTranscriptPath: archiveFile,

466+

transcriptMessages,

467+

});

468+469+

expect(first.result.statusCode).toBe(200);

470+

expect(second.result.statusCode).toBe(200);

471+

expect(readSessionMessagesMock).toHaveBeenCalledTimes(1);

472+

});

473+474+

it("does not cache a session attachment index when the transcript changes during the read", async () => {

475+

const { attachmentId, sessionKey } = await createFixture(stateDir);

476+

const sessionFile = path.join(stateDir, "sessions", "sess-main.jsonl");

477+

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

478+

await fs.writeFile(sessionFile, '{"message":{}}\n', "utf-8");

479+480+

const transcriptMessages = [

481+

{

482+

__openclaw: { id: "msg-1" },

483+

content: [

484+

{

485+

type: "image",

486+

url: `/api/chat/media/outgoing/${encodeURIComponent(sessionKey)}/${attachmentId}/full`,

487+

openUrl: `/api/chat/media/outgoing/${encodeURIComponent(sessionKey)}/${attachmentId}/full`,

488+

},

489+

],

490+

},

491+

];

492+493+

let mutatedTranscript = false;

494+

const pathName = `/api/chat/media/outgoing/${encodeURIComponent(sessionKey)}/${attachmentId}/full`;

495+

const first = await requestManagedImage({

496+

stateDir,

497+

pathName,

498+

authResponse: { authMethod: "token" },

499+

sessionEntry: { sessionId: "sess-main", sessionFile },

500+

transcriptMessages,

501+

onReadTranscriptMessages: async () => {

502+

if (!mutatedTranscript) {

503+

mutatedTranscript = true;

504+

await fs.appendFile(sessionFile, '{"message":{"content":"updated"}}\n', "utf-8");

505+

}

506+

},

507+

});

508+

const second = await requestManagedImage({

509+

stateDir,

510+

pathName,

511+

authResponse: { authMethod: "token" },

512+

sessionEntry: { sessionId: "sess-main", sessionFile },

513+

transcriptMessages,

514+

});

515+516+

expect(first.result.statusCode).toBe(200);

517+

expect(second.result.statusCode).toBe(200);

518+

expect(readSessionMessagesMock).toHaveBeenCalledTimes(2);

519+

});

407520

});

408521409522

describe("createManagedOutgoingImageBlocks", () => {

@@ -942,6 +1055,12 @@ describe("cleanupManagedOutgoingImageRecords", () => {

9421055

expect(result.deletedFileCount).toBe(0);

9431056

expect(result.retainedCount).toBe(1);

9441057

await expect(fs.access(fixture.originalPath)).resolves.toBeUndefined();

1058+

expect(readSessionMessagesMock).toHaveBeenCalledWith(

1059+

"sess-main",

1060+

path.join(stateDir, "gateway-sessions.json"),

1061+

"/tmp/sess-main.jsonl",

1062+

expect.objectContaining({ allowResetArchiveFallback: true }),

1063+

);

9451064

});

94610659471066

it("reads each session transcript once while evaluating committed records", async () => {