Skip to content

Commit

Permalink
ci: Fix a couple of memory leaks in test setups
Browse files Browse the repository at this point in the history
This fixes 2 memory leaks in our test setup:

1. Jest passes every file through transform and caches the results
on disk and in memory. That included every generated client as well, so
they were kept in memory from the time they were first loaded until
process finishes, even though they are needed only for 1 test suite.
Fixed by using `transformIgnorePatterns` options in jest config.

2. `debug` library keeps a list of last 100 logs that would be used for
panic error messages later. If error object gets into this list, it will
keep whole jest sandbox alive until process finishes. Fixed by clearing
logs on `$disconnect`

Fix #16594
  • Loading branch information
SevInf committed Dec 6, 2022
1 parent f6d71c8 commit 8db2db0
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 2 deletions.
3 changes: 2 additions & 1 deletion packages/client/src/runtime/getPrismaClient.ts
@@ -1,5 +1,5 @@
import { Context, context } from '@opentelemetry/api'
import Debug from '@prisma/debug'
import Debug, { clearLogs } from '@prisma/debug'
import {
BatchTransactionOptions,
BinaryEngine,
Expand Down Expand Up @@ -591,6 +591,7 @@ export function getPrismaClient(config: GetPrismaClientConfig) {
e.clientVersion = this._clientVersion
throw e
} finally {
clearLogs()
if (!this._dataProxy) {
this._dmmf = undefined
}
Expand Down
19 changes: 18 additions & 1 deletion packages/client/tests/functional/jest.config.js
@@ -1,10 +1,18 @@
'use strict'
const os = require('os')
const path = require('path')

const runtimeDir = path.dirname(require.resolve('../../runtime'))
const packagesDir = path.resolve('..', '..', '..')

module.exports = () => {
const configCommon = {
testMatch: ['**/*.ts', '!(**/*.d.ts)', '!(**/_utils/**)', '!(**/_*.ts)', '!(**/.generated/**)'],
transformIgnorePatterns: [],
transformIgnorePatterns: [
'[\\/]node_modules[\\/]',
escapeRegex(runtimeDir),
`${escapeRegex(packagesDir)}[\\/][^\\/]+[\\/]dist[\\/]`,
],
reporters: [
'default',
[
Expand Down Expand Up @@ -47,3 +55,12 @@ module.exports = () => {
},
}
}

/**
* https://stackoverflow.com/a/6969486
* @param {string} str
* @returns {string}
*/
function escapeRegex(str) {
return str.replace(/[.*+?^${}()|[\]\\]/g, '\\$&')
}
4 changes: 4 additions & 0 deletions packages/debug/src/index.ts
Expand Up @@ -81,5 +81,9 @@ export function getLogs(numChars = 7500): string {
return output.slice(-numChars)
}

export function clearLogs() {
debugArgsHistory.length = 0
}

export { Debug }
export default Debug

0 comments on commit 8db2db0

Please sign in to comment.