mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
1e4187fcf4
Refs: https://github.com/nodejs/node/issues/29829 PR-URL: https://github.com/nodejs/node/pull/33161 Reviewed-By: Robert Nagy <ronagy@icloud.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com> Reviewed-By: Denys Otrishko <shishugi@gmail.com>
62 lines
1.6 KiB
JavaScript
62 lines
1.6 KiB
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
if (!common.hasCrypto) { common.skip('missing crypto'); }
|
|
const assert = require('assert');
|
|
const http2 = require('http2');
|
|
|
|
const server1 = http2.createServer();
|
|
|
|
server1.listen(0, common.mustCall(() => {
|
|
const session = http2.connect(`http://localhost:${server1.address().port}`);
|
|
// Check for req headers
|
|
assert.throws(() => {
|
|
session.request({ 'no underscore': 123 });
|
|
}, {
|
|
code: 'ERR_INVALID_HTTP_TOKEN'
|
|
});
|
|
session.on('error', common.mustCall((e) => {
|
|
assert.strictEqual(e.code, 'ERR_INVALID_HTTP_TOKEN');
|
|
server1.close();
|
|
}));
|
|
}));
|
|
|
|
const server2 = http2.createServer(common.mustCall((req, res) => {
|
|
// check for setHeader
|
|
assert.throws(() => {
|
|
res.setHeader('x y z', 123);
|
|
}, {
|
|
code: 'ERR_INVALID_HTTP_TOKEN'
|
|
});
|
|
res.end();
|
|
}));
|
|
|
|
server2.listen(0, common.mustCall(() => {
|
|
const session = http2.connect(`http://localhost:${server2.address().port}`);
|
|
const req = session.request();
|
|
req.on('end', common.mustCall(() => {
|
|
session.close();
|
|
server2.close();
|
|
}));
|
|
}));
|
|
|
|
const server3 = http2.createServer(common.mustCall((req, res) => {
|
|
// check for writeHead
|
|
assert.throws(common.mustCall(() => {
|
|
res.writeHead(200, {
|
|
'an invalid header': 123
|
|
});
|
|
}), {
|
|
code: 'ERR_INVALID_HTTP_TOKEN'
|
|
});
|
|
res.end();
|
|
}));
|
|
|
|
server3.listen(0, common.mustCall(() => {
|
|
const session = http2.connect(`http://localhost:${server3.address().port}`);
|
|
const req = session.request();
|
|
req.on('end', common.mustCall(() => {
|
|
server3.close();
|
|
session.close();
|
|
}));
|
|
}));
|