diff options
author | ZYSzys <zyszys98@gmail.com> | 2019-11-19 15:38:25 +0800 |
---|---|---|
committer | ZYSzys <zyszys98@gmail.com> | 2019-11-21 17:30:13 +0800 |
commit | 52e1bbde01e1f35b13a9a14a2d428fd318c7ef4a (patch) | |
tree | ce36d7760f61e90e08b3e32c339b07ec51fa0518 /test/parallel/test-http2-createserver-options.js | |
parent | 8138e9ce508df75a9bef66dcbb7389bfceb71c23 (diff) | |
download | node-new-52e1bbde01e1f35b13a9a14a2d428fd318c7ef4a.tar.gz |
test: add test for options validation of createServer
PR-URL: https://github.com/nodejs/node/pull/30541
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Diffstat (limited to 'test/parallel/test-http2-createserver-options.js')
-rw-r--r-- | test/parallel/test-http2-createserver-options.js | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/test/parallel/test-http2-createserver-options.js b/test/parallel/test-http2-createserver-options.js new file mode 100644 index 0000000000..d322506f55 --- /dev/null +++ b/test/parallel/test-http2-createserver-options.js @@ -0,0 +1,35 @@ +'use strict'; + +const common = require('../common'); +if (!common.hasCrypto) + common.skip('missing crypto'); + +const assert = require('assert'); +const http2 = require('http2'); + +// Error if invalid options are passed to createServer +const invalidOptions = [1, true, 'test', null, Symbol('test')]; +invalidOptions.forEach((invalidOption) => { + assert.throws( + () => http2.createServer(invalidOption), + { + name: 'TypeError', + code: 'ERR_INVALID_ARG_TYPE', + message: 'The "options" argument must be of type Object. Received ' + + `type ${typeof invalidOption}` + } + ); +}); + +// Error if invalid options.settings are passed to createServer +invalidOptions.forEach((invalidSettingsOption) => { + assert.throws( + () => http2.createServer({ settings: invalidSettingsOption }), + { + name: 'TypeError', + code: 'ERR_INVALID_ARG_TYPE', + message: 'The "options.settings" property must be of type Object. ' + + `Received type ${typeof invalidSettingsOption}` + } + ); +}); |