mirror of
https://github.com/nodejs/node.git
synced 2025-05-02 03:31:35 +00:00

This changes the behavior for http to send send a Content-Length header instead of using chunked encoding when we know the size of the body when sending the headers. Fixes: https://github.com/iojs/io.js/issues/1044 PR-URL: https://github.com/iojs/io.js/pull/1062 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Rod Vagg <rod@vagg.org> Reviewed-By: Brian White <mscdex@mscdex.net>
46 lines
1.2 KiB
JavaScript
46 lines
1.2 KiB
JavaScript
var common = require('../common');
|
|
var assert = require('assert');
|
|
var http = require('http');
|
|
|
|
var expectedHeaders = {
|
|
'DELETE': ['host', 'connection'],
|
|
'GET': ['host', 'connection'],
|
|
'HEAD': ['host', 'connection'],
|
|
'OPTIONS': ['host', 'connection'],
|
|
'POST': ['host', 'connection', 'content-length'],
|
|
'PUT': ['host', 'connection', 'content-length']
|
|
};
|
|
|
|
var expectedMethods = Object.keys(expectedHeaders);
|
|
|
|
var requestCount = 0;
|
|
|
|
var server = http.createServer(function(req, res) {
|
|
requestCount++;
|
|
res.end();
|
|
|
|
assert(expectedHeaders.hasOwnProperty(req.method),
|
|
req.method + ' was an unexpected method');
|
|
|
|
var requestHeaders = Object.keys(req.headers);
|
|
requestHeaders.forEach(function(header) {
|
|
assert(expectedHeaders[req.method].indexOf(header.toLowerCase()) !== -1,
|
|
header + ' shoud not exist for method ' + req.method);
|
|
});
|
|
|
|
assert(requestHeaders.length === expectedHeaders[req.method].length,
|
|
'some headers were missing for method: ' + req.method);
|
|
|
|
if (expectedMethods.length === requestCount)
|
|
server.close();
|
|
});
|
|
|
|
server.listen(common.PORT, function() {
|
|
expectedMethods.forEach(function(method) {
|
|
http.request({
|
|
method: method,
|
|
port: common.PORT
|
|
}).end();
|
|
});
|
|
});
|