-
Notifications
You must be signed in to change notification settings - Fork 4.6k
Expand file tree
/
Copy pathavailable-tools.test.ts
More file actions
180 lines (144 loc) · 7.13 KB
/
Copy pathavailable-tools.test.ts
File metadata and controls
180 lines (144 loc) · 7.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
import { describe, it, expect, beforeEach, afterEach } from 'vitest';
import { promises as fs } from 'fs';
import path from 'path';
import os from 'os';
import { randomUUID } from 'crypto';
import { getAvailableTools } from '../../src/core/available-tools.js';
describe('available-tools', () => {
let testDir: string;
beforeEach(async () => {
testDir = path.join(os.tmpdir(), `openspec-test-${randomUUID()}`);
await fs.mkdir(testDir, { recursive: true });
});
afterEach(async () => {
await fs.rm(testDir, { recursive: true, force: true });
});
describe('getAvailableTools', () => {
it('should return empty array when no tool directories exist', () => {
const tools = getAvailableTools(testDir);
expect(tools).toEqual([]);
});
it('should detect a single tool directory', async () => {
await fs.mkdir(path.join(testDir, '.claude'), { recursive: true });
const tools = getAvailableTools(testDir);
expect(tools).toHaveLength(1);
expect(tools[0].value).toBe('claude');
expect(tools[0].name).toBe('Claude Code');
expect(tools[0].skillsDir).toBe('.claude');
});
it('should detect multiple tool directories', async () => {
await fs.mkdir(path.join(testDir, '.claude'), { recursive: true });
await fs.mkdir(path.join(testDir, '.cursor'), { recursive: true });
await fs.mkdir(path.join(testDir, '.windsurf'), { recursive: true });
const tools = getAvailableTools(testDir);
const toolValues = tools.map((t) => t.value);
expect(toolValues).toContain('claude');
expect(toolValues).toContain('cursor');
expect(toolValues).toContain('windsurf');
expect(tools).toHaveLength(3);
});
it('should ignore files that are not directories', async () => {
// Create a file named .claude instead of a directory
await fs.writeFile(path.join(testDir, '.claude'), 'not a directory');
const tools = getAvailableTools(testDir);
expect(tools).toEqual([]);
});
it('should only return tools that have a skillsDir property', async () => {
// .agents value has no skillsDir in AI_TOOLS config
// Create directories for both a valid and the agents case
await fs.mkdir(path.join(testDir, '.claude'), { recursive: true });
const tools = getAvailableTools(testDir);
const toolValues = tools.map((t) => t.value);
expect(toolValues).toContain('claude');
expect(toolValues).not.toContain('agents');
});
it('should return full AIToolOption objects', async () => {
await fs.mkdir(path.join(testDir, '.cursor'), { recursive: true });
const tools = getAvailableTools(testDir);
expect(tools).toHaveLength(1);
expect(tools[0]).toMatchObject({
name: 'Cursor',
value: 'cursor',
available: true,
skillsDir: '.cursor',
});
});
it('should handle paths with spaces', async () => {
const spacedDir = path.join(testDir, 'path with spaces');
await fs.mkdir(spacedDir, { recursive: true });
await fs.mkdir(path.join(spacedDir, '.claude'), { recursive: true });
const tools = getAvailableTools(spacedDir);
expect(tools).toHaveLength(1);
expect(tools[0].value).toBe('claude');
});
it('should not detect GitHub Copilot from bare .github directory', async () => {
// .github/ exists in virtually every GitHub repo (for workflows, issue templates, etc.)
// A bare .github/ directory should NOT trigger Copilot detection
await fs.mkdir(path.join(testDir, '.github'), { recursive: true });
const tools = getAvailableTools(testDir);
const toolValues = tools.map((t) => t.value);
expect(toolValues).not.toContain('github-copilot');
});
it('should detect GitHub Copilot when copilot-instructions.md exists', async () => {
await fs.mkdir(path.join(testDir, '.github'), { recursive: true });
await fs.writeFile(path.join(testDir, '.github', 'copilot-instructions.md'), '');
const tools = getAvailableTools(testDir);
const toolValues = tools.map((t) => t.value);
expect(toolValues).toContain('github-copilot');
});
it('should detect GitHub Copilot when .github/prompts directory exists', async () => {
await fs.mkdir(path.join(testDir, '.github', 'prompts'), { recursive: true });
const tools = getAvailableTools(testDir);
const toolValues = tools.map((t) => t.value);
expect(toolValues).toContain('github-copilot');
});
it('should detect GitHub Copilot when .github/agents directory exists', async () => {
await fs.mkdir(path.join(testDir, '.github', 'agents'), { recursive: true });
const tools = getAvailableTools(testDir);
const toolValues = tools.map((t) => t.value);
expect(toolValues).toContain('github-copilot');
});
it('should detect GitHub Copilot when .github/skills directory exists', async () => {
await fs.mkdir(path.join(testDir, '.github', 'skills'), { recursive: true });
const tools = getAvailableTools(testDir);
const toolValues = tools.map((t) => t.value);
expect(toolValues).toContain('github-copilot');
});
it('should detect GitHub Copilot when copilot-setup-steps.yml exists', async () => {
await fs.mkdir(path.join(testDir, '.github', 'workflows'), { recursive: true });
await fs.writeFile(path.join(testDir, '.github', 'workflows', 'copilot-setup-steps.yml'), '');
const tools = getAvailableTools(testDir);
const toolValues = tools.map((t) => t.value);
expect(toolValues).toContain('github-copilot');
});
it('should still use skillsDir detection for tools without detectionPaths', async () => {
// Claude Code has no detectionPaths, so .claude/ directory should still work
await fs.mkdir(path.join(testDir, '.claude'), { recursive: true });
const tools = getAvailableTools(testDir);
const toolValues = tools.map((t) => t.value);
expect(toolValues).toContain('claude');
});
it('should detect Mistral Vibe when .vibe directory exists', async () => {
// Mistral Vibe uses skillsDir: '.vibe' without detectionPaths
// This test ensures path semantics do not drift for Vibe skill detection
await fs.mkdir(path.join(testDir, '.vibe'), { recursive: true });
const tools = getAvailableTools(testDir);
const toolValues = tools.map((t) => t.value);
expect(toolValues).toContain('vibe');
const vibeTool = tools.find((t) => t.value === 'vibe');
expect(vibeTool).toBeDefined();
expect(vibeTool?.name).toBe('Mistral Vibe');
expect(vibeTool?.skillsDir).toBe('.vibe');
});
it('should detect SourceCraft Code Assistant when .codeassistant directory exists', async () => {
await fs.mkdir(path.join(testDir, '.codeassistant'), { recursive: true });
const tools = getAvailableTools(testDir);
const toolValues = tools.map((t) => t.value);
expect(toolValues).toContain('codeassistant');
const vibeTool = tools.find((t) => t.value === 'codeassistant');
expect(vibeTool).toBeDefined();
expect(vibeTool?.name).toBe('SourceCraft Code Assistant');
expect(vibeTool?.skillsDir).toBe('.codeassistant');
});
});
});