-
Notifications
You must be signed in to change notification settings - Fork 29.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
http2: adjust error types, test coverage
Change error types emitted from request and validatePriorityOptions to be TypeError rather than the incorrect RangeError. Add tests to confirm that all errors are thrown as expected (weight, parent, exclusive, silent, endStream and getTrailers). Add test for method CONNECT throwing error on missing :authority or superfluous :scheme and :path. PR-URL: #15109 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
- Loading branch information
1 parent
e3e9e50
commit fd51cb8
Showing
3 changed files
with
114 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
// Flags: --expose-http2 | ||
'use strict'; | ||
|
||
const common = require('../common'); | ||
if (!common.hasCrypto) | ||
common.skip('missing crypto'); | ||
const assert = require('assert'); | ||
const http2 = require('http2'); | ||
|
||
// Check if correct errors are emitted when wrong type of data is passed | ||
// to certain options of ClientHttp2Session request method | ||
|
||
const optionsToTest = { | ||
endStream: 'boolean', | ||
getTrailers: 'function', | ||
weight: 'number', | ||
parent: 'number', | ||
exclusive: 'boolean', | ||
silent: 'boolean' | ||
}; | ||
|
||
const types = { | ||
boolean: true, | ||
function: () => {}, | ||
number: 1, | ||
object: {}, | ||
array: [], | ||
null: null, | ||
symbol: Symbol('test') | ||
}; | ||
|
||
const server = http2.createServer(common.mustNotCall()); | ||
|
||
server.listen(0, common.mustCall(() => { | ||
const port = server.address().port; | ||
const client = http2.connect(`http://localhost:${port}`); | ||
|
||
Object.keys(optionsToTest).forEach((option) => { | ||
Object.keys(types).forEach((type) => { | ||
if (type === optionsToTest[option]) { | ||
return; | ||
} | ||
|
||
assert.throws( | ||
() => client.request({ | ||
':method': 'CONNECT', | ||
':authority': `localhost:${port}` | ||
}, { | ||
[option]: types[type] | ||
}), | ||
common.expectsError({ | ||
type: TypeError, | ||
code: 'ERR_INVALID_OPT_VALUE', | ||
message: `The value "${String(types[type])}" is invalid ` + | ||
`for option "${option}"` | ||
}) | ||
); | ||
}); | ||
}); | ||
|
||
server.close(); | ||
client.destroy(); | ||
})); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters