Skip to content

Commit

Permalink
test: fix flaky test-net-socket-timeout-unref
Browse files Browse the repository at this point in the history
Throw immediately on socket timeout rather than checking boolean in exit
handler.

PR-URL: #6003
Fixes: #5128
Reviewed-By: Myles Borins <myles.borins@gmail.com>
  • Loading branch information
Trott authored and Myles Borins committed Apr 5, 2016
1 parent dd25984 commit 2ab1237
Showing 1 changed file with 16 additions and 20 deletions.
36 changes: 16 additions & 20 deletions test/parallel/test-net-socket-timeout-unref.js
@@ -1,39 +1,35 @@
'use strict';
var common = require('../common');
var assert = require('assert');
var net = require('net');

var server = net.createServer(function(c) {
// Test that unref'ed sockets with timeouts do not prevent exit.

const common = require('../common');
const net = require('net');

const server = net.createServer(function(c) {
c.write('hello');
c.unref();
});
server.listen(common.PORT);
server.unref();

var timedout = false;
var connections = 0;
var sockets = [];
var delays = [8, 5, 3, 6, 2, 4];
const sockets = [];
const delays = [8, 5, 3, 6, 2, 4];

delays.forEach(function(T) {
var socket = net.createConnection(common.PORT, 'localhost');
socket.on('connect', function() {
const socket = net.createConnection(common.PORT, 'localhost');
socket.on('connect', common.mustCall(function() {
if (++connections === delays.length) {
sockets.forEach(function(s) {
s[0].setTimeout(s[1] * 1000, function() {
timedout = true;
s[0].destroy();
s.socket.setTimeout(s.timeout, function() {
s.socket.destroy();
throw new Error('socket timed out unexpectedly');
});

s[0].unref();
s.socket.unref();
});
}
});

sockets.push([socket, T]);
});
}));

process.on('exit', function() {
assert.strictEqual(timedout, false,
'Socket timeout should not hold loop open');
sockets.push({socket: socket, timeout: T * 1000});
});

0 comments on commit 2ab1237

Please sign in to comment.