mirror of
https://github.com/nodejs/node.git
synced 2025-05-11 09:57:00 +00:00

This helps to prevent issues where a failed test can keep a bound socket open long enough to cause other tests to fail with EADDRINUSE because the same port number is used. PR-URL: https://github.com/nodejs/node/pull/7045 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Rod Vagg <rod@vagg.org>
52 lines
1.1 KiB
JavaScript
52 lines
1.1 KiB
JavaScript
'use strict';
|
|
require('../common');
|
|
var assert = require('assert');
|
|
var net = require('net');
|
|
|
|
var s = new net.Stream();
|
|
|
|
// test that destroy called on a stream with a server only ever decrements the
|
|
// server connection count once
|
|
|
|
s.server = new net.Server();
|
|
s.server.connections = 10;
|
|
s._server = s.server;
|
|
|
|
assert.equal(10, s.server.connections);
|
|
s.destroy();
|
|
assert.equal(9, s.server.connections);
|
|
s.destroy();
|
|
assert.equal(9, s.server.connections);
|
|
|
|
var SIZE = 2E6;
|
|
var N = 10;
|
|
var buf = Buffer.alloc(SIZE, 'a');
|
|
|
|
var server = net.createServer(function(socket) {
|
|
socket.setNoDelay();
|
|
|
|
socket.on('error', function(err) {
|
|
socket.destroy();
|
|
}).on('close', function() {
|
|
server.close();
|
|
});
|
|
|
|
for (var i = 0; i < N; ++i) {
|
|
socket.write(buf, function() { });
|
|
}
|
|
socket.end();
|
|
|
|
}).listen(0, function() {
|
|
var conn = net.connect(this.address().port);
|
|
conn.on('data', function(buf) {
|
|
conn.pause();
|
|
setTimeout(function() {
|
|
conn.destroy();
|
|
}, 20);
|
|
});
|
|
});
|
|
|
|
process.on('exit', function() {
|
|
assert.equal(server.connections, 0);
|
|
});
|