diff options
author | James M Snell <jasnell@gmail.com> | 2017-12-13 14:24:34 -0800 |
---|---|---|
committer | James M Snell <jasnell@gmail.com> | 2017-12-22 12:49:10 -0800 |
commit | 6100e12667429acad1827b6d918e512e55a7a6a7 (patch) | |
tree | 4fac815add3abf5d54112723798ecc78cb3e06fa /test/parallel/test-fs-copyfile.js | |
parent | 92fc14a4595d460394cad8ad5a091dcc450068a5 (diff) | |
download | node-new-6100e12667429acad1827b6d918e512e55a7a6a7.tar.gz |
fs: move type checking to js
PR-URL: https://github.com/nodejs/node/pull/17667
Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Diffstat (limited to 'test/parallel/test-fs-copyfile.js')
-rw-r--r-- | test/parallel/test-fs-copyfile.js | 38 |
1 files changed, 30 insertions, 8 deletions
diff --git a/test/parallel/test-fs-copyfile.js b/test/parallel/test-fs-copyfile.js index 2977a59847..bfda5ccfd7 100644 --- a/test/parallel/test-fs-copyfile.js +++ b/test/parallel/test-fs-copyfile.js @@ -70,9 +70,36 @@ common.expectsError(() => { }); // Throws if the source path is not a string. -assert.throws(() => { - fs.copyFileSync(null, dest); -}, /^TypeError: src must be a string$/); +[false, 1, {}, [], null, undefined].forEach((i) => { + common.expectsError( + () => fs.copyFile(i, dest, common.mustNotCall()), + { + code: 'ERR_INVALID_ARG_TYPE', + type: TypeError + } + ); + common.expectsError( + () => fs.copyFile(src, i, common.mustNotCall()), + { + code: 'ERR_INVALID_ARG_TYPE', + type: TypeError + } + ); + common.expectsError( + () => fs.copyFileSync(i, dest), + { + code: 'ERR_INVALID_ARG_TYPE', + type: TypeError + } + ); + common.expectsError( + () => fs.copyFileSync(src, i), + { + code: 'ERR_INVALID_ARG_TYPE', + type: TypeError + } + ); +}); // Throws if the source path is an invalid path. common.expectsError(() => { @@ -84,11 +111,6 @@ common.expectsError(() => { ' Received type string' }); -// Throws if the destination path is not a string. -assert.throws(() => { - fs.copyFileSync(src, null); -}, /^TypeError: dest must be a string$/); - // Throws if the destination path is an invalid path. common.expectsError(() => { fs.copyFileSync(src, '\u0000'); |