mirror of
https://github.com/glittercowboy/get-shit-done
synced 2026-04-25 17:25:23 +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>
162 lines
7.0 KiB
JavaScript
162 lines
7.0 KiB
JavaScript
/**
|
|
* Discuss Mode Config Tests
|
|
*
|
|
* Validates workflow.discuss_mode config, routing, and assumptions workflow integration.
|
|
*/
|
|
|
|
const { test, describe } = require('node:test');
|
|
const assert = require('node:assert/strict');
|
|
const fs = require('fs');
|
|
const path = require('path');
|
|
|
|
describe('workflow.discuss_mode config', () => {
|
|
test('config template includes discuss_mode default', () => {
|
|
const template = JSON.parse(
|
|
fs.readFileSync(path.join(__dirname, '..', 'get-shit-done', 'templates', 'config.json'), 'utf8')
|
|
);
|
|
assert.strictEqual(template.workflow.discuss_mode, 'discuss');
|
|
});
|
|
|
|
test('discuss-phase command references both workflow files', () => {
|
|
const command = fs.readFileSync(
|
|
path.join(__dirname, '..', 'commands', 'gsd', 'discuss-phase.md'), 'utf8'
|
|
);
|
|
assert.ok(command.includes('discuss-phase-assumptions.md'), 'should reference assumptions workflow');
|
|
assert.ok(command.includes('discuss-phase.md'), 'should reference discuss workflow');
|
|
assert.ok(command.includes('workflow.discuss_mode'), 'should reference config key');
|
|
});
|
|
|
|
test('discuss-phase command process block defers to workflow file (not inline instructions)', () => {
|
|
const command = fs.readFileSync(
|
|
path.join(__dirname, '..', 'commands', 'gsd', 'discuss-phase.md'), 'utf8'
|
|
);
|
|
// Extract the <process> block
|
|
const processMatch = command.match(/<process>([\s\S]*?)<\/process>/);
|
|
assert.ok(processMatch, 'should have a <process> block');
|
|
const processBlock = processMatch[1];
|
|
|
|
// The process block must explicitly tell the agent to read the workflow file
|
|
assert.ok(
|
|
processBlock.includes('Read and execute'),
|
|
'process block should direct agent to read and execute workflow file'
|
|
);
|
|
assert.ok(
|
|
processBlock.includes('MANDATORY'),
|
|
'process block should include MANDATORY instruction to read workflow files'
|
|
);
|
|
|
|
// The process block must NOT contain detailed step-by-step instructions
|
|
// that could substitute for the actual workflow file
|
|
assert.ok(
|
|
!processBlock.includes('Scout codebase'),
|
|
'process block should not contain detailed workflow steps (Scout codebase)'
|
|
);
|
|
assert.ok(
|
|
!processBlock.includes('Deep-dive each area'),
|
|
'process block should not contain detailed workflow steps (Deep-dive)'
|
|
);
|
|
assert.ok(
|
|
!processBlock.includes('Probing depth'),
|
|
'process block should not contain detailed workflow steps (Probing depth)'
|
|
);
|
|
});
|
|
|
|
test('discuss-phase command argument-hint includes --text', () => {
|
|
const command = fs.readFileSync(
|
|
path.join(__dirname, '..', 'commands', 'gsd', 'discuss-phase.md'), 'utf8'
|
|
);
|
|
assert.ok(command.includes('--text'), 'argument-hint should include --text');
|
|
});
|
|
|
|
test('assumptions workflow file exists and has required steps', () => {
|
|
const workflow = fs.readFileSync(
|
|
path.join(__dirname, '..', 'get-shit-done', 'workflows', 'discuss-phase-assumptions.md'), 'utf8'
|
|
);
|
|
const requiredSteps = [
|
|
'initialize', 'check_existing', 'load_prior_context',
|
|
'deep_codebase_analysis', 'present_assumptions', 'correct_assumptions',
|
|
'write_context', 'write_discussion_log', 'auto_advance'
|
|
];
|
|
for (const step of requiredSteps) {
|
|
assert.ok(workflow.includes(`<step name="${step}"`), `missing step: ${step}`);
|
|
}
|
|
});
|
|
|
|
test('assumptions workflow produces same CONTEXT.md sections', () => {
|
|
const workflow = fs.readFileSync(
|
|
path.join(__dirname, '..', 'get-shit-done', 'workflows', 'discuss-phase-assumptions.md'), 'utf8'
|
|
);
|
|
const sections = ['<domain>', '<decisions>', '<canonical_refs>', '<code_context>', '<specifics>', '<deferred>'];
|
|
for (const section of sections) {
|
|
assert.ok(workflow.includes(section), `missing CONTEXT.md section: ${section}`);
|
|
}
|
|
});
|
|
|
|
test('plan-phase gate references discuss_mode config', () => {
|
|
const planPhase = fs.readFileSync(
|
|
path.join(__dirname, '..', 'get-shit-done', 'workflows', 'plan-phase.md'), 'utf8'
|
|
);
|
|
assert.ok(planPhase.includes('workflow.discuss_mode'), 'should reference config key');
|
|
assert.ok(planPhase.includes('assumptions mode'), 'should mention assumptions mode');
|
|
});
|
|
|
|
test('assumptions workflow handles --auto flag', () => {
|
|
const workflow = fs.readFileSync(
|
|
path.join(__dirname, '..', 'get-shit-done', 'workflows', 'discuss-phase-assumptions.md'), 'utf8'
|
|
);
|
|
assert.ok(workflow.includes('--auto'), 'should handle --auto');
|
|
assert.ok(workflow.includes('auto-select'), 'should auto-select in --auto mode');
|
|
assert.ok(workflow.includes('auto_advance'), 'should support auto_advance');
|
|
});
|
|
|
|
test('assumptions workflow handles --text flag', () => {
|
|
const workflow = fs.readFileSync(
|
|
path.join(__dirname, '..', 'get-shit-done', 'workflows', 'discuss-phase-assumptions.md'), 'utf8'
|
|
);
|
|
assert.ok(workflow.includes('text_mode'), 'should reference text_mode config');
|
|
assert.ok(workflow.includes('--text'), 'should handle --text flag');
|
|
});
|
|
|
|
test('plan-phase workflow references text_mode', () => {
|
|
const planPhase = fs.readFileSync(
|
|
path.join(__dirname, '..', 'get-shit-done', 'workflows', 'plan-phase.md'), 'utf8'
|
|
);
|
|
assert.ok(planPhase.includes('text_mode'), 'plan-phase workflow should reference text_mode');
|
|
assert.ok(planPhase.includes('TEXT_MODE'), 'plan-phase workflow should use TEXT_MODE variable');
|
|
assert.ok(planPhase.includes('--text'), 'plan-phase workflow should handle --text flag');
|
|
});
|
|
|
|
test('plan-phase command argument-hint includes --text', () => {
|
|
const command = fs.readFileSync(
|
|
path.join(__dirname, '..', 'commands', 'gsd', 'plan-phase.md'), 'utf8'
|
|
);
|
|
assert.ok(command.includes('--text'), 'argument-hint should include --text flag');
|
|
});
|
|
|
|
test('plan-phase init exposes text_mode in workflow flags', () => {
|
|
const initSrc = fs.readFileSync(
|
|
path.join(__dirname, '..', 'get-shit-done', 'bin', 'lib', 'init.cjs'), 'utf8'
|
|
);
|
|
// The cmdInitPlanPhase result object must include text_mode
|
|
const planPhaseBlock = initSrc.slice(initSrc.indexOf('function cmdInitPlanPhase'));
|
|
assert.ok(planPhaseBlock.includes('text_mode: config.text_mode'), 'init plan-phase must expose text_mode');
|
|
});
|
|
|
|
test('progress workflow references discuss_mode', () => {
|
|
const progress = fs.readFileSync(
|
|
path.join(__dirname, '..', 'get-shit-done', 'workflows', 'progress.md'), 'utf8'
|
|
);
|
|
assert.ok(progress.includes('workflow.discuss_mode'), 'should read discuss_mode config');
|
|
assert.ok(progress.includes('Discuss mode'), 'should display discuss mode');
|
|
});
|
|
|
|
test('documentation file exists', () => {
|
|
const docPath = path.join(__dirname, '..', 'docs', 'workflow-discuss-mode.md');
|
|
assert.ok(fs.existsSync(docPath), 'docs/workflow-discuss-mode.md should exist');
|
|
const doc = fs.readFileSync(docPath, 'utf8');
|
|
assert.ok(doc.includes('assumptions'), 'doc should mention assumptions');
|
|
assert.ok(doc.includes('discuss'), 'doc should mention discuss');
|
|
assert.ok(doc.includes('config-set'), 'doc should show how to configure');
|
|
});
|
|
});
|