mirror of
https://github.com/affaan-m/everything-claude-code.git
synced 2026-04-30 16:45:48 +08:00
105 lines
2.7 KiB
JavaScript
105 lines
2.7 KiB
JavaScript
'use strict';
|
|
|
|
const assert = require('assert');
|
|
const fs = require('fs');
|
|
const path = require('path');
|
|
|
|
const repoRoot = path.resolve(__dirname, '..', '..');
|
|
|
|
let passed = 0;
|
|
let failed = 0;
|
|
|
|
function test(name, fn) {
|
|
try {
|
|
fn();
|
|
console.log(` ✓ ${name}`);
|
|
passed++;
|
|
} catch (error) {
|
|
console.log(` ✗ ${name}`);
|
|
console.log(` Error: ${error.message}`);
|
|
failed++;
|
|
}
|
|
}
|
|
|
|
const publicInstallDocs = [
|
|
'README.md',
|
|
'README.zh-CN.md',
|
|
'docs/pt-BR/README.md',
|
|
'docs/zh-CN/README.md',
|
|
'docs/ja-JP/skills/configure-ecc/SKILL.md',
|
|
'docs/zh-CN/skills/configure-ecc/SKILL.md',
|
|
];
|
|
|
|
console.log('\n=== Testing public install identifiers ===\n');
|
|
|
|
for (const relativePath of publicInstallDocs) {
|
|
const content = fs.readFileSync(path.join(repoRoot, relativePath), 'utf8');
|
|
|
|
test(`${relativePath} does not use the stale ecc@ecc plugin identifier`, () => {
|
|
assert.ok(!content.includes('ecc@ecc'));
|
|
});
|
|
|
|
test(`${relativePath} documents the canonical marketplace plugin identifier`, () => {
|
|
assert.ok(content.includes('everything-claude-code@everything-claude-code'));
|
|
});
|
|
}
|
|
|
|
const pluginAndManualInstallDocs = [
|
|
'README.md',
|
|
'README.zh-CN.md',
|
|
'docs/zh-CN/README.md',
|
|
];
|
|
|
|
const publicCommandNamespaceDocs = [
|
|
'README.md',
|
|
'README.zh-CN.md',
|
|
'docs/pt-BR/README.md',
|
|
'docs/tr/README.md',
|
|
'docs/ko-KR/README.md',
|
|
'docs/ja-JP/README.md',
|
|
'docs/zh-CN/README.md',
|
|
'docs/zh-TW/README.md',
|
|
];
|
|
|
|
for (const relativePath of pluginAndManualInstallDocs) {
|
|
const content = fs.readFileSync(path.join(repoRoot, relativePath), 'utf8');
|
|
|
|
test(`${relativePath} warns not to run the full installer after plugin install`, () => {
|
|
assert.ok(
|
|
content.includes('--profile full'),
|
|
'Expected docs to mention the full installer explicitly'
|
|
);
|
|
assert.ok(
|
|
content.includes('/plugin install'),
|
|
'Expected docs to mention plugin install explicitly'
|
|
);
|
|
assert.ok(
|
|
content.includes('不要再运行')
|
|
|| content.includes('do not run'),
|
|
'Expected docs to warn that plugin install and full install are not sequential'
|
|
);
|
|
});
|
|
}
|
|
|
|
for (const relativePath of publicCommandNamespaceDocs) {
|
|
const content = fs.readFileSync(path.join(repoRoot, relativePath), 'utf8');
|
|
|
|
test(`${relativePath} uses the canonical plugin command namespace`, () => {
|
|
assert.ok(
|
|
!content.includes('/ecc:'),
|
|
'Expected docs not to advertise the unsupported /ecc: plugin alias'
|
|
);
|
|
assert.ok(
|
|
content.includes('/everything-claude-code:plan'),
|
|
'Expected docs to show the canonical plugin command namespace'
|
|
);
|
|
});
|
|
}
|
|
|
|
if (failed > 0) {
|
|
console.log(`\nFailed: ${failed}`);
|
|
process.exit(1);
|
|
}
|
|
|
|
console.log(`\nPassed: ${passed}`);
|