mirror of
https://github.com/glittercowboy/get-shit-done
synced 2026-04-26 01:35:29 +02:00
* refactor(tests): standardize to node:assert/strict and t.after() per CONTRIBUTING.md
- Replace require('node:assert') with require('node:assert/strict') across
all 73 test files to enforce strict equality (no type coercion)
- Replace try/finally cleanup blocks with t.after() hooks in core.test.cjs
and hooks-opt-in.test.cjs per the test lifecycle standards
- Utility functions in codex-config and security-scan retain try/finally
as that is appropriate for per-function resource guards, not lifecycle hooks
Closes #1674
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
* perf(tests): add --test-concurrency=4 to test runner for parallel file execution
Node.js --test-concurrency controls how many test files run as parallel child
processes. Set to 4 by default, configurable via TEST_CONCURRENCY env var.
Fixes tests at a known level rather than inheriting os.availableParallelism()
which varies across CI environments.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
* fix(security): allowlist verify.test.cjs in prompt-injection scanner
tests/verify.test.cjs uses <human>...</human> as GSD phase task-type
XML (meaning "a human should verify this step"), which matches the
scanner's fake-message-boundary pattern for LLM APIs. This is a
false positive — add it to the allowlist alongside the other test files
that legitimately contain injection-adjacent patterns.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
---------
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com>
291 lines
12 KiB
JavaScript
291 lines
12 KiB
JavaScript
/**
|
|
* GSD Agent Installation Validation Tests (#1371)
|
|
*
|
|
* Validates that GSD detects missing or incomplete agent installations and
|
|
* surfaces warnings through init commands and health checks. When agents are
|
|
* not installed, Task(subagent_type="gsd-*") silently falls back to
|
|
* general-purpose, losing specialized instructions.
|
|
*/
|
|
|
|
const { test, describe, beforeEach, afterEach } = require('node:test');
|
|
const assert = require('node:assert/strict');
|
|
const fs = require('fs');
|
|
const path = require('path');
|
|
const { runGsdTools, createTempProject, cleanup } = require('./helpers.cjs');
|
|
|
|
const AGENTS_DIR_NAME = 'agents';
|
|
const MODEL_PROFILES = require('../get-shit-done/bin/lib/model-profiles.cjs').MODEL_PROFILES;
|
|
const EXPECTED_AGENTS = Object.keys(MODEL_PROFILES);
|
|
|
|
/**
|
|
* Create a fake GSD install directory structure that mirrors what the installer
|
|
* produces. gsd-tools.cjs lives at <configDir>/get-shit-done/bin/gsd-tools.cjs,
|
|
* so the agents dir is at <configDir>/agents/.
|
|
*
|
|
* We use --cwd to point at the project, and GSD_INSTALL_DIR env to override
|
|
* the agents directory location for testing.
|
|
*/
|
|
function createAgentsDir(configDir, agentNames = []) {
|
|
const agentsDir = path.join(configDir, AGENTS_DIR_NAME);
|
|
fs.mkdirSync(agentsDir, { recursive: true });
|
|
for (const name of agentNames) {
|
|
fs.writeFileSync(
|
|
path.join(agentsDir, `${name}.md`),
|
|
`---\nname: ${name}\ndescription: Test agent\ntools: Read, Bash\ncolor: cyan\n---\nAgent content.\n`
|
|
);
|
|
}
|
|
return agentsDir;
|
|
}
|
|
|
|
// ─── Init command agent validation ──────────────────────────────────────────
|
|
|
|
describe('init commands: agents_installed field (#1371)', () => {
|
|
let tmpDir;
|
|
|
|
beforeEach(() => {
|
|
tmpDir = createTempProject();
|
|
});
|
|
|
|
afterEach(() => {
|
|
cleanup(tmpDir);
|
|
});
|
|
|
|
test('init execute-phase includes agents_installed=true when agents exist', () => {
|
|
// Create phase dir for init
|
|
const phaseDir = path.join(tmpDir, '.planning', 'phases', '01-setup');
|
|
fs.mkdirSync(phaseDir, { recursive: true });
|
|
|
|
// Create agents dir as sibling of get-shit-done/ (the installed layout)
|
|
// gsd-tools.cjs resolves agents from GSD_INSTALL_DIR or __dirname/../../agents
|
|
const gsdInstallDir = path.resolve(__dirname, '..', 'get-shit-done', 'bin');
|
|
const configDir = path.resolve(gsdInstallDir, '..', '..');
|
|
const agentsDir = path.join(configDir, 'agents');
|
|
|
|
// Agents already exist in the repo root /agents/ dir which is sibling to get-shit-done/
|
|
const result = runGsdTools('init execute-phase 1 --raw', tmpDir);
|
|
assert.ok(result.success, `Command failed: ${result.error}`);
|
|
|
|
const output = JSON.parse(result.output);
|
|
assert.strictEqual(typeof output.agents_installed, 'boolean',
|
|
'init execute-phase must include agents_installed field');
|
|
// The repo has agents/ dir with all gsd-*.md files, so this should be true
|
|
assert.strictEqual(output.agents_installed, true,
|
|
'agents_installed should be true when agents directory has gsd-*.md files');
|
|
});
|
|
|
|
test('init plan-phase includes agents_installed=true when agents exist', () => {
|
|
const phaseDir = path.join(tmpDir, '.planning', 'phases', '01-setup');
|
|
fs.mkdirSync(phaseDir, { recursive: true });
|
|
|
|
const result = runGsdTools('init plan-phase 1 --raw', tmpDir);
|
|
assert.ok(result.success, `Command failed: ${result.error}`);
|
|
|
|
const output = JSON.parse(result.output);
|
|
assert.strictEqual(typeof output.agents_installed, 'boolean',
|
|
'init plan-phase must include agents_installed field');
|
|
assert.strictEqual(output.agents_installed, true);
|
|
});
|
|
|
|
test('init execute-phase includes missing_agents list when agents are missing', () => {
|
|
const phaseDir = path.join(tmpDir, '.planning', 'phases', '01-setup');
|
|
fs.mkdirSync(phaseDir, { recursive: true });
|
|
|
|
const result = runGsdTools('init execute-phase 1 --raw', tmpDir);
|
|
assert.ok(result.success, `Command failed: ${result.error}`);
|
|
|
|
const output = JSON.parse(result.output);
|
|
assert.ok(Array.isArray(output.missing_agents),
|
|
'init execute-phase must include missing_agents array');
|
|
});
|
|
|
|
test('init quick includes agents_installed field', () => {
|
|
const result = runGsdTools(['init', 'quick', 'test description', '--raw'], tmpDir);
|
|
assert.ok(result.success, `Command failed: ${result.error}`);
|
|
|
|
const output = JSON.parse(result.output);
|
|
assert.strictEqual(typeof output.agents_installed, 'boolean',
|
|
'init quick must include agents_installed field');
|
|
});
|
|
});
|
|
|
|
// ─── Health check: agent installation ───────────────────────────────────────
|
|
|
|
describe('validate health: agent installation check W010 (#1371)', () => {
|
|
let tmpDir;
|
|
|
|
beforeEach(() => {
|
|
tmpDir = createTempProject();
|
|
// Write minimal project files so health check doesn't fail on E001-E005
|
|
fs.writeFileSync(
|
|
path.join(tmpDir, '.planning', 'PROJECT.md'),
|
|
'# Project\n\n## What This Is\nTest\n\n## Core Value\nTest\n\n## Requirements\nTest\n'
|
|
);
|
|
fs.writeFileSync(
|
|
path.join(tmpDir, '.planning', 'ROADMAP.md'),
|
|
'# Roadmap\n\n### Phase 1: Setup\n'
|
|
);
|
|
fs.writeFileSync(
|
|
path.join(tmpDir, '.planning', 'STATE.md'),
|
|
'# Session State\n\n## Current Position\n\nPhase: 1\n'
|
|
);
|
|
fs.writeFileSync(
|
|
path.join(tmpDir, '.planning', 'config.json'),
|
|
JSON.stringify({
|
|
model_profile: 'balanced',
|
|
commit_docs: true,
|
|
workflow: { nyquist_validation: true },
|
|
}, null, 2)
|
|
);
|
|
fs.mkdirSync(path.join(tmpDir, '.planning', 'phases', '01-setup'), { recursive: true });
|
|
});
|
|
|
|
afterEach(() => {
|
|
cleanup(tmpDir);
|
|
});
|
|
|
|
test('health check reports healthy when agents are installed (repo layout)', () => {
|
|
// In the repo, agents/ exists as a sibling of get-shit-done/, so the
|
|
// health check should find them via the gsd-tools.cjs path resolution
|
|
const result = runGsdTools('validate health --raw', tmpDir);
|
|
assert.ok(result.success, `Command failed: ${result.error}`);
|
|
|
|
const output = JSON.parse(result.output);
|
|
// Should not have W010 warning about missing agents
|
|
const w010 = (output.warnings || []).find(w => w.code === 'W010');
|
|
assert.ok(!w010, 'Should not warn about missing agents when agents/ dir exists with files');
|
|
});
|
|
});
|
|
|
|
// ─── Copilot .agent.md detection (#1512) ────────────────────────────────────
|
|
|
|
describe('checkAgentsInstalled: Copilot .agent.md format (#1512)', () => {
|
|
let tmpDir;
|
|
|
|
beforeEach(() => {
|
|
tmpDir = createTempProject();
|
|
});
|
|
|
|
afterEach(() => {
|
|
cleanup(tmpDir);
|
|
});
|
|
|
|
test('agents_installed=true when agents exist as .agent.md (Copilot format)', () => {
|
|
// Simulate a Copilot install: agents are named gsd-*.agent.md, not gsd-*.md
|
|
// Use GSD_AGENTS_DIR to point at an isolated dir with ONLY .agent.md files,
|
|
// so the test does not accidentally pass via the repo's own agents/ dir.
|
|
const agentsDir = path.join(tmpDir, 'copilot-agents');
|
|
fs.mkdirSync(agentsDir, { recursive: true });
|
|
for (const name of EXPECTED_AGENTS) {
|
|
fs.writeFileSync(
|
|
path.join(agentsDir, `${name}.agent.md`),
|
|
`---\nname: ${name}\ndescription: Test agent\n---\nAgent content.\n`
|
|
);
|
|
}
|
|
|
|
const result = runGsdTools('validate agents --raw', tmpDir, { GSD_AGENTS_DIR: agentsDir });
|
|
assert.ok(result.success, `Command failed: ${result.error}`);
|
|
|
|
const output = JSON.parse(result.output);
|
|
// Must report the custom dir, not the default repo agents dir
|
|
assert.strictEqual(output.agents_dir, agentsDir,
|
|
'agents_dir must be the GSD_AGENTS_DIR override, not the repo default');
|
|
assert.strictEqual(output.agents_found, true,
|
|
'agents_found must be true when agents exist as .agent.md (Copilot format)');
|
|
assert.deepStrictEqual(output.missing, [],
|
|
'missing must be empty when all agents exist as .agent.md');
|
|
});
|
|
|
|
test('agents_installed=false when .agent.md files exist for only some agents', () => {
|
|
const agentsDir = path.join(tmpDir, 'agents');
|
|
fs.mkdirSync(agentsDir, { recursive: true });
|
|
// Only install the first agent
|
|
const firstAgent = EXPECTED_AGENTS[0];
|
|
fs.writeFileSync(
|
|
path.join(agentsDir, `${firstAgent}.agent.md`),
|
|
`---\nname: ${firstAgent}\ndescription: Test agent\n---\nAgent content.\n`
|
|
);
|
|
|
|
const result = runGsdTools('validate agents --raw', tmpDir, { GSD_AGENTS_DIR: agentsDir });
|
|
assert.ok(result.success, `Command failed: ${result.error}`);
|
|
|
|
const output = JSON.parse(result.output);
|
|
assert.strictEqual(output.agents_found, false,
|
|
'agents_found must be false when only some agents exist');
|
|
assert.ok(output.missing.length > 0, 'missing must be non-empty when some agents are absent');
|
|
});
|
|
|
|
test('init new-workspace includes agents_installed=true with Copilot .agent.md files', () => {
|
|
// Use an isolated dir with ONLY .agent.md files (no .md fallback)
|
|
const agentsDir = path.join(tmpDir, 'copilot-agents');
|
|
fs.mkdirSync(agentsDir, { recursive: true });
|
|
for (const name of EXPECTED_AGENTS) {
|
|
fs.writeFileSync(
|
|
path.join(agentsDir, `${name}.agent.md`),
|
|
`---\nname: ${name}\ndescription: Test agent\n---\nAgent content.\n`
|
|
);
|
|
}
|
|
|
|
const result = runGsdTools('init new-workspace --raw', tmpDir, { GSD_AGENTS_DIR: agentsDir });
|
|
assert.ok(result.success, `Command failed: ${result.error}`);
|
|
|
|
const output = JSON.parse(result.output);
|
|
assert.strictEqual(output.agents_installed, true,
|
|
'agents_installed must be true when Copilot .agent.md files are present');
|
|
assert.deepStrictEqual(output.missing_agents, [],
|
|
'missing_agents must be empty when all .agent.md files are present');
|
|
});
|
|
|
|
test('GSD_AGENTS_DIR env var overrides default agents directory', () => {
|
|
// Create a custom agents dir in a subdirectory
|
|
const customAgentsDir = path.join(tmpDir, 'custom-agents');
|
|
fs.mkdirSync(customAgentsDir, { recursive: true });
|
|
// Put one agent there as .md (standard format)
|
|
fs.writeFileSync(
|
|
path.join(customAgentsDir, `${EXPECTED_AGENTS[0]}.md`),
|
|
`---\nname: ${EXPECTED_AGENTS[0]}\ndescription: Test agent\n---\nAgent content.\n`
|
|
);
|
|
|
|
const result = runGsdTools('validate agents --raw', tmpDir, { GSD_AGENTS_DIR: customAgentsDir });
|
|
assert.ok(result.success, `Command failed: ${result.error}`);
|
|
|
|
const output = JSON.parse(result.output);
|
|
// The custom dir path should be reported
|
|
assert.strictEqual(output.agents_dir, customAgentsDir,
|
|
'agents_dir must reflect GSD_AGENTS_DIR override');
|
|
});
|
|
});
|
|
|
|
// ─── validate agents subcommand ─────────────────────────────────────────────
|
|
|
|
describe('validate agents subcommand (#1371)', () => {
|
|
let tmpDir;
|
|
|
|
beforeEach(() => {
|
|
tmpDir = createTempProject();
|
|
});
|
|
|
|
afterEach(() => {
|
|
cleanup(tmpDir);
|
|
});
|
|
|
|
test('validate agents returns status with agent list', () => {
|
|
const result = runGsdTools('validate agents --raw', tmpDir);
|
|
assert.ok(result.success, `Command failed: ${result.error}`);
|
|
|
|
const output = JSON.parse(result.output);
|
|
assert.ok('agents_dir' in output, 'Must include agents_dir path');
|
|
assert.ok('installed' in output, 'Must include installed array');
|
|
assert.ok('missing' in output, 'Must include missing array');
|
|
assert.ok('agents_found' in output, 'Must include agents_found boolean');
|
|
});
|
|
|
|
test('validate agents lists all expected agent types', () => {
|
|
const result = runGsdTools('validate agents --raw', tmpDir);
|
|
assert.ok(result.success, `Command failed: ${result.error}`);
|
|
|
|
const output = JSON.parse(result.output);
|
|
// The expected agents come from MODEL_PROFILES keys
|
|
assert.ok(output.expected.length > 0, 'Must have expected agents');
|
|
});
|
|
});
|