diff options
author | Ruben Bridgewater <ruben@bridgewater.de> | 2018-03-19 13:33:46 +0100 |
---|---|---|
committer | Ruben Bridgewater <ruben@bridgewater.de> | 2018-03-25 01:45:37 +0100 |
commit | c6b6c92185316e13738e6fa931fdd5303e381e46 (patch) | |
tree | c38af9cd1a0a8cd6eeb459af3adee4dfd390fdc6 /test/parallel/test-crypto-pbkdf2.js | |
parent | eeb57022e6bada13955a19b15232a9ee4fe9b465 (diff) | |
download | node-new-c6b6c92185316e13738e6fa931fdd5303e381e46.tar.gz |
lib: always show ERR_INVALID_ARG_TYPE received part
This makes a effort to make sure all of these errors will actually
also show the received input.
On top of that it refactors a few tests for better maintainability.
It will also change the returned type to always be a simple typeof
instead of special handling null.
PR-URL: https://github.com/nodejs/node/pull/19445
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Diffstat (limited to 'test/parallel/test-crypto-pbkdf2.js')
-rw-r--r-- | test/parallel/test-crypto-pbkdf2.js | 37 |
1 files changed, 19 insertions, 18 deletions
diff --git a/test/parallel/test-crypto-pbkdf2.js b/test/parallel/test-crypto-pbkdf2.js index c72551016d..d3f02cf8bd 100644 --- a/test/parallel/test-crypto-pbkdf2.js +++ b/test/parallel/test-crypto-pbkdf2.js @@ -82,7 +82,8 @@ common.expectsError( }, { code: 'ERR_INVALID_ARG_TYPE', type: TypeError, - message: 'The "keylen" argument must be of type number' + message: 'The "keylen" argument must be of type number. ' + + `Received type ${typeof notNumber}` }); }); @@ -107,7 +108,8 @@ common.expectsError( { code: 'ERR_INVALID_ARG_TYPE', type: TypeError, - message: 'The "digest" argument must be one of type string or null' + message: 'The "digest" argument must be one of type string or null. ' + + 'Received type undefined' }); common.expectsError( @@ -115,58 +117,57 @@ common.expectsError( { code: 'ERR_INVALID_ARG_TYPE', type: TypeError, - message: 'The "digest" argument must be one of type string or null' + message: 'The "digest" argument must be one of type string or null. ' + + 'Received type undefined' }); -[1, {}, [], true, undefined, null].forEach((i) => { +[1, {}, [], true, undefined, null].forEach((input) => { + const msgPart2 = `Buffer, or TypedArray. Received type ${typeof input}`; common.expectsError( - () => crypto.pbkdf2(i, 'salt', 8, 8, 'sha256', common.mustNotCall()), + () => crypto.pbkdf2(input, 'salt', 8, 8, 'sha256', common.mustNotCall()), { code: 'ERR_INVALID_ARG_TYPE', type: TypeError, - message: 'The "password" argument must be one of type string, ' + - 'Buffer, or TypedArray' + message: `The "password" argument must be one of type string, ${msgPart2}` } ); common.expectsError( - () => crypto.pbkdf2('pass', i, 8, 8, 'sha256', common.mustNotCall()), + () => crypto.pbkdf2('pass', input, 8, 8, 'sha256', common.mustNotCall()), { code: 'ERR_INVALID_ARG_TYPE', type: TypeError, - message: 'The "salt" argument must be one of type string, ' + - 'Buffer, or TypedArray' + message: `The "salt" argument must be one of type string, ${msgPart2}` } ); common.expectsError( - () => crypto.pbkdf2Sync(i, 'salt', 8, 8, 'sha256'), + () => crypto.pbkdf2Sync(input, 'salt', 8, 8, 'sha256'), { code: 'ERR_INVALID_ARG_TYPE', type: TypeError, - message: 'The "password" argument must be one of type string, ' + - 'Buffer, or TypedArray' + message: `The "password" argument must be one of type string, ${msgPart2}` } ); common.expectsError( - () => crypto.pbkdf2Sync('pass', i, 8, 8, 'sha256'), + () => crypto.pbkdf2Sync('pass', input, 8, 8, 'sha256'), { code: 'ERR_INVALID_ARG_TYPE', type: TypeError, - message: 'The "salt" argument must be one of type string, ' + - 'Buffer, or TypedArray' + message: `The "salt" argument must be one of type string, ${msgPart2}` } ); }); ['test', {}, [], true, undefined, null].forEach((i) => { + const received = `Received type ${typeof i}`; common.expectsError( () => crypto.pbkdf2('pass', 'salt', i, 8, 'sha256', common.mustNotCall()), { code: 'ERR_INVALID_ARG_TYPE', type: TypeError, - message: 'The "iterations" argument must be of type number' + message: `The "iterations" argument must be of type number. ${received}` } ); @@ -175,7 +176,7 @@ common.expectsError( { code: 'ERR_INVALID_ARG_TYPE', type: TypeError, - message: 'The "iterations" argument must be of type number' + message: `The "iterations" argument must be of type number. ${received}` } ); }); |