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

推荐订阅源

D
Docker
Apple Machine Learning Research
Apple Machine Learning Research
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园 - 三生石上(FineUI控件)
月光博客
月光博客
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
WordPress大学
WordPress大学
Hugging Face - Blog
Hugging Face - Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
M
MIT News - Artificial intelligence
腾讯CDC
B
Blog RSS Feed
H
Help Net Security
J
Java Code Geeks
有赞技术团队
有赞技术团队
Y
Y Combinator Blog
博客园_首页
Last Week in AI
Last Week in AI
博客园 - 【当耐特】
博客园 - Franky
B
Blog
MongoDB | Blog
MongoDB | Blog
博客园 - 叶小钗
Martin Fowler
Martin Fowler

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
test: bracket agent directory fixtures · openclaw/opencla...
shakkernerd · 2026-06-05 · via Recent Commits to openclaw:main

@@ -2,9 +2,10 @@

22

import fs from "node:fs";

33

import os from "node:os";

44

import path from "node:path";

5-

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

5+

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

66

import type { OpenClawConfig } from "../config/config.js";

77

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

8+

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

89

import {

910

clearAutoFallbackPrimaryProbeSelection,

1011

hasLegacyAutoFallbackWithoutOrigin,

@@ -30,10 +31,6 @@ import {

3031

setAgentEffectiveModelPrimary,

3132

} from "./agent-scope.js";

323333-

afterEach(() => {

34-

vi.unstubAllEnvs();

35-

});

36-3734

describe("resolveAgentConfig", () => {

3835

it("should return undefined when no agents config exists", () => {

3936

const cfg: OpenClawConfig = {};

@@ -1154,41 +1151,43 @@ describe("resolveAgentConfig", () => {

1154115111551152

it("uses OPENCLAW_HOME for default agent workspace", () => {

11561153

const home = path.join(path.sep, "srv", "openclaw-home");

1157-

vi.stubEnv("OPENCLAW_HOME", home);

1158-1159-

const workspace = resolveAgentWorkspaceDir({} as OpenClawConfig, "main");

1160-

expect(workspace).toBe(path.join(path.resolve(home), ".openclaw", "workspace"));

1154+

withEnv({ OPENCLAW_HOME: home }, () => {

1155+

const workspace = resolveAgentWorkspaceDir({} as OpenClawConfig, "main");

1156+

expect(workspace).toBe(path.join(path.resolve(home), ".openclaw", "workspace"));

1157+

});

11611158

});

1162115911631160

it("uses OPENCLAW_WORKSPACE_DIR for default agent workspace", () => {

11641161

const workspaceDir = path.join(path.sep, "srv", "openclaw-workspace");

1165-

vi.stubEnv("OPENCLAW_WORKSPACE_DIR", workspaceDir);

1166-

vi.stubEnv("OPENCLAW_HOME", path.join(path.sep, "srv", "openclaw-home"));

1167-1168-

const workspace = resolveAgentWorkspaceDir({} as OpenClawConfig, "main");

1169-

expect(workspace).toBe(path.resolve(workspaceDir));

1162+

withEnv(

1163+

{

1164+

OPENCLAW_WORKSPACE_DIR: workspaceDir,

1165+

OPENCLAW_HOME: path.join(path.sep, "srv", "openclaw-home"),

1166+

},

1167+

() => {

1168+

const workspace = resolveAgentWorkspaceDir({} as OpenClawConfig, "main");

1169+

expect(workspace).toBe(path.resolve(workspaceDir));

1170+

},

1171+

);

11701172

});

1171117311721174

it("uses OPENCLAW_HOME for default agentDir", () => {

11731175

const home = path.join(path.sep, "srv", "openclaw-home");

1174-

vi.stubEnv("OPENCLAW_HOME", home);

1175-

// Clear state dir so it falls back to OPENCLAW_HOME

1176-

vi.stubEnv("OPENCLAW_STATE_DIR", "");

1177-1178-

const agentDir = resolveAgentDir({} as OpenClawConfig, "main");

1179-

expect(agentDir).toBe(path.join(path.resolve(home), ".openclaw", "agents", "main", "agent"));

1176+

withEnv({ OPENCLAW_HOME: home, OPENCLAW_STATE_DIR: "" }, () => {

1177+

const agentDir = resolveAgentDir({} as OpenClawConfig, "main");

1178+

expect(agentDir).toBe(path.join(path.resolve(home), ".openclaw", "agents", "main", "agent"));

1179+

});

11801180

});

1181118111821182

it("resolves default agentDir from the configured default agent", () => {

11831183

const stateDir = path.join(path.sep, "tmp", "test-state");

1184-

vi.stubEnv("OPENCLAW_STATE_DIR", stateDir);

11851184

const cfg: OpenClawConfig = {

11861185

agents: {

11871186

list: [{ id: "main" }, { id: "ops", default: true }],

11881187

},

11891188

};

119011891191-

const agentDir = resolveDefaultAgentDir(cfg);

1190+

const agentDir = withEnv({ OPENCLAW_STATE_DIR: stateDir }, () => resolveDefaultAgentDir(cfg));

1192119111931192

expect(agentDir).toBe(path.resolve(stateDir, "agents", "ops", "agent"));

11941193

});

@@ -1217,13 +1216,14 @@ describe("resolveAgentConfig", () => {

1217121612181217

it("non-default agent without defaults.workspace falls back to stateDir", () => {

12191218

const stateDir = path.join(path.sep, "tmp", "test-state");

1220-

vi.stubEnv("OPENCLAW_STATE_DIR", stateDir);

12211219

const cfg: OpenClawConfig = {

12221220

agents: {

12231221

list: [{ id: "main" }, { id: "work", default: true, workspace: "/work-ws" }],

12241222

},

12251223

};

1226-

const workspace = resolveAgentWorkspaceDir(cfg, "main");

1224+

const workspace = withEnv({ OPENCLAW_STATE_DIR: stateDir }, () =>

1225+

resolveAgentWorkspaceDir(cfg, "main"),

1226+

);

12271227

expect(workspace).toBe(path.resolve(stateDir, "workspace-main"));

12281228

});

12291229

});