-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathbinding.unit.test.ts
More file actions
295 lines (261 loc) · 9.62 KB
/
binding.unit.test.ts
File metadata and controls
295 lines (261 loc) · 9.62 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
import { vol } from 'memfs';
import type { PluginAnswer } from '@code-pushup/models';
import { MEMFS_VOLUME, createMockTree } from '@code-pushup/test-utils';
import { readJsonFile } from '@code-pushup/utils';
import { coverageSetupBinding as binding } from './binding.js';
vi.mock('@code-pushup/utils', async () => {
const actual = await vi.importActual('@code-pushup/utils');
return {
...actual,
readJsonFile: vi.fn().mockRejectedValue(new Error('ENOENT')),
};
});
const defaultAnswers: Record<string, PluginAnswer> = {
'coverage.framework': 'vitest',
'coverage.configFile': '',
'coverage.reportPath': 'coverage/lcov.info',
'coverage.testCommand': 'npx vitest run --coverage.enabled',
'coverage.types': ['function', 'branch', 'line'],
'coverage.continueOnFail': true,
'coverage.categories': true,
};
describe('coverageSetupBinding', () => {
beforeEach(() => {
vol.fromJSON({ '.gitkeep': '' }, MEMFS_VOLUME);
});
describe('isRecommended', () => {
it.each([
'vitest.config.ts',
'vite.config.mjs',
'vitest.workspace.cts',
'jest.config.js',
])('should detect %s', async file => {
vol.fromJSON({ [file]: '' }, MEMFS_VOLUME);
await expect(binding.isRecommended(MEMFS_VOLUME)).resolves.toBeTrue();
});
it.each(['dependencies', 'devDependencies'])(
'should detect vitest in %s',
async field => {
vi.mocked(readJsonFile).mockResolvedValue({
[field]: { vitest: '^2.0.0' },
});
await expect(binding.isRecommended(MEMFS_VOLUME)).resolves.toBeTrue();
},
);
it.each(['dependencies', 'devDependencies'])(
'should detect jest in %s',
async field => {
vi.mocked(readJsonFile).mockResolvedValue({
[field]: { jest: '^29.0.0' },
});
await expect(binding.isRecommended(MEMFS_VOLUME)).resolves.toBeTrue();
},
);
it('should not recommend when no test framework found', async () => {
vi.mocked(readJsonFile).mockResolvedValue({});
await expect(binding.isRecommended(MEMFS_VOLUME)).resolves.toBeFalse();
});
});
describe('prompts', () => {
it('should detect vitest defaults', async () => {
vol.fromJSON({ 'vitest.config.ts': '' }, MEMFS_VOLUME);
await expect(
binding.prompts(MEMFS_VOLUME),
).resolves.toIncludeAllPartialMembers([
{ key: 'coverage.framework', default: 'vitest' },
{ key: 'coverage.configFile', default: 'vitest.config.ts' },
{ key: 'coverage.reportPath', default: 'coverage/lcov.info' },
]);
});
it('should detect jest defaults', async () => {
vol.fromJSON({ 'jest.config.js': '' }, MEMFS_VOLUME);
await expect(
binding.prompts(MEMFS_VOLUME),
).resolves.toIncludeAllPartialMembers([
{ key: 'coverage.framework', default: 'jest' },
{ key: 'coverage.configFile', default: 'jest.config.js' },
]);
});
it('should default to other when no framework detected', async () => {
vi.mocked(readJsonFile).mockResolvedValue({});
await expect(
binding.prompts(MEMFS_VOLUME),
).resolves.toIncludeAllPartialMembers([
{ key: 'coverage.framework', default: 'other' },
{ key: 'coverage.reportPath', default: '' },
{ key: 'coverage.testCommand', default: '' },
]);
});
});
describe('generateConfig', () => {
it('should generate vitest config', async () => {
const { pluginInit } = await binding.generateConfig(defaultAnswers);
expect(pluginInit).toEqual([
'// NOTE: Ensure your test config includes "lcov" in coverage reporters.',
'await coveragePlugin({',
" reports: ['coverage/lcov.info'],",
" coverageToolCommand: { command: 'npx vitest run --coverage.enabled' },",
'}),',
]);
});
it('should generate jest config', async () => {
const { pluginInit } = await binding.generateConfig({
...defaultAnswers,
'coverage.framework': 'jest',
'coverage.testCommand': 'npx jest --coverage',
});
expect(pluginInit).toEqual([
'// NOTE: Ensure your test config includes "lcov" in coverage reporters.',
'await coveragePlugin({',
" reports: ['coverage/lcov.info'],",
" coverageToolCommand: { command: 'npx jest --coverage' },",
'}),',
]);
});
it('should omit coverageToolCommand when test command is empty', async () => {
const { pluginInit } = await binding.generateConfig({
...defaultAnswers,
'coverage.testCommand': '',
});
expect(pluginInit).not.toEqual(
expect.arrayContaining([
expect.stringContaining('coverageToolCommand'),
]),
);
});
it('should use default report path when empty', async () => {
const { pluginInit } = await binding.generateConfig({
...defaultAnswers,
'coverage.reportPath': '',
});
expect(pluginInit).toEqual(
expect.arrayContaining([
expect.stringContaining("'coverage/lcov.info'"),
]),
);
});
it('should use custom report path when provided', async () => {
const { pluginInit } = await binding.generateConfig({
...defaultAnswers,
'coverage.reportPath': 'dist/coverage/lcov.info',
});
expect(pluginInit).toEqual(
expect.arrayContaining([
expect.stringContaining("'dist/coverage/lcov.info'"),
]),
);
});
it('should omit coverageTypes when all selected', async () => {
const { pluginInit } = await binding.generateConfig(defaultAnswers);
expect(pluginInit).not.toEqual(
expect.arrayContaining([expect.stringContaining('coverageTypes')]),
);
});
it('should include coverageTypes when subset selected', async () => {
const { pluginInit } = await binding.generateConfig({
...defaultAnswers,
'coverage.types': ['branch', 'line'],
});
expect(pluginInit).toEqual(
expect.arrayContaining([
expect.stringContaining("coverageTypes: ['branch', 'line']"),
]),
);
});
it('should disable continueOnCommandFail when declined', async () => {
const { pluginInit } = await binding.generateConfig({
...defaultAnswers,
'coverage.continueOnFail': false,
});
expect(pluginInit).toEqual(
expect.arrayContaining([
expect.stringContaining('continueOnCommandFail: false'),
]),
);
});
it('should omit continueOnCommandFail when default', async () => {
const { pluginInit } = await binding.generateConfig(defaultAnswers);
expect(pluginInit).not.toEqual(
expect.arrayContaining([
expect.stringContaining('continueOnCommandFail'),
]),
);
});
it('should omit categories when declined', async () => {
const { categories } = await binding.generateConfig({
...defaultAnswers,
'coverage.categories': false,
});
expect(categories).toBeUndefined();
});
it('should import from @code-pushup/coverage-plugin', async () => {
const { imports } = await binding.generateConfig(defaultAnswers);
expect(imports).toEqual([
{
moduleSpecifier: '@code-pushup/coverage-plugin',
defaultImport: 'coveragePlugin',
},
]);
});
});
describe('lcov reporter configuration', () => {
const vitestAnswers = {
...defaultAnswers,
'coverage.framework': 'vitest',
'coverage.configFile': 'vitest.config.ts',
} as const;
it('should not include comment when lcov is already present', async () => {
const tree = createMockTree({
'vitest.config.ts':
"export default { test: { coverage: { reporter: ['lcov'] } } };",
});
const { pluginInit } = await binding.generateConfig(vitestAnswers, tree);
expect(pluginInit).not.toEqual(
expect.arrayContaining([expect.stringContaining('NOTE')]),
);
});
it('should not include comment when lcov is successfully added', async () => {
const tree = createMockTree({
'vitest.config.ts':
"import { defineConfig } from 'vitest/config';\nexport default defineConfig({ test: { coverage: { reporter: ['text'] } } });",
});
const { pluginInit } = await binding.generateConfig(vitestAnswers, tree);
expect(pluginInit).not.toEqual(
expect.arrayContaining([expect.stringContaining('NOTE')]),
);
expect(tree.written.get('vitest.config.ts')).toContain('lcov');
});
it('should include comment when framework is other', async () => {
const { pluginInit } = await binding.generateConfig({
...defaultAnswers,
'coverage.framework': 'other',
});
expect(pluginInit).toEqual(
expect.arrayContaining([expect.stringContaining('NOTE')]),
);
});
it('should include comment when config file cannot be read', async () => {
const tree = createMockTree({});
const { pluginInit } = await binding.generateConfig(vitestAnswers, tree);
expect(pluginInit).toEqual(
expect.arrayContaining([expect.stringContaining('NOTE')]),
);
});
it('should include comment when magicast cannot modify the file', async () => {
const tree = createMockTree({
'jest.config.js': "module.exports = { coverageReporters: ['text'] };",
});
const { pluginInit } = await binding.generateConfig(
{
...defaultAnswers,
'coverage.framework': 'jest',
'coverage.configFile': 'jest.config.js',
},
tree,
);
expect(pluginInit).toEqual(
expect.arrayContaining([expect.stringContaining('NOTE')]),
);
});
});
});