-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathwizard.unit.test.ts
More file actions
296 lines (257 loc) · 8.35 KB
/
wizard.unit.test.ts
File metadata and controls
296 lines (257 loc) · 8.35 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
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
import { vol } from 'memfs';
import { readFile } from 'node:fs/promises';
import { MEMFS_VOLUME } from '@code-pushup/test-utils';
import { logger } from '@code-pushup/utils';
import { addCodePushUpCommand, listProjects } from './monorepo.js';
import type { PluginSetupBinding } from './types.js';
import { runSetupWizard } from './wizard.js';
vi.mock('@inquirer/prompts', () => ({
checkbox: vi.fn(),
input: vi.fn(),
select: vi.fn(),
}));
vi.mock('./monorepo.js', async importOriginal => ({
...(await importOriginal<typeof import('./monorepo.js')>()),
listProjects: vi.fn().mockResolvedValue([]),
addCodePushUpCommand: vi.fn().mockResolvedValue(undefined),
}));
const TEST_BINDING: PluginSetupBinding = {
slug: 'test-plugin',
title: 'Test Plugin',
packageName: '@code-pushup/test-plugin',
isRecommended: () => Promise.resolve(true),
generateConfig: () => ({
imports: [
{
moduleSpecifier: '@code-pushup/test-plugin',
defaultImport: 'testPlugin',
},
],
pluginInit: ['testPlugin(),'],
}),
};
describe('runSetupWizard', () => {
describe('TypeScript config', () => {
beforeEach(() => {
vol.fromJSON({ 'tsconfig.json': '{}' }, MEMFS_VOLUME);
});
it('should generate ts config and log success', async () => {
await runSetupWizard([TEST_BINDING], {
yes: true,
'target-dir': MEMFS_VOLUME,
});
await expect(readFile(`${MEMFS_VOLUME}/code-pushup.config.ts`, 'utf8'))
.resolves.toMatchInlineSnapshot(`
"import type { CoreConfig } from '@code-pushup/models';
import testPlugin from '@code-pushup/test-plugin';
export default {
plugins: [
testPlugin(),
],
} satisfies CoreConfig;
"
`);
expect(logger.info).toHaveBeenCalledWith('CREATE code-pushup.config.ts');
expect(logger.info).toHaveBeenCalledWith('Setup complete.');
expect(logger.info).toHaveBeenCalledWith(
expect.stringContaining('npx code-pushup'),
);
});
it('should log dry-run message without writing files', async () => {
await runSetupWizard([TEST_BINDING], {
yes: true,
'dry-run': true,
'target-dir': MEMFS_VOLUME,
});
expect(vol.toJSON(MEMFS_VOLUME)).toStrictEqual({
[`${MEMFS_VOLUME}/tsconfig.json`]: '{}',
});
expect(logger.info).toHaveBeenCalledWith('CREATE code-pushup.config.ts');
expect(logger.info).toHaveBeenCalledWith('Dry run — no files written.');
});
it('should generate config with TODO placeholder when no bindings provided', async () => {
await runSetupWizard([], {
yes: true,
'target-dir': MEMFS_VOLUME,
});
await expect(readFile(`${MEMFS_VOLUME}/code-pushup.config.ts`, 'utf8'))
.resolves.toMatchInlineSnapshot(`
"import type { CoreConfig } from '@code-pushup/models';
export default {
plugins: [
// TODO: register some plugins
],
} satisfies CoreConfig;
"
`);
expect(logger.info).toHaveBeenCalledWith('CREATE code-pushup.config.ts');
expect(logger.info).toHaveBeenCalledWith('Setup complete.');
});
});
describe('JavaScript config', () => {
beforeEach(() => {
vol.fromJSON({ 'package.json': '{}' }, MEMFS_VOLUME);
});
it('should generate .mjs config when js format is auto-detected', async () => {
await runSetupWizard([TEST_BINDING], {
yes: true,
'target-dir': MEMFS_VOLUME,
});
await expect(readFile(`${MEMFS_VOLUME}/code-pushup.config.mjs`, 'utf8'))
.resolves.toMatchInlineSnapshot(`
"import testPlugin from '@code-pushup/test-plugin';
/** @type {import('@code-pushup/models').CoreConfig} */
export default {
plugins: [
testPlugin(),
],
};
"
`);
expect(logger.info).toHaveBeenCalledWith('CREATE code-pushup.config.mjs');
});
it('should generate .js config when package.json has "type": "module"', async () => {
vol.fromJSON(
{ 'package.json': JSON.stringify({ type: 'module' }) },
MEMFS_VOLUME,
);
await runSetupWizard([TEST_BINDING], {
yes: true,
'config-format': 'js',
'target-dir': MEMFS_VOLUME,
});
await expect(readFile(`${MEMFS_VOLUME}/code-pushup.config.js`, 'utf8'))
.resolves.toMatchInlineSnapshot(`
"import testPlugin from '@code-pushup/test-plugin';
/** @type {import('@code-pushup/models').CoreConfig} */
export default {
plugins: [
testPlugin(),
],
};
"
`);
expect(logger.info).toHaveBeenCalledWith('CREATE code-pushup.config.js');
});
});
describe('Monorepo config', () => {
const PROJECT_BINDING: PluginSetupBinding = {
slug: 'test-plugin',
title: 'Test Plugin',
packageName: '@code-pushup/test-plugin',
isRecommended: () => Promise.resolve(true),
generateConfig: () => ({
imports: [
{
moduleSpecifier: '@code-pushup/test-plugin',
defaultImport: 'testPlugin',
},
],
pluginInit: ['testPlugin(),'],
}),
};
const ROOT_BINDING: PluginSetupBinding = {
slug: 'root-plugin',
title: 'Root Plugin',
packageName: '@code-pushup/root-plugin',
scope: 'root',
isRecommended: () => Promise.resolve(true),
generateConfig: () => ({
imports: [
{
moduleSpecifier: '@code-pushup/root-plugin',
defaultImport: 'rootPlugin',
},
],
pluginInit: ['rootPlugin(),'],
}),
};
beforeEach(() => {
vol.fromJSON(
{
'tsconfig.json': '{}',
'pnpm-workspace.yaml': 'packages:\n - packages/*\n',
},
MEMFS_VOLUME,
);
vi.mocked(listProjects).mockResolvedValue([
{
name: 'app-a',
directory: `${MEMFS_VOLUME}/packages/app-a`,
relativeDir: 'packages/app-a',
},
{
name: 'app-b',
directory: `${MEMFS_VOLUME}/packages/app-b`,
relativeDir: 'packages/app-b',
},
]);
});
it('should generate preset and per-project configs', async () => {
await runSetupWizard([PROJECT_BINDING], {
yes: true,
mode: 'monorepo',
'target-dir': MEMFS_VOLUME,
});
await expect(readFile(`${MEMFS_VOLUME}/code-pushup.preset.ts`, 'utf8'))
.resolves.toMatchInlineSnapshot(`
"import type { CoreConfig } from '@code-pushup/models';
import testPlugin from '@code-pushup/test-plugin';
/**
* Creates a Code PushUp config for a project.
* @param project Project name
*/
export async function createConfig(project: string): Promise<CoreConfig> {
return {
plugins: [
testPlugin(),
],
};
}
"
`);
await expect(
readFile(
`${MEMFS_VOLUME}/packages/app-a/code-pushup.config.ts`,
'utf8',
),
).resolves.toMatchInlineSnapshot(`
"import { createConfig } from '../../code-pushup.preset.js';
export default await createConfig('app-a');
"
`);
await expect(
readFile(
`${MEMFS_VOLUME}/packages/app-b/code-pushup.config.ts`,
'utf8',
),
).resolves.toMatchInlineSnapshot(`
"import { createConfig } from '../../code-pushup.preset.js';
export default await createConfig('app-b');
"
`);
expect(addCodePushUpCommand).toHaveBeenCalledTimes(2);
});
it('should generate root config for root-scoped plugins', async () => {
await runSetupWizard([PROJECT_BINDING, ROOT_BINDING], {
yes: true,
mode: 'monorepo',
'target-dir': MEMFS_VOLUME,
});
await expect(readFile(`${MEMFS_VOLUME}/code-pushup.config.ts`, 'utf8'))
.resolves.toMatchInlineSnapshot(`
"import type { CoreConfig } from '@code-pushup/models';
import rootPlugin from '@code-pushup/root-plugin';
export default {
plugins: [
rootPlugin(),
],
} satisfies CoreConfig;
"
`);
await expect(
readFile(`${MEMFS_VOLUME}/code-pushup.preset.ts`, 'utf8'),
).resolves.toBeTruthy();
});
});
});