summaryrefslogtreecommitdiff
path: root/test/parallel/test-http2-createsecureserver-options.js
diff options
context:
space:
mode:
authorZYSzys <zyszys98@gmail.com>2019-11-19 15:38:25 +0800
committerZYSzys <zyszys98@gmail.com>2019-11-21 17:30:13 +0800
commit52e1bbde01e1f35b13a9a14a2d428fd318c7ef4a (patch)
treece36d7760f61e90e08b3e32c339b07ec51fa0518 /test/parallel/test-http2-createsecureserver-options.js
parent8138e9ce508df75a9bef66dcbb7389bfceb71c23 (diff)
downloadandroid-node-v8-52e1bbde01e1f35b13a9a14a2d428fd318c7ef4a.tar.gz
android-node-v8-52e1bbde01e1f35b13a9a14a2d428fd318c7ef4a.tar.bz2
android-node-v8-52e1bbde01e1f35b13a9a14a2d428fd318c7ef4a.zip
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-createsecureserver-options.js')
-rw-r--r--test/parallel/test-http2-createsecureserver-options.js35
1 files changed, 35 insertions, 0 deletions
diff --git a/test/parallel/test-http2-createsecureserver-options.js b/test/parallel/test-http2-createsecureserver-options.js
new file mode 100644
index 0000000000..4ef85a45b5
--- /dev/null
+++ b/test/parallel/test-http2-createsecureserver-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 createSecureServer
+const invalidOptions = [() => {}, 1, 'test', null, Symbol('test')];
+invalidOptions.forEach((invalidOption) => {
+ assert.throws(
+ () => http2.createSecureServer(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 createSecureServer
+invalidOptions.forEach((invalidSettingsOption) => {
+ assert.throws(
+ () => http2.createSecureServer({ settings: invalidSettingsOption }),
+ {
+ name: 'TypeError',
+ code: 'ERR_INVALID_ARG_TYPE',
+ message: 'The "options.settings" property must be of type Object. ' +
+ `Received type ${typeof invalidSettingsOption}`
+ }
+ );
+});