mirror of
https://github.com/nodejs/node.git
synced 2025-05-07 12:03:30 +00:00

Adds Http2ServerRequest trailers & rawTrailers functionality. Also fixes behaviour of multi-headers to conform with the spec (all values but set-cookie and cookie should be comma delimited, cookie should be semi-colon delimited and only set-cookie should be an array). Adds setter for statusMessage that warns, for backwards compatibility. End readable side of the stream on trailers or bodyless requests Refs: https://github.com/expressjs/express/pull/3390#discussion_r136718729 PR-URL: https://github.com/nodejs/node/pull/15193 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
51 lines
1.1 KiB
JavaScript
51 lines
1.1 KiB
JavaScript
// Flags: --expose-http2
|
|
'use strict';
|
|
|
|
const common = require('../common');
|
|
if (!common.hasCrypto)
|
|
common.skip('missing crypto');
|
|
const assert = require('assert');
|
|
const http2 = require('http2');
|
|
|
|
const server = http2.createServer();
|
|
|
|
const src = Object.create(null);
|
|
src['www-authenticate'] = 'foo';
|
|
src['WWW-Authenticate'] = 'bar';
|
|
src['WWW-AUTHENTICATE'] = 'baz';
|
|
src['test'] = 'foo, bar, baz';
|
|
|
|
server.on('stream', common.mustCall((stream, headers, flags, rawHeaders) => {
|
|
const expected = [
|
|
':path',
|
|
'/',
|
|
':scheme',
|
|
'http',
|
|
':authority',
|
|
`localhost:${server.address().port}`,
|
|
':method',
|
|
'GET',
|
|
'www-authenticate',
|
|
'foo',
|
|
'www-authenticate',
|
|
'bar',
|
|
'www-authenticate',
|
|
'baz',
|
|
'test',
|
|
'foo, bar, baz'
|
|
];
|
|
|
|
assert.deepStrictEqual(expected, rawHeaders);
|
|
stream.respond(src);
|
|
stream.end();
|
|
}));
|
|
|
|
server.listen(0, common.mustCall(() => {
|
|
const client = http2.connect(`http://localhost:${server.address().port}`);
|
|
const req = client.request(src);
|
|
req.on('streamClosed', common.mustCall(() => {
|
|
server.close();
|
|
client.destroy();
|
|
}));
|
|
}));
|