-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathcustom-tools.test.ts
More file actions
281 lines (259 loc) · 6.64 KB
/
Copy pathcustom-tools.test.ts
File metadata and controls
281 lines (259 loc) · 6.64 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
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
import fs from 'node:fs';
import path from 'node:path';
import { fileURLToPath } from 'node:url';
import { beforeEach, expect, rs, test } from '@rstest/core';
import { create } from '../src';
const __dirname = path.dirname(fileURLToPath(import.meta.url));
const fixturesDir = path.join(__dirname, 'fixtures', 'basic');
const testDir = path.join(fixturesDir, 'test-temp-output');
const mocks = rs.hoisted(() => {
const state = {
xCalls: [] as Array<{
command: string;
args: string[];
options: unknown;
}>,
};
return {
state,
x: rs.fn(async (command: string, args: string[], options: unknown) => {
state.xCalls.push({ command, args, options });
return {
stdout: '',
stderr: '',
exitCode: 0,
};
}) as any,
xSync: rs.fn(() => ({ stdout: '', stderr: '', exitCode: 0 })) as any,
};
});
rs.mock('tinyexec', () => ({
x: mocks.x,
xSync: mocks.xSync,
}));
beforeEach(() => {
mocks.state.xCalls.length = 0;
rs.mocked(mocks.x).mockReset();
rs.mocked(mocks.x).mockImplementation(
async (command: string, args: string[], options: unknown) => {
mocks.state.xCalls.push({ command, args, options });
return {
stdout: '',
stderr: '',
exitCode: 0,
};
},
);
if (fs.existsSync(testDir)) {
fs.rmSync(testDir, { recursive: true });
}
fs.mkdirSync(testDir, { recursive: true });
return () => {
if (fs.existsSync(testDir)) {
fs.rmSync(testDir, { recursive: true });
}
};
});
test('should run extra tool action', async () => {
const projectDir = path.join(testDir, 'extra-tool-action');
let actionCalled = false;
await create({
name: 'test',
root: fixturesDir,
templates: ['vanilla'],
getTemplateName: async () => 'vanilla',
extraTools: [
{
value: 'custom-action',
label: 'Custom Action',
action: ({ templateName, distFolder }) => {
expect(templateName).toBe('vanilla');
expect(distFolder).toBe(projectDir);
actionCalled = true;
},
},
],
argv: [
'node',
'test',
'--dir',
projectDir,
'--template',
'vanilla',
'--tools',
'custom-action',
],
});
expect(actionCalled).toBe(true);
});
test('should run extra tool command', async () => {
const projectDir = path.join(testDir, 'extra-tool-command');
const testFile = path.join(__dirname, 'node_modules', 'test.txt');
await create({
name: 'test',
root: fixturesDir,
templates: ['vanilla'],
getTemplateName: async () => 'vanilla',
extraTools: [
{
value: 'custom-command',
label: 'Custom Command',
command: `npx rimraf ${testFile}`,
},
],
argv: [
'node',
'test',
'--dir',
projectDir,
'--template',
'vanilla',
'--tools',
'custom-command',
],
});
expect(mocks.state.xCalls).toEqual([
{
command: `npx rimraf ${testFile}`,
args: [],
options: expect.objectContaining({
nodeOptions: expect.objectContaining({
cwd: projectDir,
shell: true,
stdio: 'inherit',
}),
}),
},
]);
});
test('should preserve quoted extra tool command arguments', async () => {
const projectDir = path.join(testDir, 'extra-tool-quoted-command');
await create({
name: 'test',
root: fixturesDir,
templates: ['vanilla'],
getTemplateName: async () => 'vanilla',
extraTools: [
{
value: 'quoted-command',
label: 'Quoted Command',
command: 'npx some-tool --name "my app" --flag',
},
],
argv: [
'node',
'test',
'--dir',
projectDir,
'--template',
'vanilla',
'--tools',
'quoted-command',
],
});
expect(mocks.state.xCalls).toContainEqual({
command: 'npx some-tool --name "my app" --flag',
args: [],
options: expect.objectContaining({
nodeOptions: expect.objectContaining({
cwd: projectDir,
shell: true,
stdio: 'inherit',
}),
}),
});
});
test('should fail when extra tool command exits non-zero', async () => {
const projectDir = path.join(testDir, 'extra-tool-command-failure');
rs.mocked(mocks.x).mockImplementation(
async (command: string, args: string[], options: unknown) => {
mocks.state.xCalls.push({ command, args, options });
return {
stdout: '',
stderr: 'tool failed',
exitCode: 1,
};
},
);
await expect(
create({
name: 'test',
root: fixturesDir,
templates: ['vanilla'],
getTemplateName: async () => 'vanilla',
extraTools: [
{
value: 'failing-command',
label: 'Failing Command',
command: 'npx broken-tool',
},
],
argv: [
'node',
'test',
'--dir',
projectDir,
'--template',
'vanilla',
'--tools',
'failing-command',
],
}),
).rejects.toThrow('Failed to run command: npx broken-tool');
});
test('should filter extra tools based on template name', async () => {
const projectDir = path.join(testDir, 'extra-tool-filter');
let filteredToolCalled = false;
let allowedToolCalled = false;
let noFilterToolCalled = false;
await create({
name: 'test',
root: fixturesDir,
templates: ['vanilla'],
getTemplateName: async () => 'vanilla',
extraTools: [
{
value: 'filtered-tool',
label: 'Filtered Tool',
// This tool should be filtered out for 'vanilla' template
when: ({ templateName }) => templateName !== 'vanilla',
action: () => {
filteredToolCalled = true;
},
},
{
value: 'allowed-tool',
label: 'Allowed Tool',
// This tool should be allowed for 'vanilla' template
when: ({ templateName }) => templateName === 'vanilla',
action: () => {
allowedToolCalled = true;
},
},
{
value: 'no-filter-tool',
label: 'No Filter Tool',
// No `when` property - should always be available
action: () => {
noFilterToolCalled = true;
},
},
],
argv: [
'node',
'test',
'--dir',
projectDir,
'--template',
'vanilla',
'--tools',
'filtered-tool,allowed-tool,no-filter-tool',
],
});
// filtered-tool should not run because `when` returns false
expect(filteredToolCalled).toBe(false);
// allowed-tool should run because `when` returns true
expect(allowedToolCalled).toBe(true);
// no-filter-tool should run because it has no `when`
expect(noFilterToolCalled).toBe(true);
});