2017-07-17 17:29:42 +00:00
|
|
|
'use strict';
|
|
|
|
|
|
|
|
const common = require('../common');
|
2017-08-07 05:54:44 +00:00
|
|
|
if (!common.hasCrypto)
|
|
|
|
common.skip('missing crypto');
|
2019-12-25 17:02:16 +00:00
|
|
|
const assert = require('assert');
|
2017-07-17 17:29:42 +00:00
|
|
|
const h2 = require('http2');
|
|
|
|
|
|
|
|
const server = h2.createServer();
|
|
|
|
|
2019-03-07 00:03:53 +00:00
|
|
|
// We use the lower-level API here
|
2017-12-12 19:34:17 +00:00
|
|
|
server.on('stream', common.mustCall((stream, headers, flags) => {
|
|
|
|
stream.respond();
|
|
|
|
stream.end('ok');
|
|
|
|
}));
|
|
|
|
server.on('session', common.mustCall((session) => {
|
|
|
|
session.on('remoteSettings', common.mustCall(2));
|
|
|
|
}));
|
2017-07-17 17:29:42 +00:00
|
|
|
|
2017-12-12 19:34:17 +00:00
|
|
|
server.listen(0, common.mustCall(() => {
|
2017-07-17 17:29:42 +00:00
|
|
|
const client = h2.connect(`http://localhost:${server.address().port}`);
|
|
|
|
|
2017-12-12 19:34:17 +00:00
|
|
|
[
|
|
|
|
['headerTableSize', -1, RangeError],
|
|
|
|
['headerTableSize', 2 ** 32, RangeError],
|
|
|
|
['initialWindowSize', -1, RangeError],
|
|
|
|
['initialWindowSize', 2 ** 32, RangeError],
|
|
|
|
['maxFrameSize', 1, RangeError],
|
|
|
|
['maxFrameSize', 2 ** 24, RangeError],
|
|
|
|
['maxConcurrentStreams', -1, RangeError],
|
2019-10-03 15:07:42 +00:00
|
|
|
['maxConcurrentStreams', 2 ** 32, RangeError],
|
2017-12-12 19:34:17 +00:00
|
|
|
['maxHeaderListSize', -1, RangeError],
|
|
|
|
['maxHeaderListSize', 2 ** 32, RangeError],
|
2020-05-29 10:12:31 +00:00
|
|
|
['maxHeaderSize', -1, RangeError],
|
|
|
|
['maxHeaderSize', 2 ** 32, RangeError],
|
2017-12-12 19:34:17 +00:00
|
|
|
['enablePush', 'a', TypeError],
|
|
|
|
['enablePush', 1, TypeError],
|
|
|
|
['enablePush', 0, TypeError],
|
|
|
|
['enablePush', null, TypeError],
|
2021-03-26 15:51:08 +00:00
|
|
|
['enablePush', {}, TypeError],
|
2018-02-18 07:47:24 +00:00
|
|
|
].forEach(([name, value, errorType]) =>
|
2019-12-25 17:02:16 +00:00
|
|
|
assert.throws(
|
2018-02-18 07:47:24 +00:00
|
|
|
() => client.settings({ [name]: value }),
|
2017-12-12 19:34:17 +00:00
|
|
|
{
|
|
|
|
code: 'ERR_HTTP2_INVALID_SETTING_VALUE',
|
2019-12-25 17:02:16 +00:00
|
|
|
name: errorType.name
|
2018-02-18 07:47:24 +00:00
|
|
|
}
|
|
|
|
)
|
|
|
|
);
|
|
|
|
|
2024-01-07 17:33:52 +00:00
|
|
|
assert.throws(
|
|
|
|
() => client.settings({ customSettings: {
|
|
|
|
0x11: 5,
|
|
|
|
0x12: 5,
|
|
|
|
0x13: 5,
|
|
|
|
0x14: 5,
|
|
|
|
0x15: 5,
|
|
|
|
0x16: 5,
|
|
|
|
0x17: 5,
|
|
|
|
0x18: 5,
|
|
|
|
0x19: 5,
|
|
|
|
0x1A: 5, // more than 10
|
|
|
|
0x1B: 5
|
|
|
|
} }),
|
|
|
|
{
|
|
|
|
code: 'ERR_HTTP2_TOO_MANY_CUSTOM_SETTINGS',
|
|
|
|
name: 'Error'
|
|
|
|
}
|
|
|
|
);
|
|
|
|
|
|
|
|
assert.throws(
|
|
|
|
() => client.settings({ customSettings: {
|
|
|
|
0x10000: 5,
|
|
|
|
} }),
|
|
|
|
{
|
|
|
|
code: 'ERR_HTTP2_INVALID_SETTING_VALUE',
|
|
|
|
name: 'RangeError'
|
|
|
|
}
|
|
|
|
);
|
|
|
|
|
|
|
|
assert.throws(
|
|
|
|
() => client.settings({ customSettings: {
|
|
|
|
0x55: 0x100000000,
|
|
|
|
} }),
|
|
|
|
{
|
|
|
|
code: 'ERR_HTTP2_INVALID_SETTING_VALUE',
|
|
|
|
name: 'RangeError'
|
|
|
|
}
|
|
|
|
);
|
|
|
|
|
|
|
|
assert.throws(
|
|
|
|
() => client.settings({ customSettings: {
|
|
|
|
0x55: -1,
|
|
|
|
} }),
|
|
|
|
{
|
|
|
|
code: 'ERR_HTTP2_INVALID_SETTING_VALUE',
|
|
|
|
name: 'RangeError'
|
|
|
|
}
|
|
|
|
);
|
|
|
|
|
2018-02-18 07:47:24 +00:00
|
|
|
[1, true, {}, []].forEach((invalidCallback) =>
|
2019-12-25 17:02:16 +00:00
|
|
|
assert.throws(
|
2018-02-18 07:47:24 +00:00
|
|
|
() => client.settings({}, invalidCallback),
|
|
|
|
{
|
2019-12-25 17:02:16 +00:00
|
|
|
name: 'TypeError',
|
2022-01-24 16:09:16 +00:00
|
|
|
code: 'ERR_INVALID_ARG_TYPE',
|
2018-02-18 07:47:24 +00:00
|
|
|
}
|
|
|
|
)
|
|
|
|
);
|
2017-07-17 17:29:42 +00:00
|
|
|
|
2024-01-07 17:33:52 +00:00
|
|
|
client.settings({ maxFrameSize: 1234567, customSettings: { 0xbf: 12 } });
|
2017-07-17 17:29:42 +00:00
|
|
|
|
2017-12-12 19:34:17 +00:00
|
|
|
const req = client.request();
|
2017-07-17 17:29:42 +00:00
|
|
|
req.on('response', common.mustCall());
|
|
|
|
req.resume();
|
2017-12-12 19:34:17 +00:00
|
|
|
req.on('close', common.mustCall(() => {
|
2017-07-17 17:29:42 +00:00
|
|
|
server.close();
|
2017-12-12 19:34:17 +00:00
|
|
|
client.close();
|
2017-07-17 17:29:42 +00:00
|
|
|
}));
|
|
|
|
}));
|