Skip to content

Commit

Permalink
test: Memory leak reproduction for futures
Browse files Browse the repository at this point in the history
  • Loading branch information
SevInf authored and Brooooooklyn committed Dec 28, 2022
1 parent 1e8d20a commit 81498ec
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 0 deletions.
1 change: 1 addition & 0 deletions memory-testing/index.mjs
Expand Up @@ -5,3 +5,4 @@ await createSuite('tokio-future')
await createSuite('serde')
await createSuite('tsfn')
await createSuite('buffer')
await createSuite('returns-future')
26 changes: 26 additions & 0 deletions memory-testing/returns-future.mjs
@@ -0,0 +1,26 @@
import { createRequire } from 'module'

import { displayMemoryUsageFromNode } from './util.mjs'

const initialMemoryUsage = process.memoryUsage()

const require = createRequire(import.meta.url)

const api = require(`./index.node`)

async function main() {
let i = 1
// eslint-disable-next-line no-constant-condition
while (true) {
await api.returnsFuture()
if (i % 100000 === 0) {
displayMemoryUsageFromNode(initialMemoryUsage)
}
i++
}
}

main().catch((e) => {
console.error(e)
process.exit(1)
})
3 changes: 3 additions & 0 deletions memory-testing/src/lib.rs
Expand Up @@ -171,3 +171,6 @@ pub fn buffer_pass_through(buffer: Buffer) -> Buffer {
pub fn array_buffer_pass_through(array_buffer: Uint8Array) -> Uint8Array {
array_buffer
}

#[napi]
pub async fn returns_future() {}

0 comments on commit 81498ec

Please sign in to comment.