-
Notifications
You must be signed in to change notification settings - Fork 29.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Right now there are multiple cases where the validated entry would not be returned or a wrong error is thrown. This fixes both cases. PR-URL: #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>
- Loading branch information
Showing
11 changed files
with
178 additions
and
197 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
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
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
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
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 |
---|---|---|
@@ -1,57 +1,46 @@ | ||
'use strict'; | ||
|
||
const common = require('../common'); | ||
require('../common'); | ||
const assert = require('assert'); | ||
const fs = require('fs'); | ||
|
||
['', false, null, undefined, {}, [], Infinity, -1].forEach((i) => { | ||
common.expectsError( | ||
() => fs.fchown(i), | ||
{ | ||
code: 'ERR_INVALID_ARG_TYPE', | ||
type: TypeError, | ||
message: 'The "fd" argument must be of type integer' | ||
} | ||
); | ||
common.expectsError( | ||
() => fs.fchownSync(i), | ||
{ | ||
code: 'ERR_INVALID_ARG_TYPE', | ||
type: TypeError, | ||
message: 'The "fd" argument must be of type integer' | ||
} | ||
); | ||
function test(input, errObj) { | ||
assert.throws(() => fs.fchown(input), errObj); | ||
assert.throws(() => fs.fchownSync(input), errObj); | ||
errObj.message = errObj.message.replace('fd', 'uid'); | ||
assert.throws(() => fs.fchown(1, input), errObj); | ||
assert.throws(() => fs.fchownSync(1, input), errObj); | ||
errObj.message = errObj.message.replace('uid', 'gid'); | ||
assert.throws(() => fs.fchown(1, 1, input), errObj); | ||
assert.throws(() => fs.fchownSync(1, 1, input), errObj); | ||
} | ||
|
||
common.expectsError( | ||
() => fs.fchown(1, i), | ||
{ | ||
code: 'ERR_INVALID_ARG_TYPE', | ||
type: TypeError, | ||
message: 'The "uid" argument must be of type integer' | ||
} | ||
); | ||
common.expectsError( | ||
() => fs.fchownSync(1, i), | ||
{ | ||
code: 'ERR_INVALID_ARG_TYPE', | ||
type: TypeError, | ||
message: 'The "uid" argument must be of type integer' | ||
} | ||
); | ||
['', false, null, undefined, {}, []].forEach((input) => { | ||
const errObj = { | ||
code: 'ERR_INVALID_ARG_TYPE', | ||
name: 'TypeError [ERR_INVALID_ARG_TYPE]', | ||
message: 'The "fd" argument must be of type number. Received type ' + | ||
typeof input | ||
}; | ||
test(input, errObj); | ||
}); | ||
|
||
[Infinity, NaN].forEach((input) => { | ||
const errObj = { | ||
code: 'ERR_OUT_OF_RANGE', | ||
name: 'RangeError [ERR_OUT_OF_RANGE]', | ||
message: 'The value of "fd" is out of range. It must be an integer. ' + | ||
`Received ${input}` | ||
}; | ||
test(input, errObj); | ||
}); | ||
|
||
common.expectsError( | ||
() => fs.fchown(1, 1, i), | ||
{ | ||
code: 'ERR_INVALID_ARG_TYPE', | ||
type: TypeError, | ||
message: 'The "gid" argument must be of type integer' | ||
} | ||
); | ||
common.expectsError( | ||
() => fs.fchownSync(1, 1, i), | ||
{ | ||
code: 'ERR_INVALID_ARG_TYPE', | ||
type: TypeError, | ||
message: 'The "gid" argument must be of type integer' | ||
} | ||
); | ||
[-1, 2 ** 32].forEach((input) => { | ||
const errObj = { | ||
code: 'ERR_OUT_OF_RANGE', | ||
name: 'RangeError [ERR_OUT_OF_RANGE]', | ||
message: 'The value of "fd" is out of range. It must be ' + | ||
`>= 0 && < 4294967296. Received ${input}` | ||
}; | ||
test(input, errObj); | ||
}); |
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
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
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
Oops, something went wrong.