Skip to content

Commit

Permalink
test: http complete list of non-concat headers
Browse files Browse the repository at this point in the history
The original test was only testing some of the headers that shouldn't be
concatenated as per lib/_http_incoming.js, so now the full list is
there.

'content-length` gives a parse error if you set it to a string, so the
test for that header uses numbers.

PR-URL: #3930
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
  • Loading branch information
bengl authored and rvagg committed Dec 5, 2015
1 parent def681a commit 54aafa1
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion test/parallel/test-http-response-multiheaders.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,21 @@ const common = require('../common');
const http = require('http');
const assert = require('assert');

// Test that certain response header fields do not repeat
// Test that certain response header fields do not repeat.
// 'content-length' should also be in this list, but it needs
// a numeric value, so it's tested slightly differently.
const norepeat = [
'content-type',
'user-agent',
'referer',
'host',
'authorization',
'proxy-authorization',
'if-modified-since',
'if-unmodified-since',
'from',
'location',
'max-forwards',
'retry-after',
'etag',
'last-modified',
Expand All @@ -17,12 +30,14 @@ const norepeat = [
const server = http.createServer(function(req, res) {
var num = req.headers['x-num'];
if (num == 1) {
res.setHeader('content-length', [1, 2]);
for (const name of norepeat) {
res.setHeader(name, ['A', 'B']);
}
res.setHeader('X-A', ['A', 'B']);
} else if (num == 2) {
const headers = {};
headers['content-length'] = [1, 2];
for (const name of norepeat) {
headers[name] = ['A', 'B'];
}
Expand All @@ -44,6 +59,7 @@ server.listen(common.PORT, common.mustCall(function() {
{port:common.PORT, headers:{'x-num': n}},
common.mustCall(function(res) {
if (n == 2) server.close();
assert.equal(res.headers['content-length'], 1);
for (const name of norepeat) {
assert.equal(res.headers[name], 'A');
}
Expand Down

0 comments on commit 54aafa1

Please sign in to comment.