Session 5 of voyage-rebrand (V6). Operator-authorized cross-plugin scope. - git mv plugins/ultraplan-local plugins/voyage (rename detected, history preserved) - .claude-plugin/marketplace.json: voyage entry replaces ultraplan-local - CLAUDE.md: voyage row in plugin list, voyage in design-system consumer list - README.md: bulk rename ultra*-local commands -> trek* commands; ultraplan-local refs -> voyage; type discriminators (type: trekbrief/trekreview); session-title pattern (voyage:<command>:<slug>); v4.0.0 release-note paragraph - plugins/voyage/.claude-plugin/plugin.json: homepage/repository URLs point to monorepo voyage path - plugins/voyage/verify.sh: drop URL whitelist exception (no longer needed) Closes voyage-rebrand. bash plugins/voyage/verify.sh PASS 7/7. npm test 361/361.
140 lines
4.9 KiB
JavaScript
140 lines
4.9 KiB
JavaScript
import { test } from 'node:test';
|
|
import { strict as assert } from 'node:assert';
|
|
import { parseArgs } from '../../lib/parsers/arg-parser.mjs';
|
|
|
|
test('trekbrief — empty args', () => {
|
|
const r = parseArgs('', 'trekbrief');
|
|
assert.equal(r.command, 'trekbrief');
|
|
assert.deepEqual(r.flags, {});
|
|
});
|
|
|
|
test('trekbrief — --quick boolean', () => {
|
|
const r = parseArgs('--quick', 'trekbrief');
|
|
assert.equal(r.flags['--quick'], true);
|
|
});
|
|
|
|
test('trekresearch — --project value capture', () => {
|
|
const r = parseArgs('--project .claude/projects/2026-04-30-foo', 'trekresearch');
|
|
assert.equal(r.flags['--project'], '.claude/projects/2026-04-30-foo');
|
|
});
|
|
|
|
test('trekresearch — --quick --local combined', () => {
|
|
const r = parseArgs('--quick --local', 'trekresearch');
|
|
assert.equal(r.flags['--quick'], true);
|
|
assert.equal(r.flags['--local'], true);
|
|
});
|
|
|
|
test('trekplan — --research multi-value', () => {
|
|
const r = parseArgs('--research a.md b.md c.md', 'trekplan');
|
|
assert.deepEqual(r.flags['--research'], ['a.md', 'b.md', 'c.md']);
|
|
});
|
|
|
|
test('trekplan — --research multi stops at next flag', () => {
|
|
const r = parseArgs('--research a.md b.md --project /x', 'trekplan');
|
|
assert.deepEqual(r.flags['--research'], ['a.md', 'b.md']);
|
|
assert.equal(r.flags['--project'], '/x');
|
|
});
|
|
|
|
test('trekplan — --brief required-value flag', () => {
|
|
const r = parseArgs('--brief brief.md', 'trekplan');
|
|
assert.equal(r.flags['--brief'], 'brief.md');
|
|
});
|
|
|
|
test('trekplan — missing value for --brief produces error', () => {
|
|
const r = parseArgs('--brief --quick', 'trekplan');
|
|
assert.ok(r.errors.find(e => e.code === 'ARG_MISSING_VALUE'));
|
|
});
|
|
|
|
test('trekplan — --decompose value flag', () => {
|
|
const r = parseArgs('--decompose plan.md', 'trekplan');
|
|
assert.equal(r.flags['--decompose'], 'plan.md');
|
|
});
|
|
|
|
test('trekexecute — --resume + --project', () => {
|
|
const r = parseArgs('--resume --project /tmp/p', 'trekexecute');
|
|
assert.equal(r.flags['--resume'], true);
|
|
assert.equal(r.flags['--project'], '/tmp/p');
|
|
});
|
|
|
|
test('trekexecute — --step N value', () => {
|
|
const r = parseArgs('--step 3', 'trekexecute');
|
|
assert.equal(r.flags['--step'], '3');
|
|
});
|
|
|
|
test('trekexecute — unknown flag goes to unknown[]', () => {
|
|
const r = parseArgs('--mystery foo', 'trekexecute');
|
|
assert.ok(r.unknown.includes('--mystery'));
|
|
});
|
|
|
|
test('quoted positional with spaces preserved', () => {
|
|
const r = parseArgs('"hello world" simple', 'trekbrief');
|
|
assert.deepEqual(r.positional, ['hello world', 'simple']);
|
|
});
|
|
|
|
test('unknown command reported as error', () => {
|
|
const r = parseArgs('--quick', 'notacommand');
|
|
assert.ok(r.errors.find(e => e.code === 'ARG_UNKNOWN_COMMAND'));
|
|
});
|
|
|
|
test('trekreview — --project value capture', () => {
|
|
const r = parseArgs('--project .claude/projects/2026-05-01-foo', 'trekreview');
|
|
assert.equal(r.flags['--project'], '.claude/projects/2026-05-01-foo');
|
|
});
|
|
|
|
test('trekreview — --since <ref> value', () => {
|
|
const r = parseArgs('--since HEAD~5', 'trekreview');
|
|
assert.equal(r.flags['--since'], 'HEAD~5');
|
|
});
|
|
|
|
test('trekreview — --quick + --validate combined', () => {
|
|
const r = parseArgs('--quick --validate', 'trekreview');
|
|
assert.equal(r.flags['--quick'], true);
|
|
assert.equal(r.flags['--validate'], true);
|
|
});
|
|
|
|
test('trekreview — unknown flag goes to unknown[]', () => {
|
|
const r = parseArgs('--mystery foo', 'trekreview');
|
|
assert.ok(r.unknown.includes('--mystery'));
|
|
});
|
|
|
|
test('trekcontinue — empty args produce no flags and no positional', () => {
|
|
const r = parseArgs('', 'trekcontinue');
|
|
assert.equal(r.command, 'trekcontinue');
|
|
assert.deepEqual(r.flags, {});
|
|
assert.deepEqual(r.positional, []);
|
|
assert.deepEqual(r.errors, []);
|
|
});
|
|
|
|
test('trekcontinue — --help boolean flag', () => {
|
|
const r = parseArgs('--help', 'trekcontinue');
|
|
assert.equal(r.flags['--help'], true);
|
|
});
|
|
|
|
test('trekcontinue — -h treated as positional (no alias resolution)', () => {
|
|
const r = parseArgs('-h', 'trekcontinue');
|
|
assert.deepEqual(r.positional, ['-h']);
|
|
assert.deepEqual(r.errors, []);
|
|
assert.equal(r.flags['--help'], undefined);
|
|
});
|
|
|
|
test('trekcontinue — --cleanup boolean flag', () => {
|
|
const r = parseArgs('--cleanup', 'trekcontinue');
|
|
assert.equal(r.flags['--cleanup'], true);
|
|
});
|
|
|
|
test('trekcontinue — --cleanup --confirm both flags', () => {
|
|
const r = parseArgs('--cleanup --confirm', 'trekcontinue');
|
|
assert.equal(r.flags['--cleanup'], true);
|
|
assert.equal(r.flags['--confirm'], true);
|
|
});
|
|
|
|
test('trekcontinue — positional project dir captured', () => {
|
|
const r = parseArgs('.claude/projects/2026-05-04-foo', 'trekcontinue');
|
|
assert.deepEqual(r.positional, ['.claude/projects/2026-05-04-foo']);
|
|
});
|
|
|
|
test('trekcontinue — .md positional accepted by parser (rejection is command-level)', () => {
|
|
const r = parseArgs('NEXT-SESSION-PROMPT.local.md', 'trekcontinue');
|
|
assert.deepEqual(r.positional, ['NEXT-SESSION-PROMPT.local.md']);
|
|
assert.deepEqual(r.errors, []);
|
|
});
|