* fix(paths): respect OPENCLAW_HOME for all internal path resolution (#11995) Add home-dir module (src/infra/home-dir.ts) that centralizes home directory resolution with precedence: OPENCLAW_HOME > HOME > USERPROFILE > os.homedir(). Migrate all path-sensitive callsites: config IO, agent dirs, session transcripts, pairing store, cron store, doctor, CLI profiles. Add envHomedir() helper in config/paths.ts to reduce lambda noise. Document OPENCLAW_HOME in docs/help/environment.md. * fix(paths): handle OPENCLAW_HOME '~' fallback (#12091) (thanks @sebslight) * docs: mention OPENCLAW_HOME in install and getting started (#12091) (thanks @sebslight) * fix(status): show OPENCLAW_HOME in shortened paths (#12091) (thanks @sebslight) * docs(changelog): clarify OPENCLAW_HOME and HOME precedence (#12091) (thanks @sebslight)
48 lines
1.7 KiB
TypeScript
48 lines
1.7 KiB
TypeScript
import { afterEach, describe, expect, it, vi } from "vitest";
|
|
import type { OpenClawConfig } from "./types.js";
|
|
import { findDuplicateAgentDirs } from "./agent-dirs.js";
|
|
|
|
afterEach(() => {
|
|
vi.unstubAllEnvs();
|
|
});
|
|
|
|
describe("resolveEffectiveAgentDir via findDuplicateAgentDirs", () => {
|
|
it("uses OPENCLAW_HOME for default agent dir resolution", () => {
|
|
// findDuplicateAgentDirs calls resolveEffectiveAgentDir internally.
|
|
// With a single agent there are no duplicates, but we can inspect the
|
|
// resolved dir indirectly by triggering a duplicate with two agents
|
|
// that both fall through to the same default dir — which can't happen
|
|
// since they have different IDs. Instead we just verify no crash and
|
|
// that the env flows through by checking a two-agent config produces
|
|
// distinct dirs (no duplicates).
|
|
const cfg: OpenClawConfig = {
|
|
agents: {
|
|
list: [{ id: "alpha" }, { id: "beta" }],
|
|
},
|
|
};
|
|
|
|
const env = {
|
|
OPENCLAW_HOME: "/srv/openclaw-home",
|
|
HOME: "/home/other",
|
|
} as NodeJS.ProcessEnv;
|
|
|
|
const dupes = findDuplicateAgentDirs(cfg, { env });
|
|
expect(dupes).toHaveLength(0);
|
|
});
|
|
|
|
it("resolves agent dir under OPENCLAW_HOME state dir", () => {
|
|
// Force two agents to the same explicit agentDir to verify the path
|
|
// that doesn't use the default — then test the default path by
|
|
// checking that a single-agent config resolves without duplicates.
|
|
const cfg: OpenClawConfig = {};
|
|
|
|
const env = {
|
|
OPENCLAW_HOME: "/srv/openclaw-home",
|
|
} as NodeJS.ProcessEnv;
|
|
|
|
// No duplicates for a single default agent
|
|
const dupes = findDuplicateAgentDirs(cfg, { env });
|
|
expect(dupes).toHaveLength(0);
|
|
});
|
|
});
|