Files
openclaw/src/agents/workspace.defaults.test.ts
2026-06-19 17:24:03 +01:00

39 lines
1.2 KiB
TypeScript

// Workspace default tests cover environment-variable precedence for the
// built-in agent workspace location.
import path from "node:path";
import { describe, expect, it } from "vitest";
import { withEnv } from "../test-utils/env.js";
import { resolveDefaultAgentWorkspaceDir } from "./workspace.js";
describe("DEFAULT_AGENT_WORKSPACE_DIR", () => {
it("uses OPENCLAW_HOME when resolving the default workspace dir", () => {
const home = path.join(path.sep, "srv", "openclaw-home");
const resolved = withEnv(
{
OPENCLAW_WORKSPACE_DIR: undefined,
OPENCLAW_PROFILE: undefined,
OPENCLAW_HOME: home,
HOME: path.join(path.sep, "home", "other"),
},
() => resolveDefaultAgentWorkspaceDir(),
);
expect(resolved).toBe(path.join(path.resolve(home), ".openclaw", "workspace"));
});
it("uses OPENCLAW_WORKSPACE_DIR before OPENCLAW_HOME", () => {
const workspaceDir = path.join(path.sep, "srv", "openclaw-workspace");
const resolved = withEnv(
{
OPENCLAW_WORKSPACE_DIR: workspaceDir,
OPENCLAW_HOME: path.join(path.sep, "srv", "openclaw-home"),
},
() => resolveDefaultAgentWorkspaceDir(),
);
expect(resolved).toBe(path.resolve(workspaceDir));
});
});