mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
49 lines
1.1 KiB
49 lines
1.1 KiB
'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();
|
|
}));
|
|
}));
|
|
|