Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion lib/internal/http2/compat.js
Original file line number Diff line number Diff line change
Expand Up @@ -921,7 +921,11 @@ class Http2ServerResponse extends Stream {

for (const key of ObjectKeys(hints)) {
if (key !== 'link') {
headers[key] = hints[key];
const name = key.trim().toLowerCase();
assertValidHeader(name, hints[key]);
if (!checkIsHttpToken(name))
throw new ERR_INVALID_HTTP_TOKEN('Header name', name);
headers[name] = hints[key];
}
}

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
'use strict';

const common = require('../common');
if (!common.hasCrypto) common.skip('missing crypto');

const assert = require('node:assert');
const http2 = require('node:http2');
const debug = require('node:util').debuglog('test');

const testResBody = 'response content';

{
const server = http2.createServer();

server.on('request', common.mustCall((req, res) => {
debug('Server sending early hints...');

assert.throws(() => {
res.writeEarlyHints({
'link': '</styles.css>; rel=preload; as=style',
'x\rbad': 'value',
});
}, (err) => err.code === 'ERR_INVALID_HTTP_TOKEN');

assert.throws(() => {
res.writeEarlyHints({
'link': '</styles.css>; rel=preload; as=style',
'x-custom': undefined,
});
}, (err) => err.code === 'ERR_HTTP2_INVALID_HEADER_VALUE');

debug('Server sending full response...');
res.end(testResBody);
}));

server.listen(0);

server.on('listening', common.mustCall(() => {
const client = http2.connect(`http://localhost:${server.address().port}`);
const req = client.request();

debug('Client sending request...');

req.on('headers', common.mustNotCall());

req.on('response', common.mustCall((headers) => {
assert.strictEqual(headers[':status'], 200);
}));

let data = '';
req.on('data', common.mustCallAtLeast((d) => data += d));

req.on('end', common.mustCall(() => {
debug('Got full response.');
assert.strictEqual(data, testResBody);
client.close();
server.close();
}));
}));
}
Loading