* fix(profiles): fix vscode profile generation - Add .instructions.md extension for VSCode Copilot instructions file. - Add customReplacement to remove unsupported property `alwaysApply` from YAML front-matter in VSCode instructions files. - Add missing property `targetExtension` to the base profile object to support the change to file extension. * chore: run format --------- Co-authored-by: Ralph Khreish <35776126+Crunchyman-ralph@users.noreply.github.com>
59 lines
2.4 KiB
JavaScript
59 lines
2.4 KiB
JavaScript
import fs from 'fs';
|
|
import path from 'path';
|
|
import { vscodeProfile } from '../../../src/profiles/vscode.js';
|
|
|
|
describe('VSCode Profile Initialization Functionality', () => {
|
|
let vscodeProfileContent;
|
|
|
|
beforeAll(() => {
|
|
const vscodeJsPath = path.join(
|
|
process.cwd(),
|
|
'src',
|
|
'profiles',
|
|
'vscode.js'
|
|
);
|
|
vscodeProfileContent = fs.readFileSync(vscodeJsPath, 'utf8');
|
|
});
|
|
|
|
test('vscode.js uses factory pattern with correct configuration', () => {
|
|
// Check for explicit, non-default values in the source file
|
|
expect(vscodeProfileContent).toContain("name: 'vscode'");
|
|
expect(vscodeProfileContent).toContain("displayName: 'VS Code'");
|
|
expect(vscodeProfileContent).toContain("url: 'code.visualstudio.com'");
|
|
expect(vscodeProfileContent).toContain(
|
|
"docsUrl: 'code.visualstudio.com/docs'"
|
|
);
|
|
expect(vscodeProfileContent).toContain("rulesDir: '.github/instructions'"); // non-default
|
|
expect(vscodeProfileContent).toContain('customReplacements'); // non-default
|
|
|
|
// Check the final computed properties on the profile object
|
|
expect(vscodeProfile.profileName).toBe('vscode');
|
|
expect(vscodeProfile.displayName).toBe('VS Code');
|
|
expect(vscodeProfile.profileDir).toBe('.vscode'); // default
|
|
expect(vscodeProfile.rulesDir).toBe('.github/instructions'); // non-default
|
|
expect(vscodeProfile.globalReplacements).toBeDefined(); // computed from customReplacements
|
|
expect(Array.isArray(vscodeProfile.globalReplacements)).toBe(true);
|
|
});
|
|
|
|
test('vscode.js configures .mdc to .instructions.md extension mapping', () => {
|
|
// Check that the profile object has the correct file mapping behavior (vscode converts to .md)
|
|
expect(vscodeProfile.fileMap['rules/cursor_rules.mdc']).toBe(
|
|
'vscode_rules.instructions.md'
|
|
);
|
|
});
|
|
|
|
test('vscode.js uses standard tool mappings', () => {
|
|
// Check that the profile uses default tool mappings (equivalent to COMMON_TOOL_MAPPINGS.STANDARD)
|
|
// This verifies the architectural pattern: no custom toolMappings = standard tool names
|
|
expect(vscodeProfileContent).not.toContain('toolMappings:');
|
|
expect(vscodeProfileContent).not.toContain('apply_diff');
|
|
expect(vscodeProfileContent).not.toContain('search_files');
|
|
|
|
// Verify the result: default mappings means tools keep their original names
|
|
expect(vscodeProfile.conversionConfig.toolNames.edit_file).toBe(
|
|
'edit_file'
|
|
);
|
|
expect(vscodeProfile.conversionConfig.toolNames.search).toBe('search');
|
|
});
|
|
});
|