-
Notifications
You must be signed in to change notification settings - Fork 29.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
PR-URL: #25439 Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Masashi Hirano <[email protected]> Reviewed-By: James M Snell <[email protected]>
- Loading branch information
Showing
1 changed file
with
67 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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); | ||
}); |