Skip to content

Commit

Permalink
fs: make mutating options in readdir() not affect results
Browse files Browse the repository at this point in the history
  • Loading branch information
LiviaMedeiros committed Nov 28, 2024
1 parent 1919560 commit 5dcdd50
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 0 deletions.
4 changes: 4 additions & 0 deletions lib/internal/fs/promises.js
Original file line number Diff line number Diff line change
Expand Up @@ -944,6 +944,10 @@ async function readdirRecursive(originalPath, options) {

async function readdir(path, options) {
options = getOptions(options);

// Make shallow copy to prevent mutating options from affecting results
options = copyObject(options);

path = getValidatedPath(path);
if (options.recursive) {
return readdirRecursive(path, options);
Expand Down
16 changes: 16 additions & 0 deletions test/parallel/test-fs-readdir-types.js
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,22 @@ fs.readdir(readdirDir, {
assertDirents(dirents);
})().then(common.mustCall());

// Check that mutating options doesn't affect results
{
const options = { withFileTypes: true };
fs.readdir(readdirDir, options, common.mustSucceed((dirents) => {
assertDirents(dirents);
}));
options.withFileTypes = false;
}

(async () => {
const options = { withFileTypes: true };
const direntsPromise = fs.promises.readdir(readdirDir, options);
options.withFileTypes = false;
assertDirents(await direntsPromise);
})().then(common.mustCall());

// Check for correct types when the binding returns unknowns
const UNKNOWN = constants.UV_DIRENT_UNKNOWN;
const oldReaddir = binding.readdir;
Expand Down

0 comments on commit 5dcdd50

Please sign in to comment.