node/test/parallel/test-tls-close-error.js
Meghan Denny 208f07adda
test: more common.mustNotCall in net, tls
PR-URL: https://github.com/nodejs/node/pull/57246
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: Jason Zhang <xzha4350@gmail.com>
Reviewed-By: Daeyeon Jeong <daeyeon.dev@gmail.com>
2025-03-03 05:54:27 +00:00

24 lines
611 B
JavaScript

'use strict';
const common = require('../common');
if (!common.hasCrypto)
common.skip('missing crypto');
const assert = require('assert');
const tls = require('tls');
const fixtures = require('../common/fixtures');
const server = tls.createServer({
key: fixtures.readKey('agent1-key.pem'),
cert: fixtures.readKey('agent1-cert.pem')
}, common.mustNotCall()).listen(0, common.mustCall(function() {
const c = tls.connect(this.address().port, common.mustNotCall());
c.on('error', common.mustCall());
c.on('close', common.mustCall(function(err) {
assert.ok(err);
server.close();
}));
}));