mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 21:19:50 +01:00
360cda1926
Fixes: https://github.com/nodejs/node/issues/27428 PR-URL: https://github.com/nodejs/node/pull/43112 Reviewed-By: Paolo Insogna <paolo@cowtech.it> Reviewed-By: Minwoo Jung <nodecorelab@gmail.com>
30 lines
842 B
JavaScript
30 lines
842 B
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
const net = require('net');
|
|
const assert = require('assert');
|
|
|
|
const server = net.createServer();
|
|
server.listen(0, common.mustCall(function() {
|
|
const port = server.address().port;
|
|
const conn = net.createConnection(port);
|
|
server.on('connection', (socket) => {
|
|
socket.on('error', common.expectsError({
|
|
code: 'ECONNRESET',
|
|
message: 'read ECONNRESET',
|
|
name: 'Error'
|
|
}));
|
|
});
|
|
|
|
conn.on('connect', common.mustCall(function() {
|
|
assert.strictEqual(conn, conn.resetAndDestroy().destroy());
|
|
conn.on('error', common.mustNotCall());
|
|
|
|
conn.write(Buffer.from('fzfzfzfzfz'), common.expectsError({
|
|
code: 'ERR_STREAM_DESTROYED',
|
|
message: 'Cannot call write after a stream was destroyed',
|
|
name: 'Error'
|
|
}));
|
|
server.close();
|
|
}));
|
|
}));
|