mirror of
https://github.com/eyaltoledano/claude-task-master.git
synced 2025-07-30 20:34:19 +00:00
114 lines
3.5 KiB
JavaScript
114 lines
3.5 KiB
JavaScript
![]() |
import { expect } from 'chai';
|
||
|
import fs from 'fs';
|
||
|
import path from 'path';
|
||
|
import { fileURLToPath } from 'url';
|
||
|
import { dirname } from 'path';
|
||
|
import { convertCursorRuleToRooRule } from '../modules/rule-transformer.js';
|
||
|
|
||
|
const __filename = fileURLToPath(import.meta.url);
|
||
|
const __dirname = dirname(__filename);
|
||
|
|
||
|
describe('Rule Transformer', () => {
|
||
|
const testDir = path.join(__dirname, 'temp-test-dir');
|
||
|
|
||
|
before(() => {
|
||
|
// Create test directory
|
||
|
if (!fs.existsSync(testDir)) {
|
||
|
fs.mkdirSync(testDir, { recursive: true });
|
||
|
}
|
||
|
});
|
||
|
|
||
|
after(() => {
|
||
|
// Clean up test directory
|
||
|
if (fs.existsSync(testDir)) {
|
||
|
fs.rmSync(testDir, { recursive: true, force: true });
|
||
|
}
|
||
|
});
|
||
|
|
||
|
it('should correctly convert basic terms', () => {
|
||
|
// Create a test Cursor rule file with basic terms
|
||
|
const testCursorRule = path.join(testDir, 'basic-terms.mdc');
|
||
|
const testContent = `---
|
||
|
description: Test Cursor rule for basic terms
|
||
|
globs: **/*
|
||
|
alwaysApply: true
|
||
|
---
|
||
|
|
||
|
This is a Cursor rule that references cursor.so and uses the word Cursor multiple times.
|
||
|
Also has references to .mdc files.`;
|
||
|
|
||
|
fs.writeFileSync(testCursorRule, testContent);
|
||
|
|
||
|
// Convert it
|
||
|
const testRooRule = path.join(testDir, 'basic-terms.md');
|
||
|
convertCursorRuleToRooRule(testCursorRule, testRooRule);
|
||
|
|
||
|
// Read the converted file
|
||
|
const convertedContent = fs.readFileSync(testRooRule, 'utf8');
|
||
|
|
||
|
// Verify transformations
|
||
|
expect(convertedContent).to.include('Roo Code');
|
||
|
expect(convertedContent).to.include('roocode.com');
|
||
|
expect(convertedContent).to.include('.md');
|
||
|
expect(convertedContent).to.not.include('cursor.so');
|
||
|
expect(convertedContent).to.not.include('Cursor rule');
|
||
|
});
|
||
|
|
||
|
it('should correctly convert tool references', () => {
|
||
|
// Create a test Cursor rule file with tool references
|
||
|
const testCursorRule = path.join(testDir, 'tool-refs.mdc');
|
||
|
const testContent = `---
|
||
|
description: Test Cursor rule for tool references
|
||
|
globs: **/*
|
||
|
alwaysApply: true
|
||
|
---
|
||
|
|
||
|
- Use the search tool to find code
|
||
|
- The edit_file tool lets you modify files
|
||
|
- run_command executes terminal commands
|
||
|
- use_mcp connects to external services`;
|
||
|
|
||
|
fs.writeFileSync(testCursorRule, testContent);
|
||
|
|
||
|
// Convert it
|
||
|
const testRooRule = path.join(testDir, 'tool-refs.md');
|
||
|
convertCursorRuleToRooRule(testCursorRule, testRooRule);
|
||
|
|
||
|
// Read the converted file
|
||
|
const convertedContent = fs.readFileSync(testRooRule, 'utf8');
|
||
|
|
||
|
// Verify transformations
|
||
|
expect(convertedContent).to.include('search_files tool');
|
||
|
expect(convertedContent).to.include('apply_diff tool');
|
||
|
expect(convertedContent).to.include('execute_command');
|
||
|
expect(convertedContent).to.include('use_mcp_tool');
|
||
|
});
|
||
|
|
||
|
it('should correctly update file references', () => {
|
||
|
// Create a test Cursor rule file with file references
|
||
|
const testCursorRule = path.join(testDir, 'file-refs.mdc');
|
||
|
const testContent = `---
|
||
|
description: Test Cursor rule for file references
|
||
|
globs: **/*
|
||
|
alwaysApply: true
|
||
|
---
|
||
|
|
||
|
This references [dev_workflow.mdc](mdc:.cursor/rules/dev_workflow.mdc) and
|
||
|
[taskmaster.mdc](mdc:.cursor/rules/taskmaster.mdc).`;
|
||
|
|
||
|
fs.writeFileSync(testCursorRule, testContent);
|
||
|
|
||
|
// Convert it
|
||
|
const testRooRule = path.join(testDir, 'file-refs.md');
|
||
|
convertCursorRuleToRooRule(testCursorRule, testRooRule);
|
||
|
|
||
|
// Read the converted file
|
||
|
const convertedContent = fs.readFileSync(testRooRule, 'utf8');
|
||
|
|
||
|
// Verify transformations
|
||
|
expect(convertedContent).to.include('(mdc:.roo/rules/dev_workflow.md)');
|
||
|
expect(convertedContent).to.include('(mdc:.roo/rules/taskmaster.md)');
|
||
|
expect(convertedContent).to.not.include('(mdc:.cursor/rules/');
|
||
|
});
|
||
|
});
|