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

推荐订阅源

WordPress大学
WordPress大学
博客园 - 司徒正美
I
InfoQ
宝玉的分享
宝玉的分享
G
Google Developers Blog
J
Java Code Geeks
Martin Fowler
Martin Fowler
The GitHub Blog
The GitHub Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
罗磊的独立博客
腾讯CDC
F
Fortinet All Blogs
A
About on SuperTechFans
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Recent Announcements
Recent Announcements
Last Week in AI
Last Week in AI
B
Blog RSS Feed
博客园 - 聂微东
D
DataBreaches.Net
Hugging Face - Blog
Hugging Face - Blog
The Cloudflare Blog
L
LangChain Blog
Microsoft Azure Blog
Microsoft Azure Blog
aimingoo的专栏
aimingoo的专栏

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: reuse doctor env snapshot helper · openclaw/openclaw...
shakkernerd · 2026-06-22 · via Recent Commits to openclaw:main

@@ -10,6 +10,7 @@ import {

1010

resolveSessionTranscriptsDirForAgent,

1111

} from "../config/sessions/paths.js";

1212

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

13+

import { captureEnv, deleteTestEnvValue, setTestEnvValue } from "../test-utils/env.js";

1314

import {

1415

clearTuiLastSessionPointers,

1516

moveHeartbeatMainSessionEntry,

@@ -29,35 +30,6 @@ vi.mock("../channels/plugins/persisted-auth-state.js", () => ({

29303031

const noteMock = vi.fn();

313232-

type EnvSnapshot = {

33-

HOME?: string;

34-

OPENCLAW_HOME?: string;

35-

OPENCLAW_STATE_DIR?: string;

36-

OPENCLAW_OAUTH_DIR?: string;

37-

OPENCLAW_AGENT_DIR?: string;

38-

};

39-40-

function captureEnv(): EnvSnapshot {

41-

return {

42-

HOME: process.env.HOME,

43-

OPENCLAW_HOME: process.env.OPENCLAW_HOME,

44-

OPENCLAW_STATE_DIR: process.env.OPENCLAW_STATE_DIR,

45-

OPENCLAW_OAUTH_DIR: process.env.OPENCLAW_OAUTH_DIR,

46-

OPENCLAW_AGENT_DIR: process.env.OPENCLAW_AGENT_DIR,

47-

};

48-

}

49-50-

function restoreEnv(snapshot: EnvSnapshot) {

51-

for (const key of Object.keys(snapshot) as Array<keyof EnvSnapshot>) {

52-

const value = snapshot[key];

53-

if (value === undefined) {

54-

delete process.env[key];

55-

} else {

56-

process.env[key] = value;

57-

}

58-

}

59-

}

60-6133

function setupSessionState(cfg: OpenClawConfig, env: NodeJS.ProcessEnv, homeDir: string) {

6234

const agentId = "main";

6335

const sessionsDir = resolveSessionTranscriptsDirForAgent(agentId, env, () => homeDir);

@@ -149,23 +121,30 @@ async function runOrphanTranscriptCheckWithQmdSessions(enabled: boolean, homeDir

149121

}

150122151123

describe("doctor state integrity oauth dir checks", () => {

152-

let envSnapshot: EnvSnapshot;

124+

let envSnapshot: ReturnType<typeof captureEnv>;

153125

let tempHome = "";

154126155127

beforeEach(() => {

156-

envSnapshot = captureEnv();

128+

envSnapshot = captureEnv([

129+

"HOME",

130+

"OPENCLAW_HOME",

131+

"OPENCLAW_STATE_DIR",

132+

"OPENCLAW_OAUTH_DIR",

133+

"OPENCLAW_AGENT_DIR",

134+

]);

157135

tempHome = fs.mkdtempSync(path.join(os.tmpdir(), "openclaw-doctor-state-integrity-"));

158-

process.env.HOME = tempHome;

159-

process.env.OPENCLAW_HOME = tempHome;

160-

process.env.OPENCLAW_STATE_DIR = path.join(tempHome, ".openclaw");

161-

delete process.env.OPENCLAW_OAUTH_DIR;

162-

delete process.env.OPENCLAW_AGENT_DIR;

163-

fs.mkdirSync(process.env.OPENCLAW_STATE_DIR, { recursive: true, mode: 0o700 });

136+

const stateDir = path.join(tempHome, ".openclaw");

137+

setTestEnvValue("HOME", tempHome);

138+

setTestEnvValue("OPENCLAW_HOME", tempHome);

139+

setTestEnvValue("OPENCLAW_STATE_DIR", stateDir);

140+

deleteTestEnvValue("OPENCLAW_OAUTH_DIR");

141+

deleteTestEnvValue("OPENCLAW_AGENT_DIR");

142+

fs.mkdirSync(stateDir, { recursive: true, mode: 0o700 });

164143

noteMock.mockClear();

165144

});

166145167146

afterEach(() => {

168-

restoreEnv(envSnapshot);

147+

envSnapshot.restore();

169148

fs.rmSync(tempHome, { recursive: true, force: true });

170149

});

171150

@@ -274,7 +253,7 @@ describe("doctor state integrity oauth dir checks", () => {

274253

"legacy",

275254

"agent",

276255

);

277-

process.env.OPENCLAW_AGENT_DIR = legacyAgentDir;

256+

setTestEnvValue("OPENCLAW_AGENT_DIR", legacyAgentDir);

278257279258

const text = await runStateIntegrityText({

280259

agents: {

@@ -467,9 +446,10 @@ describe("doctor state integrity oauth dir checks", () => {

467446

);

468447

fs.symlinkSync(originalHome, symlinkHome, "dir");

469448

try {

470-

process.env.HOME = symlinkHome;

471-

process.env.OPENCLAW_HOME = symlinkHome;

472-

process.env.OPENCLAW_STATE_DIR = path.join(symlinkHome, ".openclaw");

449+

const symlinkStateDir = path.join(symlinkHome, ".openclaw");

450+

setTestEnvValue("HOME", symlinkHome);

451+

setTestEnvValue("OPENCLAW_HOME", symlinkHome);

452+

setTestEnvValue("OPENCLAW_STATE_DIR", symlinkStateDir);

473453474454

setupSessionState(cfg, process.env, symlinkHome);

475455

const sessionsDir = resolveSessionTranscriptsDirForAgent(