mirror of
https://github.com/nodejs/node.git
synced 2025-05-10 05:30:00 +00:00

Previously 1000-1200ms, they're now (platform dependent) 50-100ms. Improves test run time on my machine from 0m1.335s to 0m0.236s. PR-URL: https://github.com/nodejs/node/pull/2429 Reviewed-By: Rich Trott <rtrott@gmail.com>
32 lines
945 B
JavaScript
32 lines
945 B
JavaScript
'use strict';
|
|
var common = require('../common');
|
|
var assert = require('assert');
|
|
var net = require('net');
|
|
|
|
var serverConnection;
|
|
var echoServer = net.createServer(function(connection) {
|
|
serverConnection = connection;
|
|
connection.setTimeout(0);
|
|
assert.notEqual(connection.setKeepAlive, undefined);
|
|
// send a keepalive packet after 50 ms
|
|
connection.setKeepAlive(true, common.platformTimeout(50));
|
|
connection.on('end', function() {
|
|
connection.end();
|
|
});
|
|
});
|
|
echoServer.listen(common.PORT);
|
|
|
|
echoServer.on('listening', function() {
|
|
var clientConnection = net.createConnection(common.PORT);
|
|
clientConnection.setTimeout(0);
|
|
|
|
setTimeout(function() {
|
|
// make sure both connections are still open
|
|
assert.equal(serverConnection.readyState, 'open');
|
|
assert.equal(clientConnection.readyState, 'open');
|
|
serverConnection.end();
|
|
clientConnection.end();
|
|
echoServer.close();
|
|
}, common.platformTimeout(100));
|
|
});
|