mirror of
https://github.com/openclaw/openclaw.git
synced 2026-08-24 03:15:46 -06:00
6938f7dddb
* fix: gateway service commands refuse a named profile or relocated OPENCLAW_HOME - Resolve the default install identity against the canonical state directory for the active OpenClaw home and profile instead of the unprofiled OS account default. - `--profile <name>` / `--dev` project `.openclaw-<profile>` state and config paths, so every named profile was classified as isolated state and refused `install`, `start`, `stop`, `restart`, `uninstall`, Doctor service repair, and self-update service handling. - `OPENCLAW_HOME` relocates all OpenClaw path defaults and is documented for running as a dedicated service user; a relocated home is now an install identity. `HOME` alone still is not. - An `OPENCLAW_STATE_DIR` or `OPENCLAW_CONFIG_PATH` pointing outside those canonical paths is still treated as isolated state. - Recovery guidance in the refusal message now names the paths that must match. Verified: focused vitest shards for the changed suites plus the daemon, CLI, and doctor suites that consume the identity check; tsgo core and core-test lanes; oxlint; docs format, MDX, link, and map checks. * fix(gateway): keep relocated homes isolated * fix(config): validate service profile identity * fix(daemon): enforce named-profile service ownership * fix(update): reject drifted service selectors before probes * test(windows): prove scheduled task lifecycle * test(windows): harden scheduled task proof cleanup * test(windows): bind lifecycle proof to checkout * test(windows): normalize cleanup exit status * test(windows): verify effective task privilege * test(windows): protect scheduled task proof roots * test(windows): prove listener-owned task lifecycle * test(windows): fix scheduled task proof contracts * test(windows): remove redundant mock coercions * test(windows): measure fallback before task probes * test(windows): prove scheduled task process origin * fix(gateway): preserve unmanaged restart fallback * test(gateway): cover denied restart ownership * test(gateway): keep restart helper types private * test(gateway): classify lifecycle helpers as test code --------- Co-authored-by: Vincent Koc <vincentkoc@ieee.org>
583 lines
18 KiB
TypeScript
583 lines
18 KiB
TypeScript
// Profile CLI tests cover profile selection, persistence, and command wiring.
|
|
import path from "node:path";
|
|
import { describe, expect, it } from "vitest";
|
|
import { formatCliCommand } from "./command-format.js";
|
|
import { applyCliProfileEnv, parseCliProfileArgs } from "./profile.js";
|
|
|
|
describe("parseCliProfileArgs", () => {
|
|
it("leaves gateway --dev for subcommands", () => {
|
|
const res = parseCliProfileArgs([
|
|
"node",
|
|
"openclaw",
|
|
"gateway",
|
|
"--dev",
|
|
"--allow-unconfigured",
|
|
]);
|
|
if (!res.ok) {
|
|
throw new Error(res.error);
|
|
}
|
|
expect(res.profile).toBeNull();
|
|
expect(res.argv).toEqual(["node", "openclaw", "gateway", "--dev", "--allow-unconfigured"]);
|
|
});
|
|
|
|
it("leaves gateway --dev for subcommands after leading root options", () => {
|
|
const res = parseCliProfileArgs([
|
|
"node",
|
|
"openclaw",
|
|
"--no-color",
|
|
"gateway",
|
|
"--dev",
|
|
"--allow-unconfigured",
|
|
]);
|
|
if (!res.ok) {
|
|
throw new Error(res.error);
|
|
}
|
|
expect(res.profile).toBeNull();
|
|
expect(res.argv).toEqual([
|
|
"node",
|
|
"openclaw",
|
|
"--no-color",
|
|
"gateway",
|
|
"--dev",
|
|
"--allow-unconfigured",
|
|
]);
|
|
});
|
|
|
|
it("still accepts global --dev before subcommand", () => {
|
|
const res = parseCliProfileArgs(["node", "openclaw", "--dev", "gateway"]);
|
|
if (!res.ok) {
|
|
throw new Error(res.error);
|
|
}
|
|
expect(res.profile).toBe("dev");
|
|
expect(res.argv).toEqual(["node", "openclaw", "gateway"]);
|
|
});
|
|
|
|
it("parses --profile value and strips it", () => {
|
|
const res = parseCliProfileArgs(["node", "openclaw", "--profile", "work", "status"]);
|
|
if (!res.ok) {
|
|
throw new Error(res.error);
|
|
}
|
|
expect(res.profile).toBe("work");
|
|
expect(res.argv).toEqual(["node", "openclaw", "status"]);
|
|
});
|
|
|
|
it("parses interleaved --profile after the command token", () => {
|
|
const res = parseCliProfileArgs(["node", "openclaw", "status", "--profile", "work", "--deep"]);
|
|
if (!res.ok) {
|
|
throw new Error(res.error);
|
|
}
|
|
expect(res.profile).toBe("work");
|
|
expect(res.argv).toEqual(["node", "openclaw", "status", "--deep"]);
|
|
});
|
|
|
|
it("preserves Matrix QA --profile for the command parser", () => {
|
|
const res = parseCliProfileArgs([
|
|
"node",
|
|
"openclaw",
|
|
"qa",
|
|
"matrix",
|
|
"--profile",
|
|
"fast",
|
|
"--fail-fast",
|
|
]);
|
|
if (!res.ok) {
|
|
throw new Error(res.error);
|
|
}
|
|
expect(res.profile).toBeNull();
|
|
expect(res.argv).toEqual([
|
|
"node",
|
|
"openclaw",
|
|
"qa",
|
|
"matrix",
|
|
"--profile",
|
|
"fast",
|
|
"--fail-fast",
|
|
]);
|
|
});
|
|
|
|
it("preserves Matrix QA --profile after leading root options", () => {
|
|
const res = parseCliProfileArgs([
|
|
"node",
|
|
"openclaw",
|
|
"--no-color",
|
|
"qa",
|
|
"matrix",
|
|
"--profile=fast",
|
|
]);
|
|
if (!res.ok) {
|
|
throw new Error(res.error);
|
|
}
|
|
expect(res.profile).toBeNull();
|
|
expect(res.argv).toEqual(["node", "openclaw", "--no-color", "qa", "matrix", "--profile=fast"]);
|
|
});
|
|
|
|
it("parses qa run --profile smoke-ci as a root profile", () => {
|
|
const res = parseCliProfileArgs([
|
|
"node",
|
|
"openclaw",
|
|
"qa",
|
|
"run",
|
|
"--profile",
|
|
"smoke-ci",
|
|
"--category",
|
|
"agent-runtime.agent-turn-execution",
|
|
]);
|
|
if (!res.ok) {
|
|
throw new Error(res.error);
|
|
}
|
|
expect(res.profile).toBe("smoke-ci");
|
|
expect(res.argv).toEqual([
|
|
"node",
|
|
"openclaw",
|
|
"qa",
|
|
"run",
|
|
"--category",
|
|
"agent-runtime.agent-turn-execution",
|
|
]);
|
|
});
|
|
|
|
it("parses qa run --profile=release self-check invocations as root profiles", () => {
|
|
const res = parseCliProfileArgs([
|
|
"node",
|
|
"openclaw",
|
|
"qa",
|
|
"run",
|
|
"--profile=release",
|
|
"--output",
|
|
"qa-report.md",
|
|
]);
|
|
if (!res.ok) {
|
|
throw new Error(res.error);
|
|
}
|
|
expect(res.profile).toBe("release");
|
|
expect(res.argv).toEqual(["node", "openclaw", "qa", "run", "--output", "qa-report.md"]);
|
|
});
|
|
|
|
it("preserves qa run --qa-profile for the command parser", () => {
|
|
const res = parseCliProfileArgs([
|
|
"node",
|
|
"openclaw",
|
|
"qa",
|
|
"run",
|
|
"--qa-profile",
|
|
"smoke-ci",
|
|
"--surface",
|
|
"agent-runtime",
|
|
]);
|
|
if (!res.ok) {
|
|
throw new Error(res.error);
|
|
}
|
|
expect(res.profile).toBeNull();
|
|
expect(res.argv).toEqual([
|
|
"node",
|
|
"openclaw",
|
|
"qa",
|
|
"run",
|
|
"--qa-profile",
|
|
"smoke-ci",
|
|
"--surface",
|
|
"agent-runtime",
|
|
]);
|
|
});
|
|
|
|
it("parses arbitrary qa run --profile values as root profiles", () => {
|
|
const res = parseCliProfileArgs([
|
|
"node",
|
|
"openclaw",
|
|
"qa",
|
|
"run",
|
|
"--profile",
|
|
"work",
|
|
"--output",
|
|
"qa-report.md",
|
|
]);
|
|
if (!res.ok) {
|
|
throw new Error(res.error);
|
|
}
|
|
expect(res.profile).toBe("work");
|
|
expect(res.argv).toEqual(["node", "openclaw", "qa", "run", "--output", "qa-report.md"]);
|
|
});
|
|
|
|
it("parses arbitrary qa run --profile= values as root profiles", () => {
|
|
const res = parseCliProfileArgs([
|
|
"node",
|
|
"openclaw",
|
|
"qa",
|
|
"run",
|
|
"--profile=work",
|
|
"--output",
|
|
"qa-report.md",
|
|
]);
|
|
if (!res.ok) {
|
|
throw new Error(res.error);
|
|
}
|
|
expect(res.profile).toBe("work");
|
|
expect(res.argv).toEqual(["node", "openclaw", "qa", "run", "--output", "qa-report.md"]);
|
|
});
|
|
|
|
it("still parses root --profile before qa run", () => {
|
|
const res = parseCliProfileArgs([
|
|
"node",
|
|
"openclaw",
|
|
"--profile",
|
|
"work",
|
|
"qa",
|
|
"run",
|
|
"--qa-profile",
|
|
"smoke-ci",
|
|
]);
|
|
if (!res.ok) {
|
|
throw new Error(res.error);
|
|
}
|
|
expect(res.profile).toBe("work");
|
|
expect(res.argv).toEqual(["node", "openclaw", "qa", "run", "--qa-profile", "smoke-ci"]);
|
|
});
|
|
|
|
it("still parses root --profile before Matrix QA", () => {
|
|
const res = parseCliProfileArgs([
|
|
"node",
|
|
"openclaw",
|
|
"--profile",
|
|
"work",
|
|
"qa",
|
|
"matrix",
|
|
"--fail-fast",
|
|
]);
|
|
if (!res.ok) {
|
|
throw new Error(res.error);
|
|
}
|
|
expect(res.profile).toBe("work");
|
|
expect(res.argv).toEqual(["node", "openclaw", "qa", "matrix", "--fail-fast"]);
|
|
});
|
|
|
|
it("parses interleaved --dev after the command token", () => {
|
|
const res = parseCliProfileArgs(["node", "openclaw", "status", "--dev"]);
|
|
if (!res.ok) {
|
|
throw new Error(res.error);
|
|
}
|
|
expect(res.profile).toBe("dev");
|
|
expect(res.argv).toEqual(["node", "openclaw", "status"]);
|
|
});
|
|
|
|
it("rejects missing profile value", () => {
|
|
const res = parseCliProfileArgs(["node", "openclaw", "--profile"]);
|
|
expect(res.ok).toBe(false);
|
|
});
|
|
|
|
it.each([
|
|
["--dev first", ["node", "openclaw", "--dev", "--profile", "work", "status"]],
|
|
["--profile first", ["node", "openclaw", "--profile", "work", "--dev", "status"]],
|
|
["interleaved after command", ["node", "openclaw", "status", "--profile", "work", "--dev"]],
|
|
])("rejects combining --dev with --profile (%s)", (_name, argv) => {
|
|
const res = parseCliProfileArgs(argv);
|
|
expect(res.ok).toBe(false);
|
|
});
|
|
});
|
|
|
|
describe("applyCliProfileEnv", () => {
|
|
it("fills env defaults for dev profile", () => {
|
|
const env: Record<string, string | undefined> = {};
|
|
applyCliProfileEnv({
|
|
profile: "dev",
|
|
env,
|
|
homedir: () => "/home/peter",
|
|
});
|
|
const expectedStateDir = path.join(path.resolve("/home/peter"), ".openclaw-dev");
|
|
expect(env.OPENCLAW_PROFILE).toBe("dev");
|
|
expect(env.OPENCLAW_STATE_DIR).toBe(expectedStateDir);
|
|
expect(env.OPENCLAW_CONFIG_PATH).toBe(path.join(expectedStateDir, "openclaw.json"));
|
|
expect(env.OPENCLAW_GATEWAY_PORT).toBe("19001");
|
|
});
|
|
|
|
it("does not override explicit env values", () => {
|
|
const env: Record<string, string | undefined> = {
|
|
OPENCLAW_PROFILE: "prod",
|
|
OPENCLAW_STATE_DIR: "/custom",
|
|
OPENCLAW_GATEWAY_PORT: "19099",
|
|
};
|
|
applyCliProfileEnv({
|
|
profile: "dev",
|
|
env,
|
|
homedir: () => "/home/peter",
|
|
});
|
|
expect(env.OPENCLAW_PROFILE).toBe("dev");
|
|
expect(env.OPENCLAW_STATE_DIR).toBe("/custom");
|
|
expect(env.OPENCLAW_GATEWAY_PORT).toBe("19099");
|
|
expect(env.OPENCLAW_CONFIG_PATH).toBe(path.join("/custom", "openclaw.json"));
|
|
});
|
|
|
|
it.each([
|
|
{
|
|
name: "the default profile without a profile marker",
|
|
inheritedProfile: undefined,
|
|
inheritedStateDir: "/home/peter/.openclaw",
|
|
},
|
|
{
|
|
name: "the explicitly marked default profile",
|
|
inheritedProfile: "default",
|
|
inheritedStateDir: "/home/peter/.openclaw",
|
|
},
|
|
{
|
|
name: "another named profile",
|
|
inheritedProfile: "main",
|
|
inheritedStateDir: "/home/peter/.openclaw-main",
|
|
},
|
|
{
|
|
name: "a home-relative default state directory",
|
|
inheritedProfile: undefined,
|
|
inheritedStateDir: "~/.openclaw",
|
|
},
|
|
])(
|
|
"switches inherited canonical state from $name to the requested profile",
|
|
({ inheritedProfile, inheritedStateDir }) => {
|
|
const env: Record<string, string | undefined> = {
|
|
OPENCLAW_PROFILE: inheritedProfile,
|
|
OPENCLAW_STATE_DIR: inheritedStateDir,
|
|
OPENCLAW_CONFIG_PATH: path.join(inheritedStateDir, "openclaw.json"),
|
|
};
|
|
|
|
applyCliProfileEnv({ profile: "work", env, homedir: () => "/home/peter" });
|
|
|
|
const expectedStateDir = path.join(path.resolve("/home/peter"), ".openclaw-work");
|
|
expect(env.OPENCLAW_PROFILE).toBe("work");
|
|
expect(env.OPENCLAW_STATE_DIR).toBe(expectedStateDir);
|
|
expect(env.OPENCLAW_CONFIG_PATH).toBe(path.join(expectedStateDir, "openclaw.json"));
|
|
},
|
|
);
|
|
|
|
it("preserves an explicit config outside inherited canonical profile state", () => {
|
|
const env: Record<string, string | undefined> = {
|
|
OPENCLAW_PROFILE: "main",
|
|
OPENCLAW_STATE_DIR: "/home/peter/.openclaw-main",
|
|
OPENCLAW_CONFIG_PATH: "/srv/openclaw/custom.json",
|
|
};
|
|
|
|
applyCliProfileEnv({ profile: "work", env, homedir: () => "/home/peter" });
|
|
|
|
expect(env.OPENCLAW_STATE_DIR).toBe("/home/peter/.openclaw-work");
|
|
expect(env.OPENCLAW_CONFIG_PATH).toBe("/srv/openclaw/custom.json");
|
|
});
|
|
|
|
it.each(["openclaw-gateway-main", "openclaw-gateway-main.service"])(
|
|
"drops inherited canonical service identities when switching profiles (%s)",
|
|
(systemdUnit) => {
|
|
const env: Record<string, string | undefined> = {
|
|
OPENCLAW_PROFILE: "main",
|
|
OPENCLAW_STATE_DIR: "/home/peter/.openclaw-main",
|
|
OPENCLAW_CONFIG_PATH: "/home/peter/.openclaw-main/openclaw.json",
|
|
OPENCLAW_LAUNCHD_LABEL: "ai.openclaw.main",
|
|
OPENCLAW_SYSTEMD_UNIT: systemdUnit,
|
|
OPENCLAW_WINDOWS_TASK_NAME: "OpenClaw Gateway (main)",
|
|
};
|
|
|
|
applyCliProfileEnv({ profile: "work", env, homedir: () => "/home/peter" });
|
|
|
|
expect(env.OPENCLAW_LAUNCHD_LABEL).toBeUndefined();
|
|
expect(env.OPENCLAW_SYSTEMD_UNIT).toBeUndefined();
|
|
expect(env.OPENCLAW_WINDOWS_TASK_NAME).toBeUndefined();
|
|
},
|
|
);
|
|
|
|
it("preserves explicit custom service identities when switching profiles", () => {
|
|
const env: Record<string, string | undefined> = {
|
|
OPENCLAW_PROFILE: "main",
|
|
OPENCLAW_LAUNCHD_LABEL: "com.example.gateway",
|
|
OPENCLAW_SYSTEMD_UNIT: "custom-gateway.service",
|
|
OPENCLAW_WINDOWS_TASK_NAME: "Custom Gateway",
|
|
};
|
|
|
|
applyCliProfileEnv({ profile: "work", env, homedir: () => "/home/peter" });
|
|
|
|
expect(env.OPENCLAW_LAUNCHD_LABEL).toBe("com.example.gateway");
|
|
expect(env.OPENCLAW_SYSTEMD_UNIT).toBe("custom-gateway.service");
|
|
expect(env.OPENCLAW_WINDOWS_TASK_NAME).toBe("Custom Gateway");
|
|
});
|
|
|
|
it.each([
|
|
{ inheritedProfile: "Main", selectedProfile: "main" },
|
|
{ inheritedProfile: "main", selectedProfile: "Main" },
|
|
])(
|
|
"keeps case-distinct named profiles isolated ($inheritedProfile to $selectedProfile)",
|
|
({ inheritedProfile, selectedProfile }) => {
|
|
const inheritedStateDir = `/home/peter/.openclaw-${inheritedProfile}`;
|
|
const env: Record<string, string | undefined> = {
|
|
OPENCLAW_PROFILE: inheritedProfile,
|
|
OPENCLAW_STATE_DIR: inheritedStateDir,
|
|
OPENCLAW_CONFIG_PATH: path.join(inheritedStateDir, "openclaw.json"),
|
|
};
|
|
|
|
applyCliProfileEnv({ profile: selectedProfile, env, homedir: () => "/home/peter" });
|
|
|
|
const expectedStateDir = `/home/peter/.openclaw-${selectedProfile}`;
|
|
expect(env.OPENCLAW_PROFILE).toBe(selectedProfile);
|
|
expect(env.OPENCLAW_STATE_DIR).toBe(expectedStateDir);
|
|
expect(env.OPENCLAW_CONFIG_PATH).toBe(path.join(expectedStateDir, "openclaw.json"));
|
|
},
|
|
);
|
|
|
|
it("treats case variants of the default profile as the same canonical profile", () => {
|
|
const stateDir = "/home/peter/.openclaw";
|
|
const env: Record<string, string | undefined> = {
|
|
OPENCLAW_PROFILE: "Default",
|
|
OPENCLAW_STATE_DIR: stateDir,
|
|
OPENCLAW_CONFIG_PATH: path.join(stateDir, "openclaw.json"),
|
|
};
|
|
|
|
applyCliProfileEnv({ profile: "default", env, homedir: () => "/home/peter" });
|
|
|
|
expect(env.OPENCLAW_PROFILE).toBe("default");
|
|
expect(env.OPENCLAW_STATE_DIR).toBe(stateDir);
|
|
expect(env.OPENCLAW_CONFIG_PATH).toBe(path.join(stateDir, "openclaw.json"));
|
|
});
|
|
|
|
it.each([
|
|
{
|
|
name: "the default profile",
|
|
inheritedProfile: undefined,
|
|
inheritedConfigPath: "/home/peter/.openclaw/openclaw.json",
|
|
},
|
|
{
|
|
name: "another named profile",
|
|
inheritedProfile: "main",
|
|
inheritedConfigPath: "/home/peter/.openclaw-main/openclaw.json",
|
|
},
|
|
{
|
|
name: "a home-relative named profile",
|
|
inheritedProfile: "main",
|
|
inheritedConfigPath: "~/.openclaw-main/openclaw.json",
|
|
},
|
|
])(
|
|
"switches an inherited $name config when the state directory is absent",
|
|
({ inheritedProfile, inheritedConfigPath }) => {
|
|
const env: Record<string, string | undefined> = {
|
|
OPENCLAW_PROFILE: inheritedProfile,
|
|
OPENCLAW_CONFIG_PATH: inheritedConfigPath,
|
|
};
|
|
|
|
applyCliProfileEnv({ profile: "work", env, homedir: () => "/home/peter" });
|
|
|
|
const expectedStateDir = "/home/peter/.openclaw-work";
|
|
expect(env.OPENCLAW_PROFILE).toBe("work");
|
|
expect(env.OPENCLAW_STATE_DIR).toBe(expectedStateDir);
|
|
expect(env.OPENCLAW_CONFIG_PATH).toBe(path.join(expectedStateDir, "openclaw.json"));
|
|
},
|
|
);
|
|
|
|
it("uses OPENCLAW_HOME when deriving profile state dir", () => {
|
|
const env: Record<string, string | undefined> = {
|
|
OPENCLAW_HOME: "/srv/openclaw-home",
|
|
HOME: "/home/other",
|
|
};
|
|
applyCliProfileEnv({
|
|
profile: "work",
|
|
env,
|
|
homedir: () => "/home/fallback",
|
|
});
|
|
|
|
const resolvedHome = path.resolve("/srv/openclaw-home");
|
|
expect(env.OPENCLAW_STATE_DIR).toBe(path.join(resolvedHome, ".openclaw-work"));
|
|
expect(env.OPENCLAW_CONFIG_PATH).toBe(
|
|
path.join(resolvedHome, ".openclaw-work", "openclaw.json"),
|
|
);
|
|
});
|
|
});
|
|
|
|
describe("formatCliCommand", () => {
|
|
it.each([
|
|
{
|
|
name: "no profile is set",
|
|
cmd: "openclaw doctor --fix",
|
|
env: {},
|
|
expected: "openclaw doctor --fix",
|
|
},
|
|
{
|
|
name: "profile is default",
|
|
cmd: "openclaw doctor --fix",
|
|
env: { OPENCLAW_PROFILE: "default" },
|
|
expected: "openclaw doctor --fix",
|
|
},
|
|
{
|
|
name: "profile is Default (case-insensitive)",
|
|
cmd: "openclaw doctor --fix",
|
|
env: { OPENCLAW_PROFILE: "Default" },
|
|
expected: "openclaw doctor --fix",
|
|
},
|
|
{
|
|
name: "profile is invalid",
|
|
cmd: "openclaw doctor --fix",
|
|
env: { OPENCLAW_PROFILE: "bad profile" },
|
|
expected: "openclaw doctor --fix",
|
|
},
|
|
{
|
|
name: "--profile is already present",
|
|
cmd: "openclaw --profile work doctor --fix",
|
|
env: { OPENCLAW_PROFILE: "work" },
|
|
expected: "openclaw --profile work doctor --fix",
|
|
},
|
|
{
|
|
name: "--dev is already present",
|
|
cmd: "openclaw --dev doctor",
|
|
env: { OPENCLAW_PROFILE: "dev" },
|
|
expected: "openclaw --dev doctor",
|
|
},
|
|
])("returns command unchanged when $name", ({ cmd, env, expected }) => {
|
|
expect(formatCliCommand(cmd, env)).toBe(expected);
|
|
});
|
|
|
|
it("inserts --profile flag when profile is set", () => {
|
|
expect(formatCliCommand("openclaw doctor --fix", { OPENCLAW_PROFILE: "work" })).toBe(
|
|
"openclaw --profile work doctor --fix",
|
|
);
|
|
});
|
|
|
|
it("trims whitespace from profile", () => {
|
|
expect(formatCliCommand("openclaw doctor --fix", { OPENCLAW_PROFILE: " jbopenclaw " })).toBe(
|
|
"openclaw --profile jbopenclaw doctor --fix",
|
|
);
|
|
});
|
|
|
|
it("handles command with no args after openclaw", () => {
|
|
expect(formatCliCommand("openclaw", { OPENCLAW_PROFILE: "test" })).toBe(
|
|
"openclaw --profile test",
|
|
);
|
|
});
|
|
|
|
it("handles pnpm wrapper", () => {
|
|
expect(formatCliCommand("pnpm openclaw doctor", { OPENCLAW_PROFILE: "work" })).toBe(
|
|
"pnpm openclaw --profile work doctor",
|
|
);
|
|
});
|
|
|
|
it("inserts --container when a container hint is set", () => {
|
|
expect(
|
|
formatCliCommand("openclaw gateway status --deep", { OPENCLAW_CONTAINER_HINT: "demo" }),
|
|
).toBe("openclaw --container demo gateway status --deep");
|
|
});
|
|
|
|
it("ignores unsafe container hints", () => {
|
|
expect(
|
|
formatCliCommand("openclaw gateway status --deep", {
|
|
OPENCLAW_CONTAINER_HINT: "demo; rm -rf /",
|
|
}),
|
|
).toBe("openclaw gateway status --deep");
|
|
});
|
|
|
|
it("preserves both --container and --profile hints", () => {
|
|
expect(
|
|
formatCliCommand("openclaw doctor", {
|
|
OPENCLAW_CONTAINER_HINT: "demo",
|
|
OPENCLAW_PROFILE: "work",
|
|
}),
|
|
).toBe("openclaw --container demo doctor");
|
|
});
|
|
|
|
it("does not prepend --container for update commands", () => {
|
|
expect(formatCliCommand("openclaw update", { OPENCLAW_CONTAINER_HINT: "demo" })).toBe(
|
|
"openclaw update",
|
|
);
|
|
expect(
|
|
formatCliCommand("pnpm openclaw update --channel beta", { OPENCLAW_CONTAINER_HINT: "demo" }),
|
|
).toBe("pnpm openclaw update --channel beta");
|
|
});
|
|
});
|