File size: 26,370 Bytes
eb3f11e | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 | // Error output tests cover program-level error display and exit messaging.
import { CommanderError, InvalidArgumentError, type Command } from "commander";
import { describe, expect, it } from "vitest";
import { isConfigMachineOutput } from "../config-output-mode.js";
import { createCronOutputCommand, isCronMachineOutput } from "../cron-cli/output-mode.js";
import { isDevicesMachineOutput } from "../devices-output-mode.js";
import { ExpectedCliError, formatCliJsonFailure } from "../failure-output.js";
import {
isJsonOutputModeActive,
withConsoleLogsRoutedToStderrForJson,
} from "../json-output-mode.js";
import { isNodesMachineOutput } from "../nodes-cli/output-mode.js";
import { isProxyMachineOutput } from "../proxy-output-mode.js";
import { isSkillsMachineOutput } from "../skills-output-mode.js";
import { isSystemMachineOutput } from "../system-output-mode.js";
import {
getCommanderErrorCommandNames,
getCommanderErrorCommandPath,
} from "./commander-parse-facts.js";
import {
createCliParseError,
createCliUnknownCommandError,
formatCliParseErrorOutput,
} from "./error-output.js";
import { setCommandJsonMode } from "./json-mode.js";
import { OpenClawCommand } from "./openclaw-command.js";
import { registerLazyCommand } from "./register-lazy-command.js";
async function parseLazyGroupError(params: {
argv: string[];
group: string;
subcommands: Array<{ name: string; aliases?: string[] }>;
}): Promise<{ error: CommanderError; output: string; stdout: string }> {
const originalArgv = process.argv;
process.argv = ["node", "openclaw", ...params.argv];
let output = "";
let stdout = "";
try {
const program = new OpenClawCommand().name("openclaw").exitOverride();
program.configureOutput({
writeOut: (value) => {
stdout += value;
},
writeErr: (value) => {
output += value;
},
outputError: (value, write) => {
write(
formatCliParseErrorOutput(value, {
argv: process.argv,
commandPath: getCommanderErrorCommandPath(program),
commandNames: getCommanderErrorCommandNames(program),
}),
);
},
});
registerLazyCommand({
program,
name: params.group,
description: `${params.group} commands`,
register: () => {
const group = program.command(params.group).action(() => {});
for (const subcommand of params.subcommands) {
const command = group.command(subcommand.name).action(() => {});
for (const alias of subcommand.aliases ?? []) {
command.alias(alias);
}
}
},
});
const error = await program.parseAsync(process.argv).catch((cause: unknown) => cause);
expect(error).toBeInstanceOf(CommanderError);
return { error: error as CommanderError, output, stdout };
} finally {
process.argv = originalArgv;
}
}
describe("formatCliParseErrorOutput", () => {
it.each<{
name: string;
args: string[];
root: string;
alias?: string;
children: string[];
argument?: string;
requiredOption?: string;
valueOption?: string;
message: string;
machineOutput: (argv: readonly string[], command?: Command) => boolean;
}>([
{
name: "automation lookup",
args: ["cron", "get"],
root: "cron",
children: ["get"],
argument: "<id>",
message: 'Missing required argument "id".',
machineOutput: isCronMachineOutput,
},
{
name: "profiled automation alias",
args: ["--profile", "work", "automations", "get"],
root: "cron",
alias: "automations",
children: ["get"],
argument: "<id>",
message: 'Missing required argument "id".',
machineOutput: isCronMachineOutput,
},
{
name: "raw automation scratch",
args: ["cron", "scratch"],
root: "cron",
children: ["scratch"],
argument: "<id>",
message: 'Missing required argument "id".',
machineOutput: isCronMachineOutput,
},
{
name: "skill verification",
args: ["skills", "verify"],
root: "skills",
children: ["verify"],
argument: "<ref>",
message: 'Missing required argument "ref".',
machineOutput: isSkillsMachineOutput,
},
{
name: "skill verification after a parent terminator",
args: ["skills", "--", "verify"],
root: "skills",
children: ["verify"],
argument: "<ref>",
message: 'Missing required argument "ref".',
machineOutput: isSkillsMachineOutput,
},
{
name: "config read after a parent terminator",
args: ["config", "--", "get"],
root: "config",
children: ["get"],
argument: "<path>",
message: 'Missing required argument "path".',
machineOutput: isConfigMachineOutput,
},
{
name: "skill verification after a root terminator",
args: ["--", "skills", "verify"],
root: "skills",
children: ["verify"],
argument: "<ref>",
message: 'Missing required argument "ref".',
machineOutput: isSkillsMachineOutput,
},
{
name: "config read after a root terminator",
args: ["--", "config", "get"],
root: "config",
children: ["get"],
argument: "<path>",
message: 'Missing required argument "path".',
machineOutput: isConfigMachineOutput,
},
...["version", "tag"].map((option) => ({
name: `skill verification with a card-looking ${option} value`,
args: ["skills", "verify", `--${option}`, "--card"],
root: "skills",
children: ["verify"],
argument: "<ref>",
valueOption: `--${option} <value>`,
message: 'Missing required argument "ref".',
machineOutput: isSkillsMachineOutput,
})),
{
name: "node invocation",
args: ["nodes", "invoke"],
root: "nodes",
children: ["invoke"],
requiredOption: "--node <id>",
message: 'Missing required option "--node <id>".',
machineOutput: isNodesMachineOutput,
},
{
name: "node approval",
args: ["nodes", "approve"],
root: "nodes",
children: ["approve"],
argument: "<requestId>",
message: 'Missing required argument "requestId".',
machineOutput: isNodesMachineOutput,
},
{
name: "device rotation",
args: ["devices", "rotate"],
root: "devices",
children: ["rotate"],
requiredOption: "--device <id>",
message: 'Missing required option "--device <id>".',
machineOutput: isDevicesMachineOutput,
},
{
name: "raw proxy blob",
args: ["proxy", "blob"],
root: "proxy",
children: ["blob"],
argument: "<blobId>",
message: 'Missing required argument "blobId".',
machineOutput: isProxyMachineOutput,
},
{
name: "nested system heartbeat",
args: ["system", "heartbeat", "last", "--unknown"],
root: "system",
children: ["heartbeat", "last"],
message: 'OpenClaw does not recognize option "--unknown".',
machineOutput: isSystemMachineOutput,
},
])("keeps $name parse failures machine-readable by default", async (testCase) => {
const originalArgv = process.argv;
process.argv = ["node", "openclaw", ...testCase.args];
try {
const program = new OpenClawCommand()
.name("openclaw")
.enablePositionalOptions()
.option("--profile <name>")
.exitOverride();
program.configureOutput({ writeErr: () => {} });
const root = program.command(testCase.root);
if (testCase.alias) {
root.alias(testCase.alias);
}
setCommandJsonMode(root, "output", ({ argv, command }) =>
testCase.machineOutput(argv, command),
);
let command = root;
for (const child of testCase.children) {
command =
testCase.root === "cron"
? createCronOutputCommand(command, child as "get" | "runs" | "scratch")
: command.command(child).option("--json");
}
if (testCase.argument) {
command.argument(testCase.argument);
}
if (testCase.requiredOption) {
command.requiredOption(testCase.requiredOption);
}
if (testCase.valueOption) {
command.option(testCase.valueOption).option("--card");
}
command.action(() => {});
await withConsoleLogsRoutedToStderrForJson(
process.argv,
async () => {
const error = await program.parseAsync(process.argv).catch((cause: unknown) => cause);
expect(error).toBeInstanceOf(ExpectedCliError);
expect(isJsonOutputModeActive(process.argv)).toBe(true);
expect(formatCliJsonFailure(error)).toEqual({
ok: false,
error: {
type: "cli_error",
message: expect.stringContaining(testCase.message),
},
});
},
{ machineOutput: testCase.machineOutput(process.argv), restoreChanges: true },
);
} finally {
process.argv = originalArgv;
}
});
it("keeps a consumed JSON spelling machine-readable when the command owns JSON by default", async () => {
const originalArgv = process.argv;
process.argv = ["node", "openclaw", "cron", "status", "--limit", "--json"];
try {
const program = new OpenClawCommand().name("openclaw").exitOverride();
program.configureOutput({ writeErr: () => {} });
const cron = program.command("cron");
setCommandJsonMode(cron, "output", ({ argv }) => isCronMachineOutput(argv));
createCronOutputCommand(cron, "status")
.option("--limit <value>", "Result limit", () => {
throw new InvalidArgumentError("--limit must be a positive integer.");
})
.action(() => {});
await withConsoleLogsRoutedToStderrForJson(
process.argv,
async () => {
const error = await program.parseAsync(process.argv).catch((cause: unknown) => cause);
expect(error).toBeInstanceOf(ExpectedCliError);
expect(isJsonOutputModeActive(process.argv)).toBe(true);
expect((error as ExpectedCliError).message).toContain(
"--limit must be a positive integer.",
);
},
{ machineOutput: true, restoreChanges: true },
);
} finally {
process.argv = originalArgv;
}
});
it.each([
{ name: "human automation", args: ["cron", "show"], root: "cron", child: "show" },
{
name: "parse-only config",
args: ["config", "set", "gateway.port", "--json"],
root: "config",
child: "set",
},
{
name: "human skill card",
args: ["skills", "verify", "--card"],
root: "skills",
child: "verify",
},
])("keeps $name parse failures on the human error path", async (testCase) => {
const originalArgv = process.argv;
process.argv = ["node", "openclaw", ...testCase.args];
try {
const program = new OpenClawCommand().name("openclaw").exitOverride();
program.configureOutput({ writeErr: () => {} });
const root = program.command(testCase.root);
if (testCase.root === "cron") {
setCommandJsonMode(root, "output", ({ argv }) => isCronMachineOutput(argv));
} else if (testCase.root === "skills") {
setCommandJsonMode(root, "output", ({ argv }) => isSkillsMachineOutput(argv));
}
const command = root.command(testCase.child).argument("<id>").option("--json");
if (testCase.root === "config") {
command.argument("<value>");
setCommandJsonMode(command, "parse-only", () => true);
} else if (testCase.root === "skills") {
command.option("--card");
}
command.action(() => {});
await withConsoleLogsRoutedToStderrForJson(
process.argv,
async () => {
const error = await program.parseAsync(process.argv).catch((cause: unknown) => cause);
expect(error).toBeInstanceOf(CommanderError);
expect(error).not.toBeInstanceOf(ExpectedCliError);
expect(isJsonOutputModeActive(process.argv)).toBe(false);
},
{ restoreChanges: true },
);
} finally {
process.argv = originalArgv;
}
});
it("keeps successful machine-command help outside the JSON failure path", async () => {
const originalArgv = process.argv;
process.argv = ["node", "openclaw", "cron", "get", "--help"];
let stdout = "";
try {
const program = new OpenClawCommand().name("openclaw").exitOverride();
program.configureOutput({
writeOut: (output) => {
stdout += output;
},
writeErr: () => {},
});
const cron = program.command("cron");
setCommandJsonMode(cron, "output", ({ argv }) => isCronMachineOutput(argv));
createCronOutputCommand(cron, "get")
.argument("<id>")
.action(() => {});
await withConsoleLogsRoutedToStderrForJson(
process.argv,
async () => {
const error = await program.parseAsync(process.argv).catch((cause: unknown) => cause);
expect(error).toBeInstanceOf(CommanderError);
expect((error as CommanderError).exitCode).toBe(0);
expect(stdout).toContain("Usage: openclaw cron get");
expect(isJsonOutputModeActive(process.argv)).toBe(false);
},
{ machineOutput: true, restoreChanges: true },
);
} finally {
process.argv = originalArgv;
}
});
it.each([
{ label: "JSON spelling", value: "--json", supportsJson: true },
{ label: "true-valued JSON spelling", value: "--json=true", supportsJson: true },
{ label: "false-valued JSON spelling", value: "--json=false", supportsJson: true },
{ label: "command without JSON output", value: "--json", supportsJson: false },
{
label: "JSON spelling before a positional terminator",
value: "--json",
supportsJson: true,
suffix: ["--", "--json"],
},
{
label: "JSON spelling after a short option alias",
value: "--json",
supportsJson: true,
flag: "-l",
},
])("keeps a consumed $label as a human parse error", async (testCase) => {
const { value, supportsJson } = testCase;
const originalArgv = process.argv;
process.argv = [
"node",
"openclaw",
"--profile",
"work",
"p",
"s",
testCase.flag ?? "--limit",
value,
...(testCase.suffix ?? []),
];
let stderr = "";
try {
const program = new OpenClawCommand()
.name("openclaw")
.enablePositionalOptions()
.option("--profile <name>")
.exitOverride();
program.configureOutput({
writeErr: (output) => {
stderr += output;
},
});
const command = program
.command("plugins")
.alias("p")
.command("search")
.alias("s")
.option("-l, --limit <value>", "Result limit", () => {
throw new InvalidArgumentError("--limit must be a positive integer.");
});
if (supportsJson) {
command.option("--json", "Output JSON");
}
await withConsoleLogsRoutedToStderrForJson(
process.argv,
async () => {
const error = await program.parseAsync(process.argv).catch((cause: unknown) => cause);
expect(error).toBeInstanceOf(CommanderError);
expect(error).not.toBeInstanceOf(ExpectedCliError);
expect((error as CommanderError).exitCode).toBe(1);
expect(stderr).toContain("--limit must be a positive integer.");
expect(isJsonOutputModeActive(process.argv)).toBe(false);
},
{ restoreChanges: true },
);
} finally {
process.argv = originalArgv;
}
});
it.each([
{ label: "before an invalid value", args: ["--json", "--limit", "bad"] },
{ label: "after an invalid value", args: ["--limit", "bad", "--json"] },
{ label: "before a consumed JSON value", args: ["--json", "--limit", "--json"] },
{ label: "after a consumed JSON value", args: ["--limit", "--json", "--json"] },
{ label: "after a consumed valued JSON token", args: ["--limit", "--json=true", "--json"] },
])("preserves a genuine JSON request $label", async ({ args }) => {
const originalArgv = process.argv;
process.argv = ["node", "openclaw", "plugins", "search", ...args];
try {
const program = new OpenClawCommand().name("openclaw").exitOverride();
program.configureOutput({ writeErr: () => {} });
program
.command("plugins")
.command("search")
.option("--json", "Output JSON")
.option("--limit <value>", "Result limit", () => {
throw new InvalidArgumentError("--limit must be a positive integer.");
});
const error = await program.parseAsync(process.argv).catch((cause: unknown) => cause);
expect(error).toBeInstanceOf(ExpectedCliError);
expect((error as ExpectedCliError).message).toContain("--limit must be a positive integer.");
} finally {
process.argv = originalArgv;
}
});
it("preserves JSON diagnostics for an unsupported but genuine output flag", async () => {
const originalArgv = process.argv;
process.argv = ["node", "openclaw", "fleet", "logs", "--json"];
try {
const program = new OpenClawCommand().name("openclaw").exitOverride();
program.configureOutput({ writeErr: () => {} });
program
.command("fleet")
.command("logs")
.action(() => {});
const error = await program.parseAsync(process.argv).catch((cause: unknown) => cause);
expect(error).toBeInstanceOf(ExpectedCliError);
expect((error as ExpectedCliError).message).toContain("--json");
} finally {
process.argv = originalArgv;
}
});
it("uses the same structured root diagnostic as the human renderer", () => {
const error = createCliUnknownCommandError("pairng", {
argv: ["node", "openclaw", "pairng", "--json"],
});
expect(error.message).toBe('OpenClaw does not know the command "pairng".');
expect(error.humanOutput).toBe(
'OpenClaw does not know the command "pairng".\nDid you mean this?\n openclaw pairing\nTry: openclaw --help\nPlugin command? openclaw plugins list\nDocs: https://docs.openclaw.ai/cli\n',
);
});
it("strips Commander framing from structured nested diagnostics", () => {
const error = createCliParseError("error: unknown command 'lst'", {
argv: ["node", "openclaw", "sessions", "lst", "--json"],
commandPath: ["sessions"],
commandNames: ["list"],
});
expect(error.message).toBe('OpenClaw sessions has no command "lst".');
expect(error.message).not.toMatch(/^error:/i);
expect(error.humanOutput).toContain("Did you mean this?\n openclaw sessions list\n");
});
it("explains unknown commands with root help and plugin hints", () => {
const output = formatCliParseErrorOutput("error: unknown command 'wat'\n", {
argv: ["node", "openclaw", "wat"],
});
expect(output).toBe(
'OpenClaw does not know the command "wat".\nTry: openclaw --help\nPlugin command? openclaw plugins list\nDocs: https://docs.openclaw.ai/cli\n',
);
});
it("explains unknown subcommands within the active command tree", () => {
const output = formatCliParseErrorOutput("error: unknown command 'list'\n", {
argv: ["node", "openclaw", "webhooks", "list"],
commandPath: ["webhooks"],
});
expect(output).toBe(
'OpenClaw webhooks has no command "list".\nTry: openclaw webhooks --help\nDocs: https://docs.openclaw.ai/cli\n',
);
});
it("suggests sibling subcommands within the active command tree", () => {
const output = formatCliParseErrorOutput("error: unknown command 'gmial'\n", {
argv: ["node", "openclaw", "webhooks", "gmial"],
commandPath: ["webhooks"],
commandNames: ["gmail"],
});
expect(output).toBe(
'OpenClaw webhooks has no command "gmial".\nDid you mean this?\n openclaw webhooks gmail\nTry: openclaw webhooks --help\nDocs: https://docs.openclaw.ai/cli\n',
);
});
it("reports an unmatched lazy subcommand and suggests a live child command", async () => {
const { error, output } = await parseLazyGroupError({
argv: ["sessions", "lst"],
group: "sessions",
subcommands: [{ name: "list" }, { name: "cleanup" }],
});
expect(error.code).toBe("commander.unknownCommand");
expect(output).toBe(
'OpenClaw sessions has no command "lst".\nDid you mean this?\n openclaw sessions list\nTry: openclaw sessions --help\nDocs: https://docs.openclaw.ai/cli\n',
);
});
it("suggests a live child command when later arguments follow the typo", async () => {
const { error, output } = await parseLazyGroupError({
argv: ["config", "gett", "gateway.port"],
group: "config",
subcommands: [{ name: "get" }, { name: "set" }],
});
expect(error.code).toBe("commander.unknownCommand");
expect(output).toBe(
'OpenClaw config has no command "gett".\nDid you mean this?\n openclaw config get\nTry: openclaw config --help\nDocs: https://docs.openclaw.ai/cli\n',
);
});
it("reports an unmatched lazy subcommand before --help can hide it", async () => {
const { error, output, stdout } = await parseLazyGroupError({
argv: ["sessions", "lst", "--help"],
group: "sessions",
subcommands: [{ name: "list" }, { name: "cleanup" }],
});
expect(error.code).toBe("commander.unknownCommand");
expect(error.exitCode).toBe(1);
expect(stdout).toBe("");
expect(output).toBe(
'OpenClaw sessions has no command "lst".\nDid you mean this?\n openclaw sessions list\nTry: openclaw sessions --help\nDocs: https://docs.openclaw.ai/cli\n',
);
});
it("loads a real lazy subcommand before showing its help", async () => {
const { error, output, stdout } = await parseLazyGroupError({
argv: ["sessions", "list", "--help"],
group: "sessions",
subcommands: [{ name: "list" }, { name: "cleanup" }],
});
expect(error.code).toBe("commander.helpDisplayed");
expect(error.exitCode).toBe(0);
expect(output).toBe("");
expect(stdout).toContain("Usage: openclaw sessions list [options]");
});
it("suggests aliases from the live child command tree", async () => {
const { error, output } = await parseLazyGroupError({
argv: ["cron", "remov"],
group: "cron",
subcommands: [{ name: "rm", aliases: ["remove", "delete"] }, { name: "edit" }],
});
expect(error.code).toBe("commander.unknownCommand");
expect(output).toContain("Did you mean this?\n openclaw cron remove\n");
});
it("keeps excess arguments on a matched lazy subcommand", async () => {
const { error, output } = await parseLazyGroupError({
argv: ["sessions", "list", "extra1", "extra2"],
group: "sessions",
subcommands: [{ name: "list" }],
});
expect(error.code).toBe("commander.excessArguments");
expect(output).toBe(
"Too many arguments for this command.\nTry: openclaw sessions list --help\n",
);
});
it("suggests close known commands for unknown commands", () => {
const output = formatCliParseErrorOutput("error: unknown command 'upate'\n", {
argv: ["node", "openclaw", "upate"],
});
expect(output).toBe(
'OpenClaw does not know the command "upate".\nDid you mean this?\n openclaw update\nTry: openclaw --help\nPlugin command? openclaw plugins list\nDocs: https://docs.openclaw.ai/cli\n',
);
});
it("suggests explicit aliases for common adjacent terminology", () => {
const output = formatCliParseErrorOutput("error: unknown command 'upgrade'\n", {
argv: ["node", "openclaw", "upgrade"],
});
expect(output).toContain("Did you mean this?\n openclaw update\n");
});
it("preserves active profile context in command suggestions", () => {
const originalProfile = process.env.OPENCLAW_PROFILE;
process.env.OPENCLAW_PROFILE = "work";
try {
const output = formatCliParseErrorOutput("error: unknown command 'doctr'\n", {
argv: ["node", "openclaw", "doctr"],
});
expect(output).toContain("Did you mean this?\n openclaw --profile work doctor\n");
} finally {
if (originalProfile === undefined) {
delete process.env.OPENCLAW_PROFILE;
} else {
process.env.OPENCLAW_PROFILE = originalProfile;
}
}
});
it("points unknown options at the active command help", () => {
const output = formatCliParseErrorOutput("error: unknown option '--wat'\n", {
argv: ["node", "openclaw", "channels", "status", "--wat"],
});
expect(output).toBe(
'OpenClaw does not recognize option "--wat".\nTry: openclaw channels status --help\n',
);
});
it("points missing required arguments at command help", () => {
const output = formatCliParseErrorOutput("error: missing required argument 'name'\n", {
argv: ["node", "openclaw", "plugins", "install"],
});
expect(output).toBe(
'Missing required argument "name".\nTry: openclaw plugins install --help\n',
);
});
it.each([
{
name: "missing mandatory option",
raw: " ERROR: required option '--node <id>' not specified\n",
message: 'Missing required option "--node <id>".',
},
{
name: "unclassified Commander diagnostic",
raw: "error: option '--timeout <ms>' argument missing\n",
message: "OpenClaw could not parse this command: option '--timeout <ms>' argument missing",
},
])("preserves the complete ordinary $name diagnostic", ({ raw, message }) => {
expect(
formatCliParseErrorOutput(raw, {
argv: ["node", "openclaw", "nodes", "invoke"],
commandPath: ["nodes", "invoke"],
}),
).toBe(`${message}\nTry: openclaw nodes invoke --help\n`);
});
it("prefers the parsed Commander path over option-like argv values", () => {
const output = formatCliParseErrorOutput("error: unknown option '--wat'\n", {
argv: ["node", "openclaw", "plugins", "--source", "install", "list", "--wat"],
commandPath: ["plugins", "list"],
});
expect(output).toBe(
'OpenClaw does not recognize option "--wat".\nTry: openclaw plugins list --help\n',
);
});
});
|