mirror of
https://github.com/glittercowboy/get-shit-done
synced 2026-04-26 09:45:22 +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>
208 lines
7.9 KiB
JavaScript
208 lines
7.9 KiB
JavaScript
/**
|
|
* GSD Tools Tests - Agent Skills Injection
|
|
*
|
|
* CLI integration tests for the `agent-skills` command that reads
|
|
* `agent_skills` from .planning/config.json and returns a formatted
|
|
* skills block for injection into Task() prompts.
|
|
*/
|
|
|
|
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');
|
|
|
|
// ─── helpers ──────────────────────────────────────────────────────────────────
|
|
|
|
function writeConfig(tmpDir, obj) {
|
|
const configPath = path.join(tmpDir, '.planning', 'config.json');
|
|
fs.writeFileSync(configPath, JSON.stringify(obj, null, 2), 'utf-8');
|
|
}
|
|
|
|
function readConfig(tmpDir) {
|
|
const configPath = path.join(tmpDir, '.planning', 'config.json');
|
|
return JSON.parse(fs.readFileSync(configPath, 'utf-8'));
|
|
}
|
|
|
|
// ─── agent-skills command ────────────────────────────────────────────────────
|
|
|
|
describe('agent-skills command', () => {
|
|
let tmpDir;
|
|
|
|
beforeEach(() => {
|
|
tmpDir = createTempProject();
|
|
});
|
|
|
|
afterEach(() => {
|
|
cleanup(tmpDir);
|
|
});
|
|
|
|
test('returns empty when no config exists', () => {
|
|
// No config.json at all
|
|
const result = runGsdTools(['agent-skills', 'gsd-executor'], tmpDir, { HOME: tmpDir, USERPROFILE: tmpDir });
|
|
// Should succeed with empty output (no skills configured)
|
|
assert.strictEqual(result.output, '');
|
|
});
|
|
|
|
test('returns empty when config has no agent_skills section', () => {
|
|
writeConfig(tmpDir, { model_profile: 'balanced' });
|
|
const result = runGsdTools(['agent-skills', 'gsd-executor'], tmpDir, { HOME: tmpDir, USERPROFILE: tmpDir });
|
|
assert.strictEqual(result.output, '');
|
|
});
|
|
|
|
test('returns empty for unconfigured agent type', () => {
|
|
writeConfig(tmpDir, {
|
|
agent_skills: {
|
|
'gsd-executor': ['skills/test-skill'],
|
|
},
|
|
});
|
|
const result = runGsdTools(['agent-skills', 'gsd-planner'], tmpDir, { HOME: tmpDir, USERPROFILE: tmpDir });
|
|
assert.strictEqual(result.output, '');
|
|
});
|
|
|
|
test('returns formatted block for configured agent with array of paths', () => {
|
|
// Create the skill directories with SKILL.md files
|
|
const skillDir = path.join(tmpDir, 'skills', 'test-skill');
|
|
fs.mkdirSync(skillDir, { recursive: true });
|
|
fs.writeFileSync(path.join(skillDir, 'SKILL.md'), '# Test Skill\n');
|
|
|
|
writeConfig(tmpDir, {
|
|
agent_skills: {
|
|
'gsd-executor': ['skills/test-skill'],
|
|
},
|
|
});
|
|
|
|
const result = runGsdTools(['agent-skills', 'gsd-executor'], tmpDir, { HOME: tmpDir, USERPROFILE: tmpDir });
|
|
assert.ok(result.success, `Command failed: ${result.error}`);
|
|
assert.ok(result.output.includes('<agent_skills>'), 'Should contain <agent_skills> tag');
|
|
assert.ok(result.output.includes('</agent_skills>'), 'Should contain closing tag');
|
|
assert.ok(result.output.includes('skills/test-skill/SKILL.md'), 'Should contain skill path');
|
|
});
|
|
|
|
test('returns formatted block for configured agent with single string path', () => {
|
|
const skillDir = path.join(tmpDir, 'skills', 'my-skill');
|
|
fs.mkdirSync(skillDir, { recursive: true });
|
|
fs.writeFileSync(path.join(skillDir, 'SKILL.md'), '# My Skill\n');
|
|
|
|
writeConfig(tmpDir, {
|
|
agent_skills: {
|
|
'gsd-executor': 'skills/my-skill',
|
|
},
|
|
});
|
|
|
|
const result = runGsdTools(['agent-skills', 'gsd-executor'], tmpDir, { HOME: tmpDir, USERPROFILE: tmpDir });
|
|
assert.ok(result.success, `Command failed: ${result.error}`);
|
|
assert.ok(result.output.includes('skills/my-skill/SKILL.md'), 'Should contain skill path');
|
|
});
|
|
|
|
test('handles multiple skill paths', () => {
|
|
const skill1 = path.join(tmpDir, 'skills', 'skill-a');
|
|
const skill2 = path.join(tmpDir, 'skills', 'skill-b');
|
|
fs.mkdirSync(skill1, { recursive: true });
|
|
fs.mkdirSync(skill2, { recursive: true });
|
|
fs.writeFileSync(path.join(skill1, 'SKILL.md'), '# Skill A\n');
|
|
fs.writeFileSync(path.join(skill2, 'SKILL.md'), '# Skill B\n');
|
|
|
|
writeConfig(tmpDir, {
|
|
agent_skills: {
|
|
'gsd-executor': ['skills/skill-a', 'skills/skill-b'],
|
|
},
|
|
});
|
|
|
|
const result = runGsdTools(['agent-skills', 'gsd-executor'], tmpDir, { HOME: tmpDir, USERPROFILE: tmpDir });
|
|
assert.ok(result.success, `Command failed: ${result.error}`);
|
|
assert.ok(result.output.includes('skills/skill-a/SKILL.md'), 'Should contain first skill');
|
|
assert.ok(result.output.includes('skills/skill-b/SKILL.md'), 'Should contain second skill');
|
|
});
|
|
|
|
test('warns for nonexistent skill path but does not error', () => {
|
|
writeConfig(tmpDir, {
|
|
agent_skills: {
|
|
'gsd-executor': ['skills/nonexistent'],
|
|
},
|
|
});
|
|
|
|
const result = runGsdTools(['agent-skills', 'gsd-executor'], tmpDir, { HOME: tmpDir, USERPROFILE: tmpDir });
|
|
// Should not crash — returns empty output (the missing skill is skipped)
|
|
assert.ok(result.success, 'Command should succeed even with missing skill paths');
|
|
// Should not include the missing skill in the output
|
|
assert.ok(!result.output.includes('skills/nonexistent/SKILL.md'),
|
|
'Should not include nonexistent skill in output');
|
|
});
|
|
|
|
test('validates path safety — rejects traversal attempts', () => {
|
|
writeConfig(tmpDir, {
|
|
agent_skills: {
|
|
'gsd-executor': ['../../../etc/passwd'],
|
|
},
|
|
});
|
|
|
|
const result = runGsdTools(['agent-skills', 'gsd-executor'], tmpDir, { HOME: tmpDir, USERPROFILE: tmpDir });
|
|
// Should not include traversal path in output
|
|
assert.ok(!result.output.includes('/etc/passwd'), 'Should not include traversal path');
|
|
});
|
|
|
|
test('returns empty when no agent type argument provided', () => {
|
|
const result = runGsdTools(['agent-skills'], tmpDir, { HOME: tmpDir, USERPROFILE: tmpDir });
|
|
// Should succeed with empty output — no agent type means no skills to return
|
|
assert.ok(result.success, 'Command should succeed');
|
|
const parsed = JSON.parse(result.output);
|
|
assert.strictEqual(parsed, '', 'Should return empty string');
|
|
});
|
|
});
|
|
|
|
// ─── config-ensure-section includes agent_skills ────────────────────────────
|
|
|
|
describe('config-ensure-section with agent_skills', () => {
|
|
let tmpDir;
|
|
|
|
beforeEach(() => {
|
|
tmpDir = createTempProject();
|
|
});
|
|
|
|
afterEach(() => {
|
|
cleanup(tmpDir);
|
|
});
|
|
|
|
test('new configs include agent_skills key', () => {
|
|
const result = runGsdTools('config-ensure-section', tmpDir, { HOME: tmpDir, USERPROFILE: tmpDir });
|
|
assert.ok(result.success, `Command failed: ${result.error}`);
|
|
|
|
const config = readConfig(tmpDir);
|
|
assert.ok('agent_skills' in config, 'config should have agent_skills key');
|
|
assert.deepStrictEqual(config.agent_skills, {}, 'agent_skills should default to empty object');
|
|
});
|
|
});
|
|
|
|
// ─── config-set agent_skills ─────────────────────────────────────────────────
|
|
|
|
describe('config-set agent_skills', () => {
|
|
let tmpDir;
|
|
|
|
beforeEach(() => {
|
|
tmpDir = createTempProject();
|
|
// Ensure config exists first
|
|
runGsdTools('config-ensure-section', tmpDir, { HOME: tmpDir, USERPROFILE: tmpDir });
|
|
});
|
|
|
|
afterEach(() => {
|
|
cleanup(tmpDir);
|
|
});
|
|
|
|
test('can set agent_skills via dot notation', () => {
|
|
const result = runGsdTools(
|
|
['config-set', 'agent_skills.gsd-executor', '["skills/my-skill"]'],
|
|
tmpDir,
|
|
{ HOME: tmpDir, USERPROFILE: tmpDir }
|
|
);
|
|
assert.ok(result.success, `Command failed: ${result.error}`);
|
|
|
|
const config = readConfig(tmpDir);
|
|
assert.deepStrictEqual(
|
|
config.agent_skills['gsd-executor'],
|
|
['skills/my-skill'],
|
|
'Should store array of skill paths'
|
|
);
|
|
});
|
|
});
|