mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
cbe955c227
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>
27 lines
610 B
JavaScript
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();
|
|
}));
|
|
}));
|