-
Notifications
You must be signed in to change notification settings - Fork 30.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
uv_fs_lchown() exists, as of libuv 1.21.0. fs.lchown() can now be undeprecated. This commit also adds tests, as there were none. PR-URL: #21498 Fixes: #19868 Reviewed-By: Wyatt Preul <[email protected]>
- Loading branch information
Showing
9 changed files
with
140 additions
and
55 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
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 |
---|---|---|
@@ -0,0 +1,67 @@ | ||
'use strict'; | ||
|
||
const common = require('../common'); | ||
const tmpdir = require('../common/tmpdir'); | ||
const assert = require('assert'); | ||
const fs = require('fs'); | ||
const path = require('path'); | ||
const { promises } = fs; | ||
|
||
common.crashOnUnhandledRejection(); | ||
|
||
// Validate the path argument. | ||
[false, 1, {}, [], null, undefined].forEach((i) => { | ||
const err = { type: TypeError, code: 'ERR_INVALID_ARG_TYPE' }; | ||
|
||
common.expectsError(() => fs.lchown(i, 1, 1, common.mustNotCall()), err); | ||
common.expectsError(() => fs.lchownSync(i, 1, 1), err); | ||
promises.lchown(false, 1, 1) | ||
.then(common.mustNotCall()) | ||
.catch(common.expectsError(err)); | ||
}); | ||
|
||
// Validate the uid and gid arguments. | ||
[false, 'test', {}, [], null, undefined].forEach((i) => { | ||
const err = { type: TypeError, code: 'ERR_INVALID_ARG_TYPE' }; | ||
|
||
common.expectsError( | ||
() => fs.lchown('not_a_file_that_exists', i, 1, common.mustNotCall()), | ||
err | ||
); | ||
common.expectsError( | ||
() => fs.lchown('not_a_file_that_exists', 1, i, common.mustNotCall()), | ||
err | ||
); | ||
common.expectsError(() => fs.lchownSync('not_a_file_that_exists', i, 1), err); | ||
common.expectsError(() => fs.lchownSync('not_a_file_that_exists', 1, i), err); | ||
|
||
promises.lchown('not_a_file_that_exists', i, 1) | ||
.then(common.mustNotCall()) | ||
.catch(common.expectsError(err)); | ||
|
||
promises.lchown('not_a_file_that_exists', 1, i) | ||
.then(common.mustNotCall()) | ||
.catch(common.expectsError(err)); | ||
}); | ||
|
||
// Validate the callback argument. | ||
[false, 1, 'test', {}, [], null, undefined].forEach((i) => { | ||
common.expectsError(() => fs.lchown('not_a_file_that_exists', 1, 1, i), { | ||
type: TypeError, | ||
code: 'ERR_INVALID_CALLBACK' | ||
}); | ||
}); | ||
|
||
if (!common.isWindows) { | ||
const testFile = path.join(tmpdir.path, path.basename(__filename)); | ||
const uid = process.geteuid(); | ||
const gid = process.getegid(); | ||
|
||
tmpdir.refresh(); | ||
fs.copyFileSync(__filename, testFile); | ||
fs.lchownSync(testFile, uid, gid); | ||
fs.lchown(testFile, uid, gid, common.mustCall(async (err) => { | ||
assert.ifError(err); | ||
await promises.lchown(testFile, uid, gid); | ||
})); | ||
} |
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