-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
/
Copy pathprovider.ts
673 lines (564 loc) · 20.3 KB
/
provider.ts
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
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
import {
existsSync,
promises as fs,
readdirSync,
writeFileSync,
} from 'node:fs'
import type { Profiler } from 'node:inspector'
import { fileURLToPath, pathToFileURL } from 'node:url'
import v8ToIstanbul from 'v8-to-istanbul'
import { mergeProcessCovs } from '@bcoe/v8-coverage'
import libReport from 'istanbul-lib-report'
import reports from 'istanbul-reports'
import type { CoverageMap } from 'istanbul-lib-coverage'
import libCoverage from 'istanbul-lib-coverage'
import libSourceMaps from 'istanbul-lib-source-maps'
import MagicString from 'magic-string'
import { parseModule } from 'magicast'
import remapping from '@ampproject/remapping'
import { normalize, resolve } from 'pathe'
import c from 'tinyrainbow'
import { provider } from 'std-env'
import createDebug from 'debug'
import { cleanUrl } from 'vite-node/utils'
import type { EncodedSourceMap, FetchResult } from 'vite-node'
import { coverageConfigDefaults } from 'vitest/config'
import { BaseCoverageProvider } from 'vitest/coverage'
import type { Vitest, WorkspaceProject } from 'vitest/node'
import type {
AfterSuiteRunMeta,
CoverageProvider,
CoverageV8Options,
ReportContext,
ResolvedCoverageOptions,
} from 'vitest'
// @ts-expect-error missing types
import _TestExclude from 'test-exclude'
import { version } from '../package.json' with { type: 'json' }
interface TestExclude {
new (opts: {
cwd?: string | string[]
include?: string | string[]
exclude?: string | string[]
extension?: string | string[]
excludeNodeModules?: boolean
relativePath?: boolean
}): {
shouldInstrument: (filePath: string) => boolean
glob: (cwd: string) => Promise<string[]>
}
}
type Options = ResolvedCoverageOptions<'v8'>
type TransformResults = Map<string, FetchResult>
type Filename = string
type RawCoverage = Profiler.TakePreciseCoverageReturnType
type CoverageFilesByTransformMode = Record<
AfterSuiteRunMeta['transformMode'],
Filename[]
>
type ProjectName =
| NonNullable<AfterSuiteRunMeta['projectName']>
| typeof DEFAULT_PROJECT
type Entries<T> = [keyof T, T[keyof T]][]
// TODO: vite-node should export this
const WRAPPER_LENGTH = 185
// Note that this needs to match the line ending as well
const VITE_EXPORTS_LINE_PATTERN
= /Object\.defineProperty\(__vite_ssr_exports__.*\n/g
const DECORATOR_METADATA_PATTERN
= /_ts_metadata\("design:paramtypes", \[[^\]]*\]\),*/g
const DEFAULT_PROJECT: unique symbol = Symbol.for('default-project')
const FILE_PROTOCOL = 'file://'
const debug = createDebug('vitest:coverage')
let uniqueId = 0
export class V8CoverageProvider extends BaseCoverageProvider implements CoverageProvider {
name = 'v8'
ctx!: Vitest
options!: Options
testExclude!: InstanceType<TestExclude>
coverageFiles: Map<ProjectName, CoverageFilesByTransformMode> = new Map()
coverageFilesDirectory!: string
pendingPromises: Promise<void>[] = []
initialize(ctx: Vitest): void {
const config: CoverageV8Options = ctx.config.coverage
if (ctx.version !== version) {
ctx.logger.warn(
c.yellow(
`Loaded ${c.inverse(c.yellow(` vitest@${ctx.version} `))} and ${c.inverse(c.yellow(` @vitest/coverage-v8@${version} `))}.`
+ '\nRunning mixed versions is not supported and may lead into bugs'
+ '\nUpdate your dependencies and make sure the versions match.',
),
)
}
this.ctx = ctx
this.options = {
...coverageConfigDefaults,
// User's options
...config,
// Resolved fields
provider: 'v8',
reporter: this.resolveReporters(
config.reporter || coverageConfigDefaults.reporter,
),
reportsDirectory: resolve(
ctx.config.root,
config.reportsDirectory || coverageConfigDefaults.reportsDirectory,
),
thresholds: config.thresholds && {
...config.thresholds,
lines: config.thresholds['100'] ? 100 : config.thresholds.lines,
branches: config.thresholds['100'] ? 100 : config.thresholds.branches,
functions: config.thresholds['100'] ? 100 : config.thresholds.functions,
statements: config.thresholds['100'] ? 100 : config.thresholds.statements,
},
}
this.testExclude = new _TestExclude({
cwd: ctx.config.root,
include: this.options.include,
exclude: this.options.exclude,
excludeNodeModules: true,
extension: this.options.extension,
relativePath: !this.options.allowExternal,
})
const shard = this.ctx.config.shard
const tempDirectory = `.tmp${
shard ? `-${shard.index}-${shard.count}` : ''
}`
this.coverageFilesDirectory = resolve(
this.options.reportsDirectory,
tempDirectory,
)
}
resolveOptions(): Options {
return this.options
}
async clean(clean = true): Promise<void> {
if (clean && existsSync(this.options.reportsDirectory)) {
await fs.rm(this.options.reportsDirectory, {
recursive: true,
force: true,
maxRetries: 10,
})
}
if (existsSync(this.coverageFilesDirectory)) {
await fs.rm(this.coverageFilesDirectory, {
recursive: true,
force: true,
maxRetries: 10,
})
}
await fs.mkdir(this.coverageFilesDirectory, { recursive: true })
this.coverageFiles = new Map()
this.pendingPromises = []
}
/*
* Coverage and meta information passed from Vitest runners.
* Note that adding new entries here and requiring on those without
* backwards compatibility is a breaking change.
*/
onAfterSuiteRun({ coverage, transformMode, projectName }: AfterSuiteRunMeta): void {
if (transformMode !== 'web' && transformMode !== 'ssr' && transformMode !== 'browser') {
throw new Error(`Invalid transform mode: ${transformMode}`)
}
let entry = this.coverageFiles.get(projectName || DEFAULT_PROJECT)
if (!entry) {
entry = { web: [], ssr: [], browser: [] }
this.coverageFiles.set(projectName || DEFAULT_PROJECT, entry)
}
const filename = resolve(
this.coverageFilesDirectory,
`coverage-${uniqueId++}.json`,
)
entry[transformMode].push(filename)
const promise = fs.writeFile(filename, JSON.stringify(coverage), 'utf-8')
this.pendingPromises.push(promise)
}
async generateCoverage({ allTestsRun }: ReportContext): Promise<CoverageMap> {
const coverageMap = libCoverage.createCoverageMap({})
let index = 0
const total = this.pendingPromises.length
await Promise.all(this.pendingPromises)
this.pendingPromises = []
for (const [projectName, coveragePerProject] of this.coverageFiles.entries()) {
for (const [transformMode, filenames] of Object.entries(coveragePerProject) as Entries<CoverageFilesByTransformMode>) {
let merged: RawCoverage = { result: [] }
const project = this.ctx.projects.find(p => p.getName() === projectName) || this.ctx.getCoreWorkspaceProject()
for (const chunk of this.toSlices(filenames, this.options.processingConcurrency)) {
if (debug.enabled) {
index += chunk.length
debug('Covered files %d/%d', index, total)
}
await Promise.all(chunk.map(async (filename) => {
const contents = await fs.readFile(filename, 'utf-8')
const coverage = JSON.parse(contents) as RawCoverage
merged = mergeProcessCovs([merged, coverage])
}),
)
}
const converted = await this.convertCoverage(
merged,
project,
transformMode,
)
// Source maps can change based on projectName and transform mode.
// Coverage transform re-uses source maps so we need to separate transforms from each other.
const transformedCoverage = await transformCoverage(converted)
coverageMap.merge(transformedCoverage)
}
}
if (this.options.all && allTestsRun) {
const coveredFiles = coverageMap.files()
const untestedCoverage = await this.getUntestedFiles(coveredFiles)
const converted = await this.convertCoverage(untestedCoverage)
coverageMap.merge(await transformCoverage(converted))
}
if (this.options.excludeAfterRemap) {
coverageMap.filter(filename => this.testExclude.shouldInstrument(filename))
}
return coverageMap
}
async reportCoverage(coverageMap: unknown, { allTestsRun }: ReportContext): Promise<void> {
if (provider === 'stackblitz') {
this.ctx.logger.log(
c.blue(' % ')
+ c.yellow(
'@vitest/coverage-v8 does not work on Stackblitz. Report will be empty.',
),
)
}
await this.generateReports(
(coverageMap as CoverageMap) || libCoverage.createCoverageMap({}),
allTestsRun,
)
// In watch mode we need to preserve the previous results if cleanOnRerun is disabled
const keepResults = !this.options.cleanOnRerun && this.ctx.config.watch
if (!keepResults) {
this.coverageFiles = new Map()
await fs.rm(this.coverageFilesDirectory, { recursive: true })
// Remove empty reports directory, e.g. when only text-reporter is used
if (readdirSync(this.options.reportsDirectory).length === 0) {
await fs.rm(this.options.reportsDirectory, { recursive: true })
}
}
}
async generateReports(coverageMap: CoverageMap, allTestsRun?: boolean): Promise<void> {
const context = libReport.createContext({
dir: this.options.reportsDirectory,
coverageMap,
watermarks: this.options.watermarks,
})
if (this.hasTerminalReporter(this.options.reporter)) {
this.ctx.logger.log(
c.blue(' % ') + c.dim('Coverage report from ') + c.yellow(this.name),
)
}
for (const reporter of this.options.reporter) {
// Type assertion required for custom reporters
reports
.create(reporter[0] as Parameters<typeof reports.create>[0], {
skipFull: this.options.skipFull,
projectRoot: this.ctx.config.root,
...reporter[1],
})
.execute(context)
}
if (this.options.thresholds) {
const resolvedThresholds = this.resolveThresholds({
coverageMap,
thresholds: this.options.thresholds,
createCoverageMap: () => libCoverage.createCoverageMap({}),
root: this.ctx.config.root,
})
this.checkThresholds({
thresholds: resolvedThresholds,
perFile: this.options.thresholds.perFile,
onError: error => this.ctx.logger.error(error),
})
if (this.options.thresholds.autoUpdate && allTestsRun) {
if (!this.ctx.server.config.configFile) {
throw new Error(
'Missing configurationFile. The "coverage.thresholds.autoUpdate" can only be enabled when configuration file is used.',
)
}
const configFilePath = this.ctx.server.config.configFile
const configModule = parseModule(
await fs.readFile(configFilePath, 'utf8'),
)
this.updateThresholds({
thresholds: resolvedThresholds,
perFile: this.options.thresholds.perFile,
configurationFile: configModule,
onUpdate: () =>
writeFileSync(
configFilePath,
configModule.generate().code,
'utf-8',
),
})
}
}
}
async mergeReports(coverageMaps: unknown[]): Promise<void> {
const coverageMap = libCoverage.createCoverageMap({})
for (const coverage of coverageMaps) {
coverageMap.merge(coverage as CoverageMap)
}
await this.generateReports(coverageMap, true)
}
private async getUntestedFiles(testedFiles: string[]): Promise<RawCoverage> {
const transformResults = normalizeTransformResults(
this.ctx.vitenode.fetchCache,
)
const transform = this.createUncoveredFileTransformer(this.ctx)
const allFiles = await this.testExclude.glob(this.ctx.config.root)
let includedFiles = allFiles.map(file =>
resolve(this.ctx.config.root, file),
)
if (this.ctx.config.changed) {
includedFiles = (this.ctx.config.related || []).filter(file =>
includedFiles.includes(file),
)
}
const uncoveredFiles = includedFiles
.map(file => pathToFileURL(file))
.filter(file => !testedFiles.includes(file.pathname))
let merged: RawCoverage = { result: [] }
let index = 0
for (const chunk of this.toSlices(
uncoveredFiles,
this.options.processingConcurrency,
)) {
if (debug.enabled) {
index += chunk.length
debug('Uncovered files %d/%d', index, uncoveredFiles.length)
}
const coverages = await Promise.all(
chunk.map(async (filename) => {
const { originalSource } = await this.getSources(
filename.href,
transformResults,
transform,
)
const coverage = {
url: filename.href,
scriptId: '0',
// Create a made up function to mark whole file as uncovered. Note that this does not exist in source maps.
functions: [
{
ranges: [
{
startOffset: 0,
endOffset: originalSource.length,
count: 0,
},
],
isBlockCoverage: true,
// This is magical value that indicates an empty report: https://github.com/istanbuljs/v8-to-istanbul/blob/fca5e6a9e6ef38a9cdc3a178d5a6cf9ef82e6cab/lib/v8-to-istanbul.js#LL131C40-L131C40
functionName: '(empty-report)',
},
],
}
return { result: [coverage] }
}),
)
merged = mergeProcessCovs([
merged,
...coverages.filter(
(cov): cov is NonNullable<typeof cov> => cov != null,
),
])
}
return merged
}
private async getSources<TransformResult extends (FetchResult | Awaited<ReturnType<typeof this.ctx.vitenode.transformRequest>>)>(
url: string,
transformResults: TransformResults,
onTransform: (filepath: string) => Promise<TransformResult>,
functions: Profiler.FunctionCoverage[] = [],
): Promise<{
source: string
originalSource: string
sourceMap?: { sourcemap: EncodedSourceMap }
isExecuted: boolean
}> {
const filePath = normalize(fileURLToPath(url))
let isExecuted = true
let transformResult: FetchResult | TransformResult | undefined = transformResults.get(filePath)
if (!transformResult) {
isExecuted = false
transformResult = await onTransform(removeStartsWith(url, FILE_PROTOCOL)).catch(() => undefined)
}
const map = transformResult?.map as EncodedSourceMap | undefined
const code = transformResult?.code
const sourcesContent = map?.sourcesContent || []
if (!sourcesContent[0]) {
sourcesContent[0] = await fs.readFile(filePath, 'utf-8').catch(() => {
// If file does not exist construct a dummy source for it.
// These can be files that were generated dynamically during the test run and were removed after it.
const length = findLongestFunctionLength(functions)
return '.'.repeat(length)
})
}
// These can be uncovered files included by "all: true" or files that are loaded outside vite-node
if (!map) {
return {
isExecuted,
source: code || sourcesContent[0],
originalSource: sourcesContent[0],
}
}
const sources = (map.sources || [])
.filter(source => source != null)
.map(source => new URL(source, url).href)
if (sources.length === 0) {
sources.push(url)
}
return {
isExecuted,
originalSource: sourcesContent[0],
source: code || sourcesContent[0],
sourceMap: {
sourcemap: excludeGeneratedCode(code, {
...map,
version: 3,
sources,
sourcesContent,
}),
},
}
}
private async convertCoverage(
coverage: RawCoverage,
project: WorkspaceProject = this.ctx.getCoreWorkspaceProject(),
transformMode?: keyof CoverageFilesByTransformMode,
): Promise<CoverageMap> {
let fetchCache = project.vitenode.fetchCache
if (transformMode) {
fetchCache = transformMode === 'browser' ? new Map() : project.vitenode.fetchCaches[transformMode]
}
const transformResults = normalizeTransformResults(fetchCache)
async function onTransform(filepath: string) {
if (transformMode === 'browser' && project.browser) {
const result = await project.browser.vite.transformRequest(removeStartsWith(filepath, project.config.root))
if (result) {
return { ...result, code: `${result.code}// <inline-source-map>` }
}
}
return project.vitenode.transformRequest(filepath)
}
const scriptCoverages = []
for (const result of coverage.result) {
if (transformMode === 'browser') {
if (result.url.startsWith('/@fs')) {
result.url = `${FILE_PROTOCOL}${removeStartsWith(result.url, '/@fs')}`
}
else {
result.url = `${FILE_PROTOCOL}${project.config.root}${result.url}`
}
}
if (this.testExclude.shouldInstrument(fileURLToPath(result.url))) {
scriptCoverages.push(result)
}
}
const coverageMap = libCoverage.createCoverageMap({})
let index = 0
for (const chunk of this.toSlices(scriptCoverages, this.options.processingConcurrency)) {
if (debug.enabled) {
index += chunk.length
debug('Converting %d/%d', index, scriptCoverages.length)
}
await Promise.all(
chunk.map(async ({ url, functions }) => {
const sources = await this.getSources(
url,
transformResults,
onTransform,
functions,
)
// If file was executed by vite-node we'll need to add its wrapper
const wrapperLength = sources.isExecuted ? WRAPPER_LENGTH : 0
const converter = v8ToIstanbul(
url,
wrapperLength,
sources,
undefined,
this.options.ignoreEmptyLines,
)
await converter.load()
try {
converter.applyCoverage(functions)
}
catch (error) {
this.ctx.logger.error(`Failed to convert coverage for ${url}.\n`, error)
}
coverageMap.merge(converter.toIstanbul())
}),
)
}
return coverageMap
}
}
async function transformCoverage(coverageMap: CoverageMap) {
const sourceMapStore = libSourceMaps.createSourceMapStore()
return await sourceMapStore.transformCoverage(coverageMap)
}
/**
* Remove generated code from the source maps:
* - Vite's export helpers: e.g. `Object.defineProperty(__vite_ssr_exports__, "sum", { enumerable: true, configurable: true, get(){ return sum }});`
* - SWC's decorator metadata: e.g. `_ts_metadata("design:paramtypes", [\ntypeof Request === "undefined" ? Object : Request\n]),`
*/
function excludeGeneratedCode(
source: string | undefined,
map: EncodedSourceMap,
) {
if (!source) {
return map
}
if (
!source.match(VITE_EXPORTS_LINE_PATTERN)
&& !source.match(DECORATOR_METADATA_PATTERN)
) {
return map
}
const trimmed = new MagicString(source)
trimmed.replaceAll(VITE_EXPORTS_LINE_PATTERN, '\n')
trimmed.replaceAll(DECORATOR_METADATA_PATTERN, match =>
'\n'.repeat(match.split('\n').length - 1))
const trimmedMap = trimmed.generateMap({ hires: 'boundary' })
// A merged source map where the first one excludes generated parts
const combinedMap = remapping(
[{ ...trimmedMap, version: 3 }, map],
() => null,
)
return combinedMap as EncodedSourceMap
}
/**
* Find the function with highest `endOffset` to determine the length of the file
*/
function findLongestFunctionLength(functions: Profiler.FunctionCoverage[]) {
return functions.reduce((previous, current) => {
const maxEndOffset = current.ranges.reduce(
(endOffset, range) => Math.max(endOffset, range.endOffset),
0,
)
return Math.max(previous, maxEndOffset)
}, 0)
}
function normalizeTransformResults(
fetchCache: Map<string, { result: FetchResult }>,
) {
const normalized: TransformResults = new Map()
for (const [key, value] of fetchCache.entries()) {
const cleanEntry = cleanUrl(key)
if (!normalized.has(cleanEntry)) {
normalized.set(cleanEntry, value.result)
}
}
return normalized
}
function removeStartsWith(filepath: string, start: string) {
if (filepath.startsWith(start)) {
return filepath.slice(start.length)
}
return filepath
}