mirror of
https://github.com/glittercowboy/get-shit-done
synced 2026-04-25 17:25:23 +02:00
New test files for 4 previously untested modules: model-profiles.test.cjs (15 tests): - MODEL_PROFILES data integrity (all agents, all profiles, valid aliases) - VALID_PROFILES list validation - getAgentToModelMapForProfile (balanced, budget, quality, agent count) - formatAgentToModelMapAsTable (header, separator, column alignment) template.test.cjs (11 tests): - template select: minimal/standard/complex heuristics, fallback - template fill: summary/plan/verification generation, --plan option - Error paths: existing file, unknown type, missing phase profile-pipeline.test.cjs (7 tests): - scan-sessions: empty dir, synthetic project, multi-session - extract-messages: user message extraction, meta/internal filtering - profile-questionnaire: structure validation profile-output.test.cjs (13 tests): - PROFILING_QUESTIONS data (fields, options, uniqueness) - CLAUDE_INSTRUCTIONS coverage (dimensions, instruction mapping) - write-profile: analysis JSON → USER-PROFILE.md - generate-claude-md: --auto generation, --force protection - generate-dev-preferences: analysis → preferences command Test count: 744 → 798 (+54 new tests, 0 failures)
161 lines
6.9 KiB
JavaScript
161 lines
6.9 KiB
JavaScript
/**
|
|
* Profile Pipeline Tests
|
|
*
|
|
* Tests for session scanning, message extraction, and profile sampling.
|
|
* Uses synthetic session data in temp directories via --path override.
|
|
*/
|
|
|
|
const { test, describe, beforeEach, afterEach } = require('node:test');
|
|
const assert = require('node:assert');
|
|
const fs = require('fs');
|
|
const path = require('path');
|
|
const os = require('os');
|
|
const { runGsdTools, createTempProject, cleanup } = require('./helpers.cjs');
|
|
|
|
// ─── scan-sessions ────────────────────────────────────────────────────────────
|
|
|
|
describe('scan-sessions command', () => {
|
|
let tmpDir;
|
|
|
|
beforeEach(() => {
|
|
tmpDir = fs.mkdtempSync(path.join(os.tmpdir(), 'gsd-profile-test-'));
|
|
});
|
|
|
|
afterEach(() => {
|
|
cleanup(tmpDir);
|
|
});
|
|
|
|
test('returns empty array for empty sessions directory', () => {
|
|
const sessionsDir = path.join(tmpDir, 'projects');
|
|
fs.mkdirSync(sessionsDir, { recursive: true });
|
|
const result = runGsdTools(`scan-sessions --path ${sessionsDir} --raw`, tmpDir);
|
|
assert.ok(result.success, `Failed: ${result.error}`);
|
|
const out = JSON.parse(result.output);
|
|
assert.ok(Array.isArray(out), 'should return an array');
|
|
assert.strictEqual(out.length, 0, 'should be empty');
|
|
});
|
|
|
|
test('scans synthetic project directory', () => {
|
|
const sessionsDir = path.join(tmpDir, 'projects');
|
|
const projectDir = path.join(sessionsDir, 'test-project-abc123');
|
|
fs.mkdirSync(projectDir, { recursive: true });
|
|
|
|
// Create a synthetic session file
|
|
const sessionData = [
|
|
JSON.stringify({ type: 'user', userType: 'external', message: { content: 'hello' }, timestamp: Date.now() }),
|
|
JSON.stringify({ type: 'assistant', message: { content: 'hi' }, timestamp: Date.now() }),
|
|
].join('\n');
|
|
fs.writeFileSync(path.join(projectDir, 'session-001.jsonl'), sessionData);
|
|
|
|
const result = runGsdTools(`scan-sessions --path ${sessionsDir} --raw`, tmpDir);
|
|
assert.ok(result.success, `Failed: ${result.error}`);
|
|
const out = JSON.parse(result.output);
|
|
assert.ok(Array.isArray(out), 'should return array');
|
|
assert.strictEqual(out.length, 1, 'should find 1 project');
|
|
assert.strictEqual(out[0].sessionCount, 1, 'should have 1 session');
|
|
});
|
|
|
|
test('reports multiple sessions and sizes', () => {
|
|
const sessionsDir = path.join(tmpDir, 'projects');
|
|
const projectDir = path.join(sessionsDir, 'multi-session-project');
|
|
fs.mkdirSync(projectDir, { recursive: true });
|
|
|
|
for (let i = 1; i <= 3; i++) {
|
|
const data = JSON.stringify({ type: 'user', userType: 'external', message: { content: `msg ${i}` }, timestamp: Date.now() });
|
|
fs.writeFileSync(path.join(projectDir, `session-${i}.jsonl`), data + '\n');
|
|
}
|
|
|
|
const result = runGsdTools(`scan-sessions --path ${sessionsDir} --raw`, tmpDir);
|
|
assert.ok(result.success, `Failed: ${result.error}`);
|
|
const out = JSON.parse(result.output);
|
|
assert.strictEqual(out[0].sessionCount, 3);
|
|
assert.ok(out[0].totalSize > 0, 'should have non-zero size');
|
|
});
|
|
});
|
|
|
|
// ─── extract-messages ─────────────────────────────────────────────────────────
|
|
|
|
describe('extract-messages command', () => {
|
|
let tmpDir;
|
|
|
|
beforeEach(() => {
|
|
tmpDir = fs.mkdtempSync(path.join(os.tmpdir(), 'gsd-profile-test-'));
|
|
});
|
|
|
|
afterEach(() => {
|
|
cleanup(tmpDir);
|
|
});
|
|
|
|
test('extracts user messages from synthetic session', () => {
|
|
const sessionsDir = path.join(tmpDir, 'projects');
|
|
const projectDir = path.join(sessionsDir, 'my-project');
|
|
fs.mkdirSync(projectDir, { recursive: true });
|
|
|
|
const messages = [
|
|
{ type: 'user', userType: 'external', message: { content: 'fix the login bug' }, timestamp: Date.now() },
|
|
{ type: 'assistant', message: { content: 'I will fix it.' }, timestamp: Date.now() },
|
|
{ type: 'user', userType: 'external', message: { content: 'add dark mode' }, timestamp: Date.now() },
|
|
{ type: 'user', userType: 'internal', isMeta: true, message: { content: '<local-command' }, timestamp: Date.now() },
|
|
];
|
|
fs.writeFileSync(
|
|
path.join(projectDir, 'session-001.jsonl'),
|
|
messages.map(m => JSON.stringify(m)).join('\n')
|
|
);
|
|
|
|
const result = runGsdTools(`extract-messages my-project --path ${sessionsDir} --raw`, tmpDir);
|
|
assert.ok(result.success, `Failed: ${result.error}`);
|
|
const out = JSON.parse(result.output);
|
|
assert.strictEqual(out.messages_extracted, 2, 'should extract 2 genuine user messages');
|
|
assert.strictEqual(out.project, 'my-project');
|
|
assert.ok(out.output_file, 'should have output file path');
|
|
});
|
|
|
|
test('filters out meta and internal messages', () => {
|
|
const sessionsDir = path.join(tmpDir, 'projects');
|
|
const projectDir = path.join(sessionsDir, 'filter-test');
|
|
fs.mkdirSync(projectDir, { recursive: true });
|
|
|
|
const messages = [
|
|
{ type: 'user', userType: 'external', message: { content: 'real message' }, timestamp: Date.now() },
|
|
{ type: 'user', userType: 'internal', message: { content: 'internal msg' }, timestamp: Date.now() },
|
|
{ type: 'user', userType: 'external', isMeta: true, message: { content: 'meta msg' }, timestamp: Date.now() },
|
|
{ type: 'user', userType: 'external', message: { content: '<local-command test' }, timestamp: Date.now() },
|
|
{ type: 'user', userType: 'external', message: { content: '' }, timestamp: Date.now() },
|
|
{ type: 'user', userType: 'external', message: { content: 'second real' }, timestamp: Date.now() },
|
|
];
|
|
fs.writeFileSync(
|
|
path.join(projectDir, 'session-001.jsonl'),
|
|
messages.map(m => JSON.stringify(m)).join('\n')
|
|
);
|
|
|
|
const result = runGsdTools(`extract-messages filter-test --path ${sessionsDir} --raw`, tmpDir);
|
|
assert.ok(result.success, `Failed: ${result.error}`);
|
|
const out = JSON.parse(result.output);
|
|
assert.strictEqual(out.messages_extracted, 2, 'should only extract 2 genuine external messages');
|
|
});
|
|
});
|
|
|
|
// ─── profile-questionnaire ────────────────────────────────────────────────────
|
|
|
|
describe('profile-questionnaire command', () => {
|
|
let tmpDir;
|
|
|
|
beforeEach(() => {
|
|
tmpDir = createTempProject();
|
|
});
|
|
|
|
afterEach(() => {
|
|
cleanup(tmpDir);
|
|
});
|
|
|
|
test('returns questionnaire structure', () => {
|
|
const result = runGsdTools('profile-questionnaire --raw', tmpDir);
|
|
assert.ok(result.success, `Failed: ${result.error}`);
|
|
const out = JSON.parse(result.output);
|
|
assert.ok(out.questions, 'should have questions array');
|
|
assert.ok(out.questions.length > 0, 'should have at least one question');
|
|
assert.ok(out.questions[0].dimension, 'each question should have a dimension');
|
|
assert.ok(out.questions[0].options, 'each question should have options');
|
|
});
|
|
});
|