2012-01-22 06:55:41 +01:00
|
|
|
var common = require('../common');
|
|
|
|
var assert = require('assert');
|
|
|
|
var http = require('http');
|
|
|
|
var net = require('net');
|
|
|
|
|
|
|
|
var SERVER_RESPONSES = [
|
|
|
|
'HTTP/1.0 200 ok\r\nContent-Length: 0\r\n\r\n',
|
|
|
|
'HTTP/1.0 200 ok\r\nContent-Length: 0\r\nConnection: keep-alive\r\n\r\n',
|
|
|
|
'HTTP/1.0 200 ok\r\nContent-Length: 0\r\nConnection: close\r\n\r\n',
|
|
|
|
'HTTP/1.1 200 ok\r\nContent-Length: 0\r\n\r\n',
|
|
|
|
'HTTP/1.1 200 ok\r\nContent-Length: 0\r\nConnection: keep-alive\r\n\r\n',
|
2012-02-19 00:01:35 +01:00
|
|
|
'HTTP/1.1 200 ok\r\nContent-Length: 0\r\nConnection: close\r\n\r\n'
|
2012-01-22 06:55:41 +01:00
|
|
|
];
|
|
|
|
var SHOULD_KEEP_ALIVE = [
|
|
|
|
false, // HTTP/1.0, default
|
|
|
|
true, // HTTP/1.0, Connection: keep-alive
|
|
|
|
false, // HTTP/1.0, Connection: close
|
|
|
|
true, // HTTP/1.1, default
|
|
|
|
true, // HTTP/1.1, Connection: keep-alive
|
2012-02-19 00:01:35 +01:00
|
|
|
false // HTTP/1.1, Connection: close
|
2012-01-22 06:55:41 +01:00
|
|
|
];
|
|
|
|
var requests = 0;
|
|
|
|
var responses = 0;
|
2013-08-18 03:50:59 +02:00
|
|
|
http.globalAgent.maxSockets = 5;
|
2012-01-22 06:55:41 +01:00
|
|
|
|
|
|
|
var server = net.createServer(function(socket) {
|
|
|
|
socket.write(SERVER_RESPONSES[requests]);
|
|
|
|
++requests;
|
|
|
|
}).listen(common.PORT, function() {
|
|
|
|
function makeRequest() {
|
|
|
|
var req = http.get({port: common.PORT}, function(res) {
|
|
|
|
assert.equal(req.shouldKeepAlive, SHOULD_KEEP_ALIVE[responses],
|
|
|
|
SERVER_RESPONSES[responses] + ' should ' +
|
|
|
|
(SHOULD_KEEP_ALIVE[responses] ? '' : 'not ') +
|
|
|
|
'Keep-Alive');
|
|
|
|
++responses;
|
|
|
|
if (responses < SHOULD_KEEP_ALIVE.length) {
|
|
|
|
makeRequest();
|
|
|
|
} else {
|
|
|
|
server.close();
|
|
|
|
}
|
stream: Don't emit 'end' unless read() called
This solves the problem of calling `readable.pipe(writable)` after the
readable stream has already emitted 'end', as often is the case when
writing simple HTTP proxies.
The spirit of streams2 is that things will work properly, even if you
don't set them up right away on the first tick.
This approach breaks down, however, because pipe()ing from an ended
readable will just do nothing. No more data will ever arrive, and the
writable will hang open forever never being ended.
However, that does not solve the case of adding a `on('end')` listener
after the stream has received the EOF chunk, if it was the first chunk
received (and thus, length was 0, and 'end' got emitted). So, with
this, we defer the 'end' event emission until the read() function is
called.
Also, in pipe(), if the source has emitted 'end' already, we call the
cleanup/onend function on nextTick. Piping from an already-ended stream
is thus the same as piping from a stream that is in the process of
ending.
Updates many tests that were relying on 'end' coming immediately, even
though they never read() from the req.
Fix #4942
2013-03-10 03:05:39 +01:00
|
|
|
res.resume();
|
2012-01-22 06:55:41 +01:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
makeRequest();
|
|
|
|
});
|
|
|
|
|
|
|
|
process.on('exit', function() {
|
|
|
|
assert.equal(requests, SERVER_RESPONSES.length);
|
|
|
|
assert.equal(responses, SHOULD_KEEP_ALIVE.length);
|
|
|
|
});
|