mirror of
https://github.com/glittercowboy/get-shit-done
synced 2026-05-14 11:06:35 +02:00
68 lines
2.2 KiB
JavaScript
68 lines
2.2 KiB
JavaScript
'use strict';
|
|
|
|
const { describe, test } = require('node:test');
|
|
const assert = require('node:assert/strict');
|
|
const fs = require('node:fs');
|
|
const path = require('node:path');
|
|
const { execFileSync } = require('node:child_process');
|
|
const { createTempDir, cleanup } = require('./helpers.cjs');
|
|
|
|
const ROOT = path.resolve(__dirname, '..');
|
|
const HOOK_PATH = path.join(ROOT, '.githooks', 'pre-commit');
|
|
|
|
function writeExec(filePath, content) {
|
|
fs.writeFileSync(filePath, content, { mode: 0o755 });
|
|
}
|
|
|
|
describe('.githooks/pre-commit alias drift guard', () => {
|
|
test('runs npm check when staged files include command-manifest/alias artifacts', (t) => {
|
|
const tmpDir = createTempDir('gsd-precommit-hook-');
|
|
t.after(() => cleanup(tmpDir));
|
|
|
|
const binDir = path.join(tmpDir, 'bin');
|
|
fs.mkdirSync(binDir, { recursive: true });
|
|
|
|
writeExec(path.join(binDir, 'git'), `#!/usr/bin/env bash\nprintf "%s\\n" "${'sdk/src/query/command-manifest.phase.ts'}"\n`);
|
|
writeExec(path.join(binDir, 'npm'), `#!/usr/bin/env bash\nprintf "called" > "$GSD_TEST_NPM_MARKER"\n`);
|
|
|
|
const marker = path.join(tmpDir, 'npm-called.txt');
|
|
|
|
execFileSync('bash', [HOOK_PATH], {
|
|
cwd: ROOT,
|
|
env: {
|
|
...process.env,
|
|
PATH: `${binDir}:${process.env.PATH}`,
|
|
GSD_TEST_NPM_MARKER: marker,
|
|
},
|
|
stdio: 'pipe',
|
|
});
|
|
|
|
assert.ok(fs.existsSync(marker), 'expected npm run check:alias-drift to be invoked');
|
|
});
|
|
|
|
test('does not run npm check when staged files are unrelated', (t) => {
|
|
const tmpDir = createTempDir('gsd-precommit-hook-');
|
|
t.after(() => cleanup(tmpDir));
|
|
|
|
const binDir = path.join(tmpDir, 'bin');
|
|
fs.mkdirSync(binDir, { recursive: true });
|
|
|
|
writeExec(path.join(binDir, 'git'), `#!/usr/bin/env bash\nprintf "%s\\n" "README.md"\n`);
|
|
writeExec(path.join(binDir, 'npm'), `#!/usr/bin/env bash\nprintf "called" > "$GSD_TEST_NPM_MARKER"\n`);
|
|
|
|
const marker = path.join(tmpDir, 'npm-called.txt');
|
|
|
|
execFileSync('bash', [HOOK_PATH], {
|
|
cwd: ROOT,
|
|
env: {
|
|
...process.env,
|
|
PATH: `${binDir}:${process.env.PATH}`,
|
|
GSD_TEST_NPM_MARKER: marker,
|
|
},
|
|
stdio: 'pipe',
|
|
});
|
|
|
|
assert.ok(!fs.existsSync(marker), 'expected npm check to be skipped for unrelated staged files');
|
|
});
|
|
});
|