Skip to content

Commit d11a4ea

Browse files
committedMay 4, 2020
perf(compiler): don’t write compile output to file system but rely on jest cache (#1561)
1 parent 02722ee commit d11a4ea

10 files changed

+68
-249
lines changed
 

‎e2e/__tests__/__snapshots__/logger.test.ts.snap

+15-15
Original file line numberDiff line numberDiff line change
@@ -21,19 +21,19 @@ Array [
2121
"[level:20] processing <cwd>/Hello.spec.ts",
2222
"[level:20] file caching disabled",
2323
"[level:20] initializeLanguageServiceInstance(): create typescript compiler",
24-
"[level:20] compileUsingLanguageService(): creating language service",
25-
"[level:20] compileAndCacheResult(): no cache",
24+
"[level:20] initializeLanguageServiceInstance(): creating language service",
25+
"[level:20] compileAndCacheResult(): get compile output",
2626
"[level:20] compileFn(): compiling using language service",
2727
"[level:20] updateMemoryCache(): update memory cache for language service",
2828
"[level:20] visitSourceFileNode(): hoisting",
29-
"[level:20] compileFn(): computing diagnostics for <cwd>/Hello.spec.ts using language service",
29+
"[level:20] compileFn(): computing diagnostics using language service",
3030
"[level:20] computing cache key for <cwd>/Hello.ts",
3131
"[level:20] processing <cwd>/Hello.ts",
32-
"[level:20] compileAndCacheResult(): no cache",
32+
"[level:20] compileAndCacheResult(): get compile output",
3333
"[level:20] compileFn(): compiling using language service",
3434
"[level:20] updateMemoryCache(): update memory cache for language service",
3535
"[level:20] visitSourceFileNode(): hoisting",
36-
"[level:20] compileFn(): computing diagnostics for <cwd>/Hello.ts using language service",
36+
"[level:20] compileFn(): computing diagnostics using language service",
3737
]
3838
`;
3939
@@ -62,20 +62,20 @@ Array [
6262
"[level:20] checking version of babel-jest: OK",
6363
"[level:20] file caching disabled",
6464
"[level:20] initializeLanguageServiceInstance(): create typescript compiler",
65-
"[level:20] compileUsingLanguageService(): creating language service",
66-
"[level:20] compileAndCacheResult(): no cache",
65+
"[level:20] initializeLanguageServiceInstance(): creating language service",
66+
"[level:20] compileAndCacheResult(): get compile output",
6767
"[level:20] compileFn(): compiling using language service",
6868
"[level:20] updateMemoryCache(): update memory cache for language service",
6969
"[level:20] visitSourceFileNode(): hoisting",
70-
"[level:20] compileFn(): computing diagnostics for <cwd>/Hello.spec.ts using language service",
70+
"[level:20] compileFn(): computing diagnostics using language service",
7171
"[level:20] calling babel-jest processor",
7272
"[level:20] computing cache key for <cwd>/Hello.ts",
7373
"[level:20] processing <cwd>/Hello.ts",
74-
"[level:20] compileAndCacheResult(): no cache",
74+
"[level:20] compileAndCacheResult(): get compile output",
7575
"[level:20] compileFn(): compiling using language service",
7676
"[level:20] updateMemoryCache(): update memory cache for language service",
7777
"[level:20] visitSourceFileNode(): hoisting",
78-
"[level:20] compileFn(): computing diagnostics for <cwd>/Hello.ts using language service",
78+
"[level:20] compileFn(): computing diagnostics using language service",
7979
"[level:20] calling babel-jest processor",
8080
]
8181
`;
@@ -106,20 +106,20 @@ Array [
106106
"[level:20] checking version of babel-jest: OK",
107107
"[level:20] file caching disabled",
108108
"[level:20] initializeLanguageServiceInstance(): create typescript compiler",
109-
"[level:20] compileUsingLanguageService(): creating language service",
110-
"[level:20] compileAndCacheResult(): no cache",
109+
"[level:20] initializeLanguageServiceInstance(): creating language service",
110+
"[level:20] compileAndCacheResult(): get compile output",
111111
"[level:20] compileFn(): compiling using language service",
112112
"[level:20] updateMemoryCache(): update memory cache for language service",
113113
"[level:20] visitSourceFileNode(): hoisting",
114-
"[level:20] compileFn(): computing diagnostics for <cwd>/Hello.spec.ts using language service",
114+
"[level:20] compileFn(): computing diagnostics using language service",
115115
"[level:20] calling babel-jest processor",
116116
"[level:20] computing cache key for <cwd>/Hello.ts",
117117
"[level:20] processing <cwd>/Hello.ts",
118-
"[level:20] compileAndCacheResult(): no cache",
118+
"[level:20] compileAndCacheResult(): get compile output",
119119
"[level:20] compileFn(): compiling using language service",
120120
"[level:20] updateMemoryCache(): update memory cache for language service",
121121
"[level:20] visitSourceFileNode(): hoisting",
122-
"[level:20] compileFn(): computing diagnostics for <cwd>/Hello.ts using language service",
122+
"[level:20] compileFn(): computing diagnostics using language service",
123123
"[level:20] calling babel-jest processor",
124124
]
125125
`;

‎src/compiler/__snapshots__/language-service.spec.ts.snap

-16
Original file line numberDiff line numberDiff line change
@@ -90,19 +90,3 @@ exports[`Language service should throw error when cannot compile 1`] = `
9090
"Unable to require \`.d.ts\` file for file: test-cannot-compile.d.ts.
9191
This is usually the result of a faulty configuration or import. Make sure there is a \`.js\`, \`.json\` or another executable extension available alongside \`test-cannot-compile.d.ts\`."
9292
`;
93-
94-
exports[`Language service should use the cache 3`] = `
95-
===[ FILE: test-cache.ts ]======================================================
96-
console.log("hello");
97-
//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJmaWxlIjoidGVzdC1jYWNoZS50cyIsIm1hcHBpbmdzIjoiQUFBQSxPQUFPLENBQUMsR0FBRyxDQUFDLE9BQU8sQ0FBQyxDQUFBIiwibmFtZXMiOltdLCJzb3VyY2VzIjpbInRlc3QtY2FjaGUudHMiXSwic291cmNlc0NvbnRlbnQiOlsiY29uc29sZS5sb2coXCJoZWxsb1wiKSJdLCJ2ZXJzaW9uIjozfQ==
98-
===[ INLINE SOURCE MAPS ]=======================================================
99-
file: test-cache.ts
100-
mappings: 'AAAA,OAAO,CAAC,GAAG,CAAC,OAAO,CAAC,CAAA'
101-
names: []
102-
sources:
103-
- test-cache.ts
104-
sourcesContent:
105-
- console.log("hello")
106-
version: 3
107-
================================================================================
108-
`;

‎src/compiler/__snapshots__/transpiler.spec.ts.snap

-18
Original file line numberDiff line numberDiff line change
@@ -66,24 +66,6 @@ exports[`Transpiler should compile tsx file for other jsx options 1`] = `
6666
================================================================================
6767
`;
6868
69-
exports[`Transpiler should compile using transpileModule and not use cache 1`] = `
70-
===[ FILE: src/compiler/transpiler.spec.ts ]====================================
71-
"use strict";
72-
Object.defineProperty(exports, "__esModule", { value: true });
73-
exports.default = 42;
74-
//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJmaWxlIjoiPGN3ZD4vc3JjL2NvbXBpbGVyL3RyYW5zcGlsZXIuc3BlYy50cyIsIm1hcHBpbmdzIjoiOztBQUFBLGtCQUFlLEVBQUUsQ0FBQSIsIm5hbWVzIjpbXSwic291cmNlcyI6WyI8Y3dkPi9zcmMvY29tcGlsZXIvdHJhbnNwaWxlci5zcGVjLnRzIl0sInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCBkZWZhdWx0IDQyIl0sInZlcnNpb24iOjN9
75-
===[ INLINE SOURCE MAPS ]=======================================================
76-
file: <cwd>/src/compiler/transpiler.spec.ts
77-
mappings: ';;AAAA,kBAAe,EAAE,CAAA'
78-
names: []
79-
sources:
80-
- <cwd>/src/compiler/transpiler.spec.ts
81-
sourcesContent:
82-
- export default 42
83-
version: 3
84-
================================================================================
85-
`;
86-
8769
exports[`Transpiler should report diagnostics related to codes with pathRegex config is undefined 1`] = `"foo.ts(2,23): error TS1005: '=>' expected."`;
8870
8971
exports[`Transpiler should report diagnostics related to codes with pathRegex config matches file name 1`] = `"foo.ts(2,23): error TS1005: '=>' expected."`;

‎src/compiler/compiler-utils.ts

+8-4
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@ import { EXTENSION_REGEX, JSON_REGEX, TS_TSX_REGEX } from '../constants'
99
import { MemoryCache, SourceOutput, TSFiles } from '../types'
1010
import { sha1 } from '../util/sha1'
1111

12+
/**
13+
* @internal
14+
*/
15+
export const hasOwn = Object.prototype.hasOwnProperty
1216
/**
1317
* @internal
1418
*/
@@ -35,7 +39,7 @@ export function cacheResolvedModules(
3539
* Ugly trick while waiting for https://github.com/microsoft/TypeScript/issues/33994
3640
*/
3741
if (importReferences.length) {
38-
logger.debug({ fileName }, `cacheResolvedModules(): get resolved modules of test file ${fileName}`)
42+
logger.debug({ fileName }, `cacheResolvedModules(): get resolved modules`)
3943

4044
memoryCache.resolvedModules[fileName] = Object.create(null)
4145
memoryCache.resolvedModules[fileName].modulePaths = importReferences
@@ -113,7 +117,7 @@ export function getAndCacheProjectReference(
113117
files: TSFiles,
114118
projectReferences: ReadonlyArray<_ts.ProjectReference> | undefined,
115119
) {
116-
const file = files.get(filePath)
120+
const file = files[filePath]
117121
if (file !== undefined && file.projectReference) {
118122
return file.projectReference.project
119123
}
@@ -152,8 +156,8 @@ function getAndCacheOutputJSFileName(
152156
projectReference: _ts.ResolvedProjectReference,
153157
files: TSFiles,
154158
) {
155-
const file = files.get(inputFileName)
156-
if (file && file.projectReference && file.projectReference.outputFileName) {
159+
const file = files[inputFileName]
160+
if (file?.projectReference && file.projectReference.outputFileName) {
157161
return file.projectReference.outputFileName
158162
}
159163

‎src/compiler/instance.ts

+16-95
Original file line numberDiff line numberDiff line change
@@ -1,42 +1,10 @@
1-
/**
2-
* This code is heavily inspired from
3-
* https://github.com/JsCommunity/make-error/blob/v1.3.4/index.js
4-
* ...but more modified than expected :-D
5-
* Below is the original license anyway:
6-
*
7-
* ---
8-
*
9-
* The MIT License (MIT)
10-
*
11-
* Copyright (c) 2014 Blake Embrey (hello@blakeembrey.com)
12-
*
13-
* Permission is hereby granted, free of charge, to any person obtaining a copy
14-
* of this software and associated documentation files (the "Software"), to deal
15-
* in the Software without restriction, including without limitation the rights
16-
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
17-
* copies of the Software, and to permit persons to whom the Software is
18-
* furnished to do so, subject to the following conditions:
19-
*
20-
* The above copyright notice and this permission notice shall be included in
21-
* all copies or substantial portions of the Software.
22-
*
23-
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
24-
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
25-
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
26-
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
27-
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
28-
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
29-
* THE SOFTWARE.
30-
*/
31-
321
import { Logger } from 'bs-logger'
33-
import { readFileSync, writeFileSync } from 'fs'
2+
import { readFileSync } from 'fs'
343
import mkdirp = require('mkdirp')
35-
import { basename, extname, join } from 'path'
4+
import { basename, extname } from 'path'
365

376
import { ConfigSet } from '../config/config-set'
38-
import { CompileFn, CompilerInstance, MemoryCache, TSFile, TsCompiler } from '../types'
39-
import { sha1 } from '../util/sha1'
7+
import { CompileFn, CompilerInstance, MemoryCache, TsCompiler } from '../types'
408

419
import { getResolvedModulesCache } from './compiler-utils'
4210
import { initializeLanguageServiceInstance } from './language-service'
@@ -72,74 +40,27 @@ const updateSourceMap = (sourceMapText: string, normalizedFileName: string): str
7240
return JSON.stringify(sourceMap)
7341
}
7442

75-
/**
76-
* Get the file name for the cache entry.
77-
*/
78-
const getCacheName = (sourceCode: string, normalizedFileName: string): string => {
79-
return sha1(normalizedFileName, '\x00', sourceCode)
80-
}
81-
82-
/**
83-
* Ensure the given cached content is valid by sniffing for a base64 encoded '}'
84-
* at the end of the content, which should exist if there is a valid sourceMap present.
85-
*/
86-
const isValidCacheContent = (contents: string): boolean => {
87-
return /(?:9|0=|Q==)$/.test(contents.slice(-3))
88-
}
89-
9043
/**
9144
* Compile files which are provided by jest via transform config and cache the result in file system if users run with
9245
* cache mode
9346
*/
9447
const compileAndCacheResult = (
95-
cacheDir: string | undefined,
9648
memoryCache: MemoryCache,
9749
compileFn: CompileFn,
9850
getExtension: (fileName: string) => string,
9951
logger: Logger,
10052
) => {
10153
return (code: string, fileName: string, lineOffset?: number) => {
102-
function getCompileOutput(): string {
103-
const [value, sourceMap] = compileFn(code, fileName, lineOffset)
104-
const output = updateOutput(value, fileName, sourceMap, getExtension)
105-
memoryCache.files.set(fileName, {
106-
...memoryCache.files.get(fileName)!,
107-
output,
108-
})
54+
logger.debug({ fileName }, 'compileAndCacheResult(): get compile output')
10955

110-
return output
56+
const [value, sourceMap] = compileFn(code, fileName, lineOffset)
57+
const output = updateOutput(value, fileName, sourceMap, getExtension)
58+
memoryCache.files[fileName] = {
59+
...memoryCache.files[fileName],
60+
output,
11161
}
112-
if (!cacheDir) {
113-
logger.debug({ fileName }, 'compileAndCacheResult(): no cache')
114-
115-
return getCompileOutput()
116-
} else {
117-
const cachePath = join(cacheDir, getCacheName(code, fileName))
118-
const extension = getExtension(fileName)
119-
const outputPath = `${cachePath}${extension}`
120-
try {
121-
const output = readFileSync(outputPath, 'utf8')
122-
if (isValidCacheContent(output)) {
123-
logger.debug({ fileName }, 'compileAndCacheResult(): cache hit')
124-
memoryCache.files.set(fileName, {
125-
...memoryCache.files.get(fileName)!,
126-
output,
127-
})
128-
129-
return output
130-
}
131-
} catch (err) {}
132-
133-
logger.debug({ fileName }, 'compileAndCacheResult(): cache miss')
134-
135-
const output = getCompileOutput()
13662

137-
logger.debug({ fileName, outputPath }, 'compileAndCacheResult(): writing caches')
138-
139-
writeFileSync(outputPath, output)
140-
141-
return output
142-
}
63+
return output
14364
}
14465
}
14566

@@ -157,8 +78,8 @@ export const createCompilerInstance = (configs: ConfigSet): TsCompiler => {
15778
const ts = configs.compilerModule // Require the TypeScript compiler and configuration.
15879
const extensions = ['.ts', '.tsx']
15980
const memoryCache: MemoryCache = {
81+
files: Object.create(null),
16082
resolvedModules: Object.create(null),
161-
files: new Map<string, TSFile>(),
16283
}
16384
// Enable `allowJs` when flag is set.
16485
if (compilerOptions.allowJs) {
@@ -169,16 +90,16 @@ export const createCompilerInstance = (configs: ConfigSet): TsCompiler => {
16990
// Make sure the cache directory exists before continuing.
17091
mkdirp.sync(cacheDir)
17192
try {
172-
const resolvedModulesCache = readFileSync(getResolvedModulesCache(cacheDir), 'utf-8')
93+
const fsMemoryCache = readFileSync(getResolvedModulesCache(cacheDir), 'utf-8')
17394
/* istanbul ignore next (covered by e2e) */
174-
memoryCache.resolvedModules = JSON.parse(resolvedModulesCache)
95+
memoryCache.resolvedModules = JSON.parse(fsMemoryCache)
17596
} catch (e) {}
17697
}
17798
/* istanbul ignore next (we leave this for e2e) */
17899
configs.jest.setupFiles.concat(configs.jest.setupFilesAfterEnv).forEach(setupFile => {
179-
memoryCache.files.set(setupFile, {
100+
memoryCache.files[setupFile] = {
180101
version: 0,
181-
})
102+
}
182103
})
183104
/**
184105
* Get the extension for a transpiled file.
@@ -194,7 +115,7 @@ export const createCompilerInstance = (configs: ConfigSet): TsCompiler => {
194115
} else {
195116
compilerInstance = initializeTranspilerInstance(configs, memoryCache, logger)
196117
}
197-
const compile = compileAndCacheResult(cacheDir, memoryCache, compilerInstance.compileFn, getExtension, logger)
118+
const compile = compileAndCacheResult(memoryCache, compilerInstance.compileFn, getExtension, logger)
198119

199120
return { cwd: configs.cwd, compile, program: compilerInstance.program }
200121
}

‎src/compiler/language-service.spec.ts

-48
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import { LogLevels } from 'bs-logger'
21
import { removeSync, writeFileSync } from 'fs-extra'
32

43
import { makeCompiler } from '../__helpers__/fakers'
@@ -16,53 +15,6 @@ describe('Language service', () => {
1615
logTarget.clear()
1716
})
1817

19-
it('should use the cache', () => {
20-
const tmp = tempDir('compiler')
21-
const compiler = makeCompiler({
22-
jestConfig: { cache: true, cacheDirectory: tmp },
23-
tsJestConfig: { tsConfig: false },
24-
})
25-
const source = 'console.log("hello")'
26-
const fileName = 'test-cache.ts'
27-
28-
writeFileSync(fileName, source, 'utf8')
29-
30-
logTarget.clear()
31-
const compiled1 = compiler.compile(source, fileName)
32-
33-
expect(logTarget.filteredLines(LogLevels.debug, Infinity)).toMatchInlineSnapshot(`
34-
Array [
35-
"[level:20] compileAndCacheResult(): cache miss
36-
",
37-
"[level:20] compileFn(): compiling using language service
38-
",
39-
"[level:20] updateMemoryCache(): update memory cache for language service
40-
",
41-
"[level:20] visitSourceFileNode(): hoisting
42-
",
43-
"[level:20] compileFn(): computing diagnostics for test-cache.ts using language service
44-
",
45-
"[level:20] compileAndCacheResult(): writing caches
46-
",
47-
]
48-
`)
49-
50-
logTarget.clear()
51-
const compiled2 = compiler.compile(source, fileName)
52-
53-
expect(logTarget.lines).toMatchInlineSnapshot(`
54-
Array [
55-
"[level:20] compileAndCacheResult(): cache hit
56-
",
57-
]
58-
`)
59-
60-
expect(new ProcessedSource(compiled1, fileName)).toMatchSnapshot()
61-
expect(compiled2).toBe(compiled1)
62-
63-
removeSync(fileName)
64-
})
65-
6618
it('should get compile result from referenced project when there is a built reference project', () => {
6719
const tmp = tempDir('compiler')
6820
const compiler = makeCompiler({

‎src/compiler/language-service.ts

+25-20
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ import {
1212
cacheResolvedModules,
1313
getAndCacheProjectReference,
1414
getCompileResultFromReferencedProject,
15+
hasOwn,
1516
isTestFile,
1617
} from './compiler-utils'
1718

@@ -50,21 +51,21 @@ export const initializeLanguageServiceInstance = (
5051
logger.debug({ fileName }, `updateMemoryCache(): update memory cache for language service`)
5152

5253
let shouldIncrementProjectVersion = false
53-
const isFileInCache = memoryCache.files.has(fileName) && memoryCache.files.get(fileName)!.version !== 0
54+
const isFileInCache = hasOwn.call(memoryCache.files, fileName) && memoryCache.files[fileName].version !== 0
5455
if (!isFileInCache) {
55-
memoryCache.files.set(fileName, {
56+
memoryCache.files[fileName] = {
5657
text: contents,
5758
version: 1,
58-
})
59+
}
5960
shouldIncrementProjectVersion = true
6061
} else {
61-
const previousContents = memoryCache.files.get(fileName)!.text
62+
const previousContents = memoryCache.files[fileName].text
6263
// Avoid incrementing cache when nothing has changed.
6364
if (previousContents !== contents) {
64-
memoryCache.files.set(fileName, {
65-
version: memoryCache.files.get(fileName)!.version + 1,
65+
memoryCache.files[fileName] = {
6666
text: contents,
67-
})
67+
version: memoryCache.files[fileName].version + 1,
68+
}
6869
// Only bump project version when file is modified in cache, not when discovered for the first time
6970
if (isFileInCache) shouldIncrementProjectVersion = true
7071
}
@@ -82,10 +83,10 @@ export const initializeLanguageServiceInstance = (
8283
const serviceHost: _ts.LanguageServiceHost = {
8384
getProjectVersion: () => String(projectVersion),
8485
getProjectReferences: () => projectReferences,
85-
getScriptFileNames: () => [...memoryCache.files.keys()],
86+
getScriptFileNames: () => Object.keys(memoryCache.files),
8687
getScriptVersion: (fileName: string) => {
8788
const normalizedFileName = normalize(fileName)
88-
const version = memoryCache.files.get(normalizedFileName)!.version
89+
const version = memoryCache.files[normalizedFileName].version
8990

9091
// We need to return `undefined` and not a string here because TypeScript will use
9192
// `getScriptVersion` and compare against their own version - which can be `undefined`.
@@ -96,18 +97,19 @@ export const initializeLanguageServiceInstance = (
9697
},
9798
getScriptSnapshot(fileName: string) {
9899
const normalizedFileName = normalize(fileName)
99-
const hit = memoryCache.files.has(normalizedFileName) && memoryCache.files.get(normalizedFileName)!.version !== 0
100+
const hit =
101+
hasOwn.call(memoryCache.files, normalizedFileName) && memoryCache.files[normalizedFileName].version !== 0
100102

101103
logger.trace({ normalizedFileName, cacheHit: hit }, `getScriptSnapshot():`, 'cache', hit ? 'hit' : 'miss')
102104

103105
// Read contents from TypeScript memory cache.
104106
if (!hit) {
105-
memoryCache.files.set(normalizedFileName, {
106-
version: 1,
107+
memoryCache.files[normalizedFileName] = {
107108
text: ts.sys.readFile(normalizedFileName),
108-
})
109+
version: 1,
110+
}
109111
}
110-
const contents = memoryCache.files.get(normalizedFileName)!.text
112+
const contents = memoryCache.files[normalizedFileName]?.text
111113

112114
if (contents === undefined) return
113115

@@ -126,7 +128,7 @@ export const initializeLanguageServiceInstance = (
126128
getCustomTransformers: () => configs.tsCustomTransformers,
127129
}
128130

129-
logger.debug('compileUsingLanguageService(): creating language service')
131+
logger.debug('initializeLanguageServiceInstance(): creating language service')
130132

131133
const service: _ts.LanguageService = ts.createLanguageService(serviceHost, ts.createDocumentRegistry())
132134

@@ -149,7 +151,7 @@ export const initializeLanguageServiceInstance = (
149151
} else {
150152
const output: _ts.EmitOutput = service.getEmitOutput(fileName)
151153
// Do type checking by getting TypeScript diagnostics
152-
logger.debug(`compileFn(): computing diagnostics for ${fileName} using language service`)
154+
logger.debug({ fileName }, `compileFn(): computing diagnostics using language service`)
153155

154156
doTypeChecking(configs, fileName, service, logger)
155157
/**
@@ -168,16 +170,19 @@ export const initializeLanguageServiceInstance = (
168170
* test file for 1st time run after clearing cache because
169171
*/
170172
return (
171-
entry[1].modulePaths.find(modulePath => modulePath === fileName) && !memoryCache.files.has(entry[0])
173+
entry[1].modulePaths.find(modulePath => modulePath === fileName) &&
174+
!hasOwn.call(memoryCache.files, entry[0])
172175
)
173176
})
174177
.forEach(entry => {
178+
const testFileName = entry[0]
179+
const testFileContent = entry[1].testFileContent
175180
logger.debug(
176-
`compileFn(): computing diagnostics for test file that imports ${fileName} using language service`,
181+
{ fileName },
182+
`compileFn(): computing diagnostics for test file that imports this module using language service`,
177183
)
178184

179-
const testFileName = entry[0]
180-
updateMemoryCache(entry[1].testFileContent, testFileName)
185+
updateMemoryCache(testFileContent, testFileName)
181186
doTypeChecking(configs, testFileName, service, logger)
182187
})
183188
}

‎src/compiler/transpiler.spec.ts

-31
Original file line numberDiff line numberDiff line change
@@ -1,48 +1,17 @@
1-
import { LogLevels } from 'bs-logger'
21
import { removeSync, writeFileSync } from 'fs-extra'
32
import * as _ts from 'typescript'
43

54
import { makeCompiler } from '../__helpers__/fakers'
6-
import { logTargetMock } from '../__helpers__/mocks'
75
import ProcessedSource from '../__helpers__/processed-source'
86
import { TS_JEST_OUT_DIR } from '../config/config-set'
97

108
import * as compilerUtils from './compiler-utils'
119

12-
const logTarget = logTargetMock()
13-
1410
describe('Transpiler', () => {
1511
const baseTsJestConfig = {
1612
isolatedModules: true,
1713
}
1814

19-
beforeEach(() => {
20-
logTarget.clear()
21-
})
22-
23-
it('should compile using transpileModule and not use cache', () => {
24-
const compiler = makeCompiler({ tsJestConfig: { ...baseTsJestConfig, tsConfig: false } })
25-
const spy = jest.spyOn(_ts, 'transpileModule')
26-
27-
logTarget.clear()
28-
const compiled = compiler.compile('export default 42', __filename)
29-
30-
expect(new ProcessedSource(compiled, __filename)).toMatchSnapshot()
31-
expect(spy).toHaveBeenCalled()
32-
expect(logTarget.filteredLines(LogLevels.debug, Infinity)).toMatchInlineSnapshot(`
33-
Array [
34-
"[level:20] compileAndCacheResult(): no cache
35-
",
36-
"[level:20] compileFn(): compiling as isolated module
37-
",
38-
"[level:20] visitSourceFileNode(): hoisting
39-
",
40-
]
41-
`)
42-
43-
spy.mockRestore()
44-
})
45-
4615
it(
4716
'should call createProgram() with projectReferences, call getAndCacheProjectReference()' +
4817
' and getCompileResultFromReferenceProject() when there are projectReferences from tsconfig',

‎src/compiler/transpiler.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ export const initializeTranspilerInstance = (
2727
: ts.createProgram([], options)
2828
/* istanbul ignore next (we leave this for e2e) */
2929
const updateFileInCache = (contents: string, filePath: string) => {
30-
const file = memoryCache.files.get(filePath)
30+
const file = memoryCache.files[filePath]
3131
if (file && file.text !== contents) {
3232
file.version++
3333
file.text = contents

‎src/types.ts

+3-1
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,9 @@ export interface AstTransformerDesc {
239239
factory(cs: ConfigSet): _ts.TransformerFactory<_ts.SourceFile>
240240
}
241241
/** where key is filepath */
242-
export type TSFiles = Map<string, TSFile>
242+
export interface TSFiles {
243+
[filePath: string]: TSFile
244+
}
243245
export interface TSFile {
244246
text?: string
245247
output?: string

0 commit comments

Comments
 (0)
Please sign in to comment.