mirror of
https://github.com/affaan-m/everything-claude-code.git
synced 2026-04-10 03:13:29 +08:00
137 lines
3.8 KiB
JavaScript
137 lines
3.8 KiB
JavaScript
/**
|
|
* Tests for scripts/gemini-adapt-agents.js
|
|
*/
|
|
|
|
const assert = require('assert');
|
|
const fs = require('fs');
|
|
const os = require('os');
|
|
const path = require('path');
|
|
const { execFileSync } = require('child_process');
|
|
|
|
const SCRIPT = path.join(__dirname, '..', '..', 'scripts', 'gemini-adapt-agents.js');
|
|
|
|
function run(args = [], options = {}) {
|
|
try {
|
|
const stdout = execFileSync('node', [SCRIPT, ...args], {
|
|
encoding: 'utf8',
|
|
stdio: ['pipe', 'pipe', 'pipe'],
|
|
cwd: options.cwd,
|
|
timeout: 10000,
|
|
});
|
|
return { code: 0, stdout, stderr: '' };
|
|
} catch (error) {
|
|
return {
|
|
code: error.status || 1,
|
|
stdout: error.stdout || '',
|
|
stderr: error.stderr || '',
|
|
};
|
|
}
|
|
}
|
|
|
|
function test(name, fn) {
|
|
try {
|
|
fn();
|
|
console.log(` ✓ ${name}`);
|
|
return true;
|
|
} catch (error) {
|
|
console.log(` ✗ ${name}`);
|
|
console.log(` Error: ${error.message}`);
|
|
return false;
|
|
}
|
|
}
|
|
|
|
function createTempDir() {
|
|
return fs.mkdtempSync(path.join(os.tmpdir(), 'ecc-gemini-adapt-'));
|
|
}
|
|
|
|
function cleanupTempDir(dirPath) {
|
|
fs.rmSync(dirPath, { recursive: true, force: true });
|
|
}
|
|
|
|
function writeAgent(dirPath, name, body) {
|
|
fs.mkdirSync(dirPath, { recursive: true });
|
|
fs.writeFileSync(path.join(dirPath, name), body);
|
|
}
|
|
|
|
function runTests() {
|
|
console.log('\n=== Testing gemini-adapt-agents.js ===\n');
|
|
|
|
let passed = 0;
|
|
let failed = 0;
|
|
|
|
if (test('shows help with an explicit help flag', () => {
|
|
const result = run(['--help']);
|
|
assert.strictEqual(result.code, 0, result.stderr);
|
|
assert.ok(result.stdout.includes('Adapt ECC agent frontmatter for Gemini CLI'));
|
|
assert.ok(result.stdout.includes('Usage:'));
|
|
})) passed++; else failed++;
|
|
|
|
if (test('adapts Claude Code tool names and strips unsupported color metadata', () => {
|
|
const tempDir = createTempDir();
|
|
const agentsDir = path.join(tempDir, '.gemini', 'agents');
|
|
|
|
try {
|
|
writeAgent(
|
|
agentsDir,
|
|
'gan-planner.md',
|
|
[
|
|
'---',
|
|
'name: gan-planner',
|
|
'description: Planner agent',
|
|
'tools: [Read, Write, Edit, Bash, Grep, Glob, WebSearch, WebFetch, mcp__context7__resolve-library-id]',
|
|
'model: opus',
|
|
'color: purple',
|
|
'---',
|
|
'',
|
|
'Body'
|
|
].join('\n')
|
|
);
|
|
|
|
const result = run([agentsDir]);
|
|
assert.strictEqual(result.code, 0, result.stderr);
|
|
assert.ok(result.stdout.includes('Updated 1 agent file(s)'));
|
|
|
|
const updated = fs.readFileSync(path.join(agentsDir, 'gan-planner.md'), 'utf8');
|
|
assert.ok(updated.includes('tools: ["read_file", "write_file", "replace", "run_shell_command", "grep_search", "glob", "google_web_search", "web_fetch", "mcp_context7_resolve_library_id"]'));
|
|
assert.ok(!updated.includes('color: purple'));
|
|
} finally {
|
|
cleanupTempDir(tempDir);
|
|
}
|
|
})) passed++; else failed++;
|
|
|
|
if (test('defaults to the cwd .gemini/agents directory', () => {
|
|
const tempDir = createTempDir();
|
|
const agentsDir = path.join(tempDir, '.gemini', 'agents');
|
|
|
|
try {
|
|
writeAgent(
|
|
agentsDir,
|
|
'architect.md',
|
|
[
|
|
'---',
|
|
'name: architect',
|
|
'description: Architect agent',
|
|
'tools: ["Read", "Grep", "Glob"]',
|
|
'model: opus',
|
|
'---',
|
|
'',
|
|
'Body'
|
|
].join('\n')
|
|
);
|
|
|
|
const result = run([], { cwd: tempDir });
|
|
assert.strictEqual(result.code, 0, result.stderr);
|
|
|
|
const updated = fs.readFileSync(path.join(agentsDir, 'architect.md'), 'utf8');
|
|
assert.ok(updated.includes('tools: ["read_file", "grep_search", "glob"]'));
|
|
} finally {
|
|
cleanupTempDir(tempDir);
|
|
}
|
|
})) passed++; else failed++;
|
|
|
|
console.log(`\nResults: Passed: ${passed}, Failed: ${failed}`);
|
|
process.exit(failed > 0 ? 1 : 0);
|
|
}
|
|
|
|
runTests();
|