node/test/parallel/test-tls-transport-destroy-after-own-gc.js
James M Snell 97a3a8204c test: replace more uses of global with globalThis
PR-URL: https://github.com/nodejs/node/pull/56712
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
2025-01-25 07:23:11 +00:00

30 lines
743 B
JavaScript

// Flags: --expose-gc
'use strict';
// Regression test for https://github.com/nodejs/node/issues/17475
// Unfortunately, this tests only "works" reliably when checked with valgrind or
// a similar tool.
const common = require('../common');
if (!common.hasCrypto)
common.skip('missing crypto');
const { TLSSocket } = require('tls');
const { duplexPair } = require('stream');
let [ clientSide ] = duplexPair();
let clientTLS = new TLSSocket(clientSide, { isServer: false });
let clientTLSHandle = clientTLS._handle; // eslint-disable-line no-unused-vars
setImmediate(() => {
clientTLS = null;
globalThis.gc();
clientTLSHandle = null;
globalThis.gc();
setImmediate(() => {
clientSide = null;
globalThis.gc();
});
});