2015-05-19 13:00:06 +02:00
|
|
|
'use strict';
|
2015-02-21 18:47:04 -08:00
|
|
|
var common = require('../common');
|
http: More useful setTimeout API on server
This adds the following to HTTP:
* server.setTimeout(msecs, callback)
Sets all new connections to time out after the specified time, at
which point it emits 'timeout' on the server, passing the socket as an
argument.
In this way, timeouts can be handled in one place consistently.
* req.setTimeout(), res.setTimeout()
Essentially an alias to req/res.socket.setTimeout(), but without
having to delve into a "buried" object. Adds a listener on the
req/res object, but not on the socket.
* server.timeout
Number of milliseconds before incoming connections time out.
(Default=1000*60*2, as before.)
Furthermore, if the user sets up their own timeout listener on either
the server, the request, or the response, then the default behavior
(destroying the socket) is suppressed.
Fix #3460
2013-03-03 23:29:22 -08:00
|
|
|
var assert = require('assert');
|
|
|
|
var http = require('http');
|
2013-03-10 20:10:19 +09:00
|
|
|
var net = require('net');
|
http: More useful setTimeout API on server
This adds the following to HTTP:
* server.setTimeout(msecs, callback)
Sets all new connections to time out after the specified time, at
which point it emits 'timeout' on the server, passing the socket as an
argument.
In this way, timeouts can be handled in one place consistently.
* req.setTimeout(), res.setTimeout()
Essentially an alias to req/res.socket.setTimeout(), but without
having to delve into a "buried" object. Adds a listener on the
req/res object, but not on the socket.
* server.timeout
Number of milliseconds before incoming connections time out.
(Default=1000*60*2, as before.)
Furthermore, if the user sets up their own timeout listener on either
the server, the request, or the response, then the default behavior
(destroying the socket) is suppressed.
Fix #3460
2013-03-03 23:29:22 -08:00
|
|
|
|
|
|
|
var tests = [];
|
|
|
|
|
|
|
|
function test(fn) {
|
|
|
|
if (!tests.length)
|
|
|
|
process.nextTick(run);
|
|
|
|
tests.push(fn);
|
|
|
|
}
|
|
|
|
|
|
|
|
function run() {
|
|
|
|
var fn = tests.shift();
|
|
|
|
if (fn) {
|
|
|
|
console.log('# %s', fn.name);
|
|
|
|
fn(run);
|
2015-05-19 13:00:06 +02:00
|
|
|
} else {
|
http: More useful setTimeout API on server
This adds the following to HTTP:
* server.setTimeout(msecs, callback)
Sets all new connections to time out after the specified time, at
which point it emits 'timeout' on the server, passing the socket as an
argument.
In this way, timeouts can be handled in one place consistently.
* req.setTimeout(), res.setTimeout()
Essentially an alias to req/res.socket.setTimeout(), but without
having to delve into a "buried" object. Adds a listener on the
req/res object, but not on the socket.
* server.timeout
Number of milliseconds before incoming connections time out.
(Default=1000*60*2, as before.)
Furthermore, if the user sets up their own timeout listener on either
the server, the request, or the response, then the default behavior
(destroying the socket) is suppressed.
Fix #3460
2013-03-03 23:29:22 -08:00
|
|
|
console.log('ok');
|
2015-05-19 13:00:06 +02:00
|
|
|
}
|
http: More useful setTimeout API on server
This adds the following to HTTP:
* server.setTimeout(msecs, callback)
Sets all new connections to time out after the specified time, at
which point it emits 'timeout' on the server, passing the socket as an
argument.
In this way, timeouts can be handled in one place consistently.
* req.setTimeout(), res.setTimeout()
Essentially an alias to req/res.socket.setTimeout(), but without
having to delve into a "buried" object. Adds a listener on the
req/res object, but not on the socket.
* server.timeout
Number of milliseconds before incoming connections time out.
(Default=1000*60*2, as before.)
Furthermore, if the user sets up their own timeout listener on either
the server, the request, or the response, then the default behavior
(destroying the socket) is suppressed.
Fix #3460
2013-03-03 23:29:22 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
test(function serverTimeout(cb) {
|
|
|
|
var caughtTimeout = false;
|
|
|
|
process.on('exit', function() {
|
|
|
|
assert(caughtTimeout);
|
|
|
|
});
|
|
|
|
var server = http.createServer(function(req, res) {
|
|
|
|
// just do nothing, we should get a timeout event.
|
|
|
|
});
|
2016-04-15 09:04:00 +00:00
|
|
|
server.listen(common.mustCall(function() {
|
|
|
|
http.get({ port: server.address().port }).on('error', function() {});
|
|
|
|
}));
|
2015-05-13 21:25:57 -05:00
|
|
|
var s = server.setTimeout(50, function(socket) {
|
http: More useful setTimeout API on server
This adds the following to HTTP:
* server.setTimeout(msecs, callback)
Sets all new connections to time out after the specified time, at
which point it emits 'timeout' on the server, passing the socket as an
argument.
In this way, timeouts can be handled in one place consistently.
* req.setTimeout(), res.setTimeout()
Essentially an alias to req/res.socket.setTimeout(), but without
having to delve into a "buried" object. Adds a listener on the
req/res object, but not on the socket.
* server.timeout
Number of milliseconds before incoming connections time out.
(Default=1000*60*2, as before.)
Furthermore, if the user sets up their own timeout listener on either
the server, the request, or the response, then the default behavior
(destroying the socket) is suppressed.
Fix #3460
2013-03-03 23:29:22 -08:00
|
|
|
caughtTimeout = true;
|
|
|
|
socket.destroy();
|
|
|
|
server.close();
|
|
|
|
cb();
|
|
|
|
});
|
2015-05-13 21:25:57 -05:00
|
|
|
assert.ok(s instanceof http.Server);
|
http: More useful setTimeout API on server
This adds the following to HTTP:
* server.setTimeout(msecs, callback)
Sets all new connections to time out after the specified time, at
which point it emits 'timeout' on the server, passing the socket as an
argument.
In this way, timeouts can be handled in one place consistently.
* req.setTimeout(), res.setTimeout()
Essentially an alias to req/res.socket.setTimeout(), but without
having to delve into a "buried" object. Adds a listener on the
req/res object, but not on the socket.
* server.timeout
Number of milliseconds before incoming connections time out.
(Default=1000*60*2, as before.)
Furthermore, if the user sets up their own timeout listener on either
the server, the request, or the response, then the default behavior
(destroying the socket) is suppressed.
Fix #3460
2013-03-03 23:29:22 -08:00
|
|
|
});
|
|
|
|
|
|
|
|
test(function serverRequestTimeout(cb) {
|
|
|
|
var caughtTimeout = false;
|
|
|
|
process.on('exit', function() {
|
|
|
|
assert(caughtTimeout);
|
|
|
|
});
|
|
|
|
var server = http.createServer(function(req, res) {
|
|
|
|
// just do nothing, we should get a timeout event.
|
2015-05-13 21:25:57 -05:00
|
|
|
var s = req.setTimeout(50, function() {
|
http: More useful setTimeout API on server
This adds the following to HTTP:
* server.setTimeout(msecs, callback)
Sets all new connections to time out after the specified time, at
which point it emits 'timeout' on the server, passing the socket as an
argument.
In this way, timeouts can be handled in one place consistently.
* req.setTimeout(), res.setTimeout()
Essentially an alias to req/res.socket.setTimeout(), but without
having to delve into a "buried" object. Adds a listener on the
req/res object, but not on the socket.
* server.timeout
Number of milliseconds before incoming connections time out.
(Default=1000*60*2, as before.)
Furthermore, if the user sets up their own timeout listener on either
the server, the request, or the response, then the default behavior
(destroying the socket) is suppressed.
Fix #3460
2013-03-03 23:29:22 -08:00
|
|
|
caughtTimeout = true;
|
|
|
|
req.socket.destroy();
|
|
|
|
server.close();
|
|
|
|
cb();
|
|
|
|
});
|
2015-05-13 21:25:57 -05:00
|
|
|
assert.ok(s instanceof http.IncomingMessage);
|
http: More useful setTimeout API on server
This adds the following to HTTP:
* server.setTimeout(msecs, callback)
Sets all new connections to time out after the specified time, at
which point it emits 'timeout' on the server, passing the socket as an
argument.
In this way, timeouts can be handled in one place consistently.
* req.setTimeout(), res.setTimeout()
Essentially an alias to req/res.socket.setTimeout(), but without
having to delve into a "buried" object. Adds a listener on the
req/res object, but not on the socket.
* server.timeout
Number of milliseconds before incoming connections time out.
(Default=1000*60*2, as before.)
Furthermore, if the user sets up their own timeout listener on either
the server, the request, or the response, then the default behavior
(destroying the socket) is suppressed.
Fix #3460
2013-03-03 23:29:22 -08:00
|
|
|
});
|
2016-04-15 09:04:00 +00:00
|
|
|
server.listen(common.mustCall(function() {
|
|
|
|
var port = server.address().port;
|
|
|
|
var req = http.request({ port: port, method: 'POST' });
|
|
|
|
req.on('error', function() {});
|
|
|
|
req.write('Hello');
|
|
|
|
// req is in progress
|
|
|
|
}));
|
http: More useful setTimeout API on server
This adds the following to HTTP:
* server.setTimeout(msecs, callback)
Sets all new connections to time out after the specified time, at
which point it emits 'timeout' on the server, passing the socket as an
argument.
In this way, timeouts can be handled in one place consistently.
* req.setTimeout(), res.setTimeout()
Essentially an alias to req/res.socket.setTimeout(), but without
having to delve into a "buried" object. Adds a listener on the
req/res object, but not on the socket.
* server.timeout
Number of milliseconds before incoming connections time out.
(Default=1000*60*2, as before.)
Furthermore, if the user sets up their own timeout listener on either
the server, the request, or the response, then the default behavior
(destroying the socket) is suppressed.
Fix #3460
2013-03-03 23:29:22 -08:00
|
|
|
});
|
|
|
|
|
|
|
|
test(function serverResponseTimeout(cb) {
|
|
|
|
var caughtTimeout = false;
|
|
|
|
process.on('exit', function() {
|
|
|
|
assert(caughtTimeout);
|
|
|
|
});
|
|
|
|
var server = http.createServer(function(req, res) {
|
|
|
|
// just do nothing, we should get a timeout event.
|
2015-05-13 21:25:57 -05:00
|
|
|
var s = res.setTimeout(50, function() {
|
http: More useful setTimeout API on server
This adds the following to HTTP:
* server.setTimeout(msecs, callback)
Sets all new connections to time out after the specified time, at
which point it emits 'timeout' on the server, passing the socket as an
argument.
In this way, timeouts can be handled in one place consistently.
* req.setTimeout(), res.setTimeout()
Essentially an alias to req/res.socket.setTimeout(), but without
having to delve into a "buried" object. Adds a listener on the
req/res object, but not on the socket.
* server.timeout
Number of milliseconds before incoming connections time out.
(Default=1000*60*2, as before.)
Furthermore, if the user sets up their own timeout listener on either
the server, the request, or the response, then the default behavior
(destroying the socket) is suppressed.
Fix #3460
2013-03-03 23:29:22 -08:00
|
|
|
caughtTimeout = true;
|
|
|
|
res.socket.destroy();
|
|
|
|
server.close();
|
|
|
|
cb();
|
|
|
|
});
|
2015-05-13 21:25:57 -05:00
|
|
|
assert.ok(s instanceof http.OutgoingMessage);
|
http: More useful setTimeout API on server
This adds the following to HTTP:
* server.setTimeout(msecs, callback)
Sets all new connections to time out after the specified time, at
which point it emits 'timeout' on the server, passing the socket as an
argument.
In this way, timeouts can be handled in one place consistently.
* req.setTimeout(), res.setTimeout()
Essentially an alias to req/res.socket.setTimeout(), but without
having to delve into a "buried" object. Adds a listener on the
req/res object, but not on the socket.
* server.timeout
Number of milliseconds before incoming connections time out.
(Default=1000*60*2, as before.)
Furthermore, if the user sets up their own timeout listener on either
the server, the request, or the response, then the default behavior
(destroying the socket) is suppressed.
Fix #3460
2013-03-03 23:29:22 -08:00
|
|
|
});
|
2016-04-15 09:04:00 +00:00
|
|
|
server.listen(common.mustCall(function() {
|
|
|
|
var port = server.address().port;
|
|
|
|
http.get({ port: port }).on('error', function() {});
|
|
|
|
}));
|
http: More useful setTimeout API on server
This adds the following to HTTP:
* server.setTimeout(msecs, callback)
Sets all new connections to time out after the specified time, at
which point it emits 'timeout' on the server, passing the socket as an
argument.
In this way, timeouts can be handled in one place consistently.
* req.setTimeout(), res.setTimeout()
Essentially an alias to req/res.socket.setTimeout(), but without
having to delve into a "buried" object. Adds a listener on the
req/res object, but not on the socket.
* server.timeout
Number of milliseconds before incoming connections time out.
(Default=1000*60*2, as before.)
Furthermore, if the user sets up their own timeout listener on either
the server, the request, or the response, then the default behavior
(destroying the socket) is suppressed.
Fix #3460
2013-03-03 23:29:22 -08:00
|
|
|
});
|
2013-03-10 20:10:19 +09:00
|
|
|
|
|
|
|
test(function serverRequestNotTimeoutAfterEnd(cb) {
|
|
|
|
var caughtTimeoutOnRequest = false;
|
|
|
|
var caughtTimeoutOnResponse = false;
|
|
|
|
process.on('exit', function() {
|
|
|
|
assert(!caughtTimeoutOnRequest);
|
|
|
|
assert(caughtTimeoutOnResponse);
|
|
|
|
});
|
|
|
|
var server = http.createServer(function(req, res) {
|
|
|
|
// just do nothing, we should get a timeout event.
|
2015-05-13 21:25:57 -05:00
|
|
|
var s = req.setTimeout(50, function(socket) {
|
2013-03-10 20:10:19 +09:00
|
|
|
caughtTimeoutOnRequest = true;
|
|
|
|
});
|
2015-05-13 21:25:57 -05:00
|
|
|
assert.ok(s instanceof http.IncomingMessage);
|
2013-03-10 20:10:19 +09:00
|
|
|
res.on('timeout', function(socket) {
|
|
|
|
caughtTimeoutOnResponse = true;
|
|
|
|
});
|
|
|
|
});
|
|
|
|
server.on('timeout', function(socket) {
|
|
|
|
socket.destroy();
|
|
|
|
server.close();
|
|
|
|
cb();
|
|
|
|
});
|
2016-04-15 09:04:00 +00:00
|
|
|
server.listen(common.mustCall(function() {
|
|
|
|
var port = server.address().port;
|
|
|
|
http.get({ port: port }).on('error', function() {});
|
|
|
|
}));
|
2013-03-10 20:10:19 +09:00
|
|
|
});
|
|
|
|
|
|
|
|
test(function serverResponseTimeoutWithPipeline(cb) {
|
|
|
|
var caughtTimeout = '';
|
|
|
|
process.on('exit', function() {
|
|
|
|
assert.equal(caughtTimeout, '/2');
|
|
|
|
});
|
|
|
|
var server = http.createServer(function(req, res) {
|
2015-05-13 21:25:57 -05:00
|
|
|
var s = res.setTimeout(50, function() {
|
2013-03-10 20:10:19 +09:00
|
|
|
caughtTimeout += req.url;
|
|
|
|
});
|
2015-05-13 21:25:57 -05:00
|
|
|
assert.ok(s instanceof http.OutgoingMessage);
|
2013-03-10 20:10:19 +09:00
|
|
|
if (req.url === '/1') res.end();
|
|
|
|
});
|
|
|
|
server.on('timeout', function(socket) {
|
|
|
|
socket.destroy();
|
|
|
|
server.close();
|
|
|
|
cb();
|
|
|
|
});
|
2016-04-15 09:04:00 +00:00
|
|
|
server.listen(common.mustCall(function() {
|
|
|
|
var port = server.address().port;
|
|
|
|
var c = net.connect({ port: port, allowHalfOpen: true }, function() {
|
|
|
|
c.write('GET /1 HTTP/1.1\r\nHost: localhost\r\n\r\n');
|
|
|
|
c.write('GET /2 HTTP/1.1\r\nHost: localhost\r\n\r\n');
|
|
|
|
c.write('GET /3 HTTP/1.1\r\nHost: localhost\r\n\r\n');
|
|
|
|
});
|
|
|
|
}));
|
2013-03-10 20:10:19 +09:00
|
|
|
});
|
|
|
|
|
|
|
|
test(function idleTimeout(cb) {
|
|
|
|
var caughtTimeoutOnRequest = false;
|
|
|
|
var caughtTimeoutOnResponse = false;
|
|
|
|
var caughtTimeoutOnServer = false;
|
|
|
|
process.on('exit', function() {
|
|
|
|
assert(!caughtTimeoutOnRequest);
|
|
|
|
assert(!caughtTimeoutOnResponse);
|
|
|
|
assert(caughtTimeoutOnServer);
|
|
|
|
});
|
|
|
|
var server = http.createServer(function(req, res) {
|
|
|
|
req.on('timeout', function(socket) {
|
|
|
|
caughtTimeoutOnRequest = true;
|
|
|
|
});
|
|
|
|
res.on('timeout', function(socket) {
|
|
|
|
caughtTimeoutOnResponse = true;
|
|
|
|
});
|
|
|
|
res.end();
|
|
|
|
});
|
2015-05-13 21:25:57 -05:00
|
|
|
var s = server.setTimeout(50, function(socket) {
|
2013-03-10 20:10:19 +09:00
|
|
|
caughtTimeoutOnServer = true;
|
|
|
|
socket.destroy();
|
|
|
|
server.close();
|
|
|
|
cb();
|
|
|
|
});
|
2015-05-13 21:25:57 -05:00
|
|
|
assert.ok(s instanceof http.Server);
|
2016-04-15 09:04:00 +00:00
|
|
|
server.listen(common.mustCall(function() {
|
|
|
|
var port = server.address().port;
|
|
|
|
var c = net.connect({ port: port, allowHalfOpen: true }, function() {
|
|
|
|
c.write('GET /1 HTTP/1.1\r\nHost: localhost\r\n\r\n');
|
|
|
|
// Keep-Alive
|
|
|
|
});
|
|
|
|
}));
|
2013-03-10 20:10:19 +09:00
|
|
|
});
|