mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
766 B
23 lines
766 B
'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);
|
|
|
|
conn.on('connect', common.mustCall(function() {
|
|
// Test destroy returns this, even on multiple calls when it short-circuits.
|
|
assert.strictEqual(conn, conn.destroy().destroy());
|
|
conn.on('error', common.mustCall(function(err) {
|
|
assert.strictEqual(err.message, 'This socket is closed');
|
|
}));
|
|
conn.write(Buffer.from('kaboom'), common.mustCall(function(err) {
|
|
assert.strictEqual(err.message, 'This socket is closed');
|
|
}));
|
|
server.close();
|
|
}));
|
|
}));
|
|
|