mirror of
https://github.com/nodejs/node.git
synced 2025-05-11 05:03:38 +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>
31 lines
906 B
JavaScript
31 lines
906 B
JavaScript
var common = require('../common');
|
|
var assert = require('assert');
|
|
var http = require('http');
|
|
|
|
var server = http.createServer(function(req, res) {
|
|
res.setHeader('X-Date', 'foo');
|
|
res.setHeader('X-Connection', 'bar');
|
|
res.setHeader('X-Content-Length', 'baz');
|
|
res.end();
|
|
});
|
|
server.listen(common.PORT);
|
|
|
|
server.on('listening', function() {
|
|
var agent = new http.Agent({ port: common.PORT, maxSockets: 1 });
|
|
http.get({
|
|
port: common.PORT,
|
|
path: '/hello',
|
|
agent: agent
|
|
}, function(res) {
|
|
assert.equal(res.statusCode, 200);
|
|
assert.equal(res.headers['x-date'], 'foo');
|
|
assert.equal(res.headers['x-connection'], 'bar');
|
|
assert.equal(res.headers['x-content-length'], 'baz');
|
|
assert(res.headers['date']);
|
|
assert.equal(res.headers['connection'], 'keep-alive');
|
|
assert.equal(res.headers['content-length'], '0');
|
|
server.close();
|
|
agent.destroy();
|
|
});
|
|
});
|