node/test/parallel/test-net-end-destroyed.js
Robert Nagy cbe955c227 test: add net regression test
Ensure that the socket is not destroyed when the 'end'
event is emitted.

Refs: https://github.com/nodejs/node/pull/32780#issuecomment-612602551

PR-URL: https://github.com/nodejs/node/pull/32794
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Anna Henningsen <anna@addaleax.net>
2020-04-14 21:36:02 +02:00

27 lines
610 B
JavaScript

'use strict';
const common = require('../common');
const net = require('net');
const assert = require('assert');
const server = net.createServer();
server.on('connection', common.mustCall());
// Ensure that the socket is not destroyed when the 'end' event is emitted.
server.listen(common.mustCall(function() {
const socket = net.createConnection({
port: server.address().port
});
socket.on('connect', common.mustCall(function() {
socket.on('end', common.mustCall(function() {
assert.strictEqual(socket.destroyed, false);
server.close();
}));
socket.end();
}));
}));