mirror of
https://github.com/nodejs/node.git
synced 2025-05-03 13:28:42 +00:00

Make changes so that tests will pass when the comma-dangle settings applied to the rest of the code base are also applied to tests. PR-URL: https://github.com/nodejs/node/pull/37930 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Derek Lewis <DerekNonGeneric@inf.is>
51 lines
1.1 KiB
JavaScript
51 lines
1.1 KiB
JavaScript
'use strict';
|
|
|
|
const common = require('../common');
|
|
if (!common.hasCrypto)
|
|
common.skip('missing crypto');
|
|
const assert = require('assert');
|
|
const h2 = require('http2');
|
|
|
|
const server = h2.createServer();
|
|
|
|
server.on('stream', common.mustCall((stream) => {
|
|
[
|
|
':path',
|
|
':authority',
|
|
':method',
|
|
':scheme',
|
|
].forEach((i) => {
|
|
assert.throws(() => stream.respond({ [i]: '/' }),
|
|
{
|
|
code: 'ERR_HTTP2_INVALID_PSEUDOHEADER'
|
|
});
|
|
});
|
|
|
|
stream.respond({}, { waitForTrailers: true });
|
|
|
|
stream.on('wantTrailers', () => {
|
|
assert.throws(() => {
|
|
stream.sendTrailers({ ':status': 'bar' });
|
|
}, {
|
|
code: 'ERR_HTTP2_INVALID_PSEUDOHEADER'
|
|
});
|
|
stream.close();
|
|
});
|
|
|
|
stream.end('hello world');
|
|
}));
|
|
|
|
|
|
server.listen(0, common.mustCall(() => {
|
|
const client = h2.connect(`http://localhost:${server.address().port}`);
|
|
const req = client.request();
|
|
|
|
req.on('response', common.mustCall());
|
|
req.resume();
|
|
req.on('end', common.mustCall());
|
|
req.on('close', common.mustCall(() => {
|
|
server.close();
|
|
client.close();
|
|
}));
|
|
}));
|