summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorZYSzys <17367077526@163.com>2019-01-11 10:30:00 +0800
committerAnna Henningsen <anna@addaleax.net>2019-01-14 18:36:32 +0100
commit1c7b5db627a70b6ae1667a33a0a65ed5021c2dcf (patch)
tree8ce6ccbe3891c7893070b443e4ba1b7f0035ce6c /test
parent48f9b36459aa9d71b10f26471127cba2dc43042a (diff)
downloadandroid-node-v8-1c7b5db627a70b6ae1667a33a0a65ed5021c2dcf.tar.gz
android-node-v8-1c7b5db627a70b6ae1667a33a0a65ed5021c2dcf.tar.bz2
android-node-v8-1c7b5db627a70b6ae1667a33a0a65ed5021c2dcf.zip
test: add test for fs.lchmod
PR-URL: https://github.com/nodejs/node/pull/25439 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Masashi Hirano <shisama07@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
Diffstat (limited to 'test')
-rw-r--r--test/parallel/test-fs-lchmod.js67
1 files changed, 67 insertions, 0 deletions
diff --git a/test/parallel/test-fs-lchmod.js b/test/parallel/test-fs-lchmod.js
new file mode 100644
index 0000000000..3238790152
--- /dev/null
+++ b/test/parallel/test-fs-lchmod.js
@@ -0,0 +1,67 @@
+'use strict';
+
+const common = require('../common');
+const assert = require('assert');
+const util = require('util');
+const fs = require('fs');
+const { promises } = fs;
+const f = __filename;
+
+// This test ensures that input for lchmod is valid, testing for valid
+// inputs for path, mode and callback
+
+if (!common.isOSX) {
+ common.skip('lchmod is only available on macOS');
+}
+
+// Check callback
+assert.throws(() => fs.lchmod(f), { code: 'ERR_INVALID_CALLBACK' });
+assert.throws(() => fs.lchmod(), { code: 'ERR_INVALID_CALLBACK' });
+assert.throws(() => fs.lchmod(f, {}), { code: 'ERR_INVALID_CALLBACK' });
+
+// Check path
+[false, 1, {}, [], null, undefined].forEach((i) => {
+ common.expectsError(
+ () => fs.lchmod(i, 0o777, common.mustNotCall()),
+ {
+ code: 'ERR_INVALID_ARG_TYPE',
+ type: TypeError
+ }
+ );
+ common.expectsError(
+ () => fs.lchmodSync(i),
+ {
+ code: 'ERR_INVALID_ARG_TYPE',
+ type: TypeError
+ }
+ );
+});
+
+// Check mode
+[false, null, undefined, {}, [], '', '123x'].forEach((input) => {
+ const errObj = {
+ code: 'ERR_INVALID_ARG_VALUE',
+ name: 'TypeError [ERR_INVALID_ARG_VALUE]',
+ message: 'The argument \'mode\' must be a 32-bit unsigned integer or an ' +
+ `octal string. Received ${util.inspect(input)}`
+ };
+
+ promises.lchmod(f, input, () => {})
+ .then(common.mustNotCall())
+ .catch(common.expectsError(errObj));
+ assert.throws(() => fs.lchmodSync(f, input), errObj);
+});
+
+[-1, 2 ** 32].forEach((input) => {
+ const errObj = {
+ code: 'ERR_OUT_OF_RANGE',
+ name: 'RangeError [ERR_OUT_OF_RANGE]',
+ message: 'The value of "mode" is out of range. It must be >= 0 && < ' +
+ `4294967296. Received ${input}`
+ };
+
+ promises.lchmod(f, input, () => {})
+ .then(common.mustNotCall())
+ .catch(common.expectsError(errObj));
+ assert.throws(() => fs.lchmodSync(f, input), errObj);
+});