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

推荐订阅源

博客园 - 叶小钗
爱范儿
爱范儿
WordPress大学
WordPress大学
Last Week in AI
Last Week in AI
博客园 - 聂微东
雷峰网
雷峰网
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
博客园 - 三生石上(FineUI控件)
T
Tailwind CSS Blog
博客园 - Franky
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园_首页
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园 - 司徒正美
月光博客
月光博客
大猫的无限游戏
大猫的无限游戏
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
The Cloudflare Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
人人都是产品经理
人人都是产品经理
宝玉的分享
宝玉的分享
罗磊的独立博客
Jina AI
Jina AI

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: localize session transcript env · openclaw/openclaw@...
shakkernerd · 2026-06-21 · via Recent Commits to openclaw:main

@@ -4,7 +4,8 @@ import fs from "node:fs";

44

import os from "node:os";

55

import path from "node:path";

66

import { SessionManager } from "openclaw/plugin-sdk/agent-sessions";

7-

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

7+

import { afterAll, beforeAll, describe, expect, test, vi } from "vitest";

8+

import { withEnv, withEnvAsync } from "../test-utils/env.js";

89

import { estimateStringChars, estimateTokensFromChars } from "../utils/cjk-chars.js";

910

import { createToolSummaryPreviewTranscriptLines } from "./session-preview.test-helpers.js";

1011

