mirror of
https://github.com/JuliusBrussee/caveman.git
synced 2026-08-11 13:21:09 +02:00
Brings the long-stashed Node installer onto main. install.sh and install.ps1
shrink to thin shims (~50 lines each) that delegate to bin/install.js, fixing
the cross-platform drift that caused #249-class quoting bugs.
- bin/install.js (850 lines) — unified PROVIDERS-driven installer
- bin/lib/settings.js (221 lines) — JSONC parser + hook validator
(validateHookFields prevents single bad hook from poisoning settings.json)
- tests/installer/{unit.argv,unit.settings,e2e.dryrun}.test.mjs — npm test
now actually runs four real tests (was silently passing 0)
- .agents/skills/cavecrew, .junie/, .kiro/, .roo/ — per-agent skill mirrors
- skills-lock.json — vercel-labs/skills slug pinning
- install.{sh,ps1}.legacy escape hatch dropped (git history is the fallback)
- Minor cavecrew agent description refinements
Closes the gap between docs (already merged) describing bin/install.js and
the actual implementation.
57 lines
2.5 KiB
JavaScript
57 lines
2.5 KiB
JavaScript
// End-to-end: dry-run installer prints expected file plan without touching disk.
|
|
|
|
import { test } from 'node:test';
|
|
import assert from 'node:assert/strict';
|
|
import { spawnSync } from 'node:child_process';
|
|
import fs from 'node:fs';
|
|
import os from 'node:os';
|
|
import path from 'node:path';
|
|
import { fileURLToPath } from 'node:url';
|
|
|
|
const HERE = path.dirname(fileURLToPath(import.meta.url));
|
|
const INSTALLER = path.resolve(HERE, '..', '..', 'bin', 'install.js');
|
|
|
|
function freshTmpDir() {
|
|
return fs.mkdtempSync(path.join(os.tmpdir(), 'cm-dryrun-'));
|
|
}
|
|
|
|
test('dry-run --only claude prints plan and writes nothing', () => {
|
|
const cfg = freshTmpDir();
|
|
const r = spawnSync('node', [INSTALLER,
|
|
'--dry-run', '--only', 'claude', '--no-mcp-shrink', '--non-interactive',
|
|
'--config-dir', cfg,
|
|
], { encoding: 'utf8', env: { ...process.env, CLAUDE_CONFIG_DIR: cfg } });
|
|
assert.equal(r.status, 0);
|
|
// Only fires if `claude` is on PATH on the test runner. If not, this assertion
|
|
// is a no-op (the installer just prints "nothing detected" and exits 0).
|
|
if (/Claude Code detected/.test(r.stdout)) {
|
|
assert.match(r.stdout, /would run: claude plugin marketplace add/);
|
|
assert.match(r.stdout, /would run: claude plugin install caveman@caveman/);
|
|
assert.match(r.stdout, /would mkdir -p .*\/hooks/);
|
|
assert.match(r.stdout, /would install .*caveman-activate\.js/);
|
|
assert.match(r.stdout, /would merge SessionStart \+ UserPromptSubmit \+ statusline/);
|
|
}
|
|
// Nothing should have been written.
|
|
assert.equal(fs.existsSync(path.join(cfg, 'settings.json')), false);
|
|
assert.equal(fs.existsSync(path.join(cfg, 'hooks')), false);
|
|
});
|
|
|
|
test('dry-run --uninstall does not delete files', () => {
|
|
const cfg = freshTmpDir();
|
|
// Seed a fake installation
|
|
fs.mkdirSync(path.join(cfg, 'hooks'), { recursive: true });
|
|
const fake = path.join(cfg, 'hooks', 'caveman-activate.js');
|
|
fs.writeFileSync(fake, '// fake');
|
|
fs.writeFileSync(path.join(cfg, 'settings.json'),
|
|
JSON.stringify({ hooks: { SessionStart: [{ hooks: [{ type: 'command', command: 'node ' + fake }] }] } }, null, 2));
|
|
const before = fs.readFileSync(path.join(cfg, 'settings.json'), 'utf8');
|
|
|
|
const r = spawnSync('node', [INSTALLER, '--uninstall', '--dry-run', '--non-interactive', '--config-dir', cfg],
|
|
{ encoding: 'utf8', env: { ...process.env, CLAUDE_CONFIG_DIR: cfg } });
|
|
assert.equal(r.status, 0);
|
|
|
|
// File still present, settings unchanged.
|
|
assert.equal(fs.existsSync(fake), true);
|
|
assert.equal(fs.readFileSync(path.join(cfg, 'settings.json'), 'utf8'), before);
|
|
});
|