%PDF- <> %âãÏÓ endobj 2 0 obj <> endobj 3 0 obj <>/ExtGState<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI] >>/Annots[ 28 0 R 29 0 R] /MediaBox[ 0 0 595.5 842.25] /Contents 4 0 R/Group<>/Tabs/S>> endobj ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<> endobj 2 0 obj<>endobj 2 0 obj<>es 3 0 R>> endobj 2 0 obj<> ox[ 0.000000 0.000000 609.600000 935.600000]/Fi endobj 3 0 obj<> endobj 7 1 obj<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]>>/Subtype/Form>> stream
'use strict'; const common = require('../common'); if (!common.hasCrypto) common.skip('missing crypto'); const assert = require('assert'); const h2 = require('http2'); const { inspect } = require('util'); const server = h2.createServer(); // We use the lower-level API here 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)); })); server.listen(0, common.mustCall(() => { const client = h2.connect(`http://localhost:${server.address().port}`); [ ['headerTableSize', -1, RangeError], ['headerTableSize', 2 ** 32, RangeError], ['initialWindowSize', -1, RangeError], ['initialWindowSize', 2 ** 32, RangeError], ['maxFrameSize', 1, RangeError], ['maxFrameSize', 2 ** 24, RangeError], ['maxConcurrentStreams', -1, RangeError], ['maxConcurrentStreams', 2 ** 32, RangeError], ['maxHeaderListSize', -1, RangeError], ['maxHeaderListSize', 2 ** 32, RangeError], ['maxHeaderSize', -1, RangeError], ['maxHeaderSize', 2 ** 32, RangeError], ['enablePush', 'a', TypeError], ['enablePush', 1, TypeError], ['enablePush', 0, TypeError], ['enablePush', null, TypeError], ['enablePush', {}, TypeError], ].forEach(([name, value, errorType]) => assert.throws( () => client.settings({ [name]: value }), { code: 'ERR_HTTP2_INVALID_SETTING_VALUE', name: errorType.name } ) ); [1, true, {}, []].forEach((invalidCallback) => assert.throws( () => client.settings({}, invalidCallback), { name: 'TypeError', code: 'ERR_INVALID_CALLBACK', message: `Callback must be a function. Received ${inspect(invalidCallback)}` } ) ); client.settings({ maxFrameSize: 1234567 }); const req = client.request(); req.on('response', common.mustCall()); req.resume(); req.on('close', common.mustCall(() => { server.close(); client.close(); })); }));