import {

@@ -1111,8 +1112,7 @@ describe("readSessionMessages", () => {

11111112

{ message: { role: "assistant", content: "newer legacy archive" } },

11121113

]);

11131114

clearSessionTranscriptIndexCache();

1114-

vi.stubEnv("OPENCLAW_HOME", tmpDir);

1115-

try {

1115+

await withEnvAsync({ OPENCLAW_HOME: tmpDir }, async () => {

11161116

const fullMessages = await readSessionMessagesAsync(sessionId, storePath, undefined, {

11171117

mode: "full",

11181118

reason: "test cross-root reset archive fallback",

@@ -1122,9 +1122,7 @@ describe("readSessionMessages", () => {

11221122

expect(fullMessages.map((message) => (message as { content?: unknown }).content)).toEqual([

11231123

"newer legacy archive",

11241124

]);

1125-

} finally {

1126-

vi.unstubAllEnvs();

1127-

}

1125+

});

11281126

});

1129112711301128

test("does not use stale generated session archives for reset archive fallback", async () => {

@@ -2242,19 +2240,14 @@ describe("readLatestSessionUsageFromTranscript", () => {

22422240

});

2243224122442242

describe("resolveSessionTranscriptCandidates", () => {

2245-

afterEach(() => {

2246-

vi.unstubAllEnvs();

2247-

});

2248-22492243

test("fallback candidate uses OPENCLAW_HOME instead of os.homedir()", () => {

2250-

vi.stubEnv("OPENCLAW_HOME", "/srv/openclaw-home");

2251-

vi.stubEnv("HOME", "/home/other");

2252-2253-

const candidates = resolveSessionTranscriptCandidates("sess-1", undefined);

2254-

const fallback = candidates[candidates.length - 1];

2255-

expect(fallback).toBe(

2256-

path.join(path.resolve("/srv/openclaw-home"), ".openclaw", "sessions", "sess-1.jsonl"),

2257-

);

2244+

withEnv({ OPENCLAW_HOME: "/srv/openclaw-home", HOME: "/home/other" }, () => {

2245+

const candidates = resolveSessionTranscriptCandidates("sess-1", undefined);

2246+

const fallback = candidates[candidates.length - 1];

2247+

expect(fallback).toBe(

2248+

path.join(path.resolve("/srv/openclaw-home"), ".openclaw", "sessions", "sess-1.jsonl"),

2249+

);

2250+

});

22582251

});

22592252

});

22602253

@@ -2381,13 +2374,9 @@ describe("archiveSessionTranscripts", () => {

23812374

storePath = nextStorePath;

23822375

});

238323762384-

beforeAll(() => {

2385-

vi.stubEnv("OPENCLAW_HOME", tmpDir);

2386-

});

2387-2388-

afterAll(() => {

2389-

vi.unstubAllEnvs();

2390-

});

2377+

function withArchiveHome<T>(fn: () => T): T {

2378+

return withEnv({ OPENCLAW_HOME: tmpDir }, fn);

2379+

}

2391238023922381

test.each([

23932382

{

@@ -2408,42 +2397,48 @@ describe("archiveSessionTranscripts", () => {

24082397

] as const)(

24092398

"archives transcript from default and explicit sessionFile path for $sessionId",

24102399

({ transcriptFileName, buildArgs }) => {

2411-

const transcriptPath = path.join(tmpDir, transcriptFileName);

2412-

const args = buildArgs();

2413-

fs.writeFileSync(transcriptPath, '{"type":"session"}\n', "utf-8");

2414-

const archived = archiveSessionTranscripts(args);

2415-

expect(archived).toHaveLength(1);

2416-

expect(archived[0]).toContain(".reset.");

2417-

expect(fs.existsSync(transcriptPath)).toBe(false);

2418-

expect(fs.existsSync(archived[0])).toBe(true);

2400+

withArchiveHome(() => {

2401+

const transcriptPath = path.join(tmpDir, transcriptFileName);

2402+

const args = buildArgs();

2403+

fs.writeFileSync(transcriptPath, '{"type":"session"}\n', "utf-8");

2404+

const archived = archiveSessionTranscripts(args);

2405+

expect(archived).toHaveLength(1);

2406+

expect(archived[0]).toContain(".reset.");

2407+

expect(fs.existsSync(transcriptPath)).toBe(false);

2408+

expect(fs.existsSync(archived[0])).toBe(true);

2409+

});

24192410

},

24202411

);

2421241224222413

test("returns empty array when no transcript files exist", () => {

2423-

const archived = archiveSessionTranscripts({

2424-

sessionId: "nonexistent-session",

2425-

storePath,

2426-

reason: "reset",

2427-

});

2414+

withArchiveHome(() => {

2415+

const archived = archiveSessionTranscripts({

2416+

sessionId: "nonexistent-session",

2417+

storePath,

2418+

reason: "reset",

2419+

});

242824202429-

expect(archived).toStrictEqual([]);

2421+

expect(archived).toStrictEqual([]);

2422+

});

24302423

});

2431242424322425

test("skips files that do not exist and archives only existing ones", () => {

2433-

const sessionId = "sess-archive-3";

2434-

const transcriptPath = path.join(tmpDir, `${sessionId}.jsonl`);

2435-

fs.writeFileSync(transcriptPath, '{"type":"session"}\n', "utf-8");

2426+

withArchiveHome(() => {

2427+

const sessionId = "sess-archive-3";

2428+

const transcriptPath = path.join(tmpDir, `${sessionId}.jsonl`);

2429+

fs.writeFileSync(transcriptPath, '{"type":"session"}\n', "utf-8");

243624302437-

const archived = archiveSessionTranscripts({

2438-

sessionId,

2439-

storePath,

2440-

sessionFile: "/nonexistent/path/file.jsonl",

2441-

reason: "deleted",

2442-

});

2431+

const archived = archiveSessionTranscripts({

2432+

sessionId,

2433+

storePath,

2434+

sessionFile: "/nonexistent/path/file.jsonl",

2435+

reason: "deleted",

2436+

});

244324372444-

expect(archived).toHaveLength(1);

2445-

expect(archived[0]).toContain(".deleted.");

2446-

expect(fs.existsSync(transcriptPath)).toBe(false);

2438+

expect(archived).toHaveLength(1);

2439+

expect(archived[0]).toContain(".deleted.");

2440+

expect(fs.existsSync(transcriptPath)).toBe(false);

2441+

});

24472442

});

24482443

});

24492444