-
Notifications
You must be signed in to change notification settings - Fork 29.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fs: fix readdir failure when libuv returns UV_DIRENT_UNKNOWN
Fixes: #33348 PR-URL: #33395 Refs: #33348 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: James M Snell <jasnell@gmail.com>
- Loading branch information
1 parent
b57778f
commit a76fa60
Showing
3 changed files
with
182 additions
and
3 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
'use strict'; | ||
const common = require('../common'); | ||
const fs = require('fs'); | ||
|
||
if (!common.isOSX) { | ||
common.skip('this tests works only on MacOS'); | ||
} | ||
|
||
const assert = require('assert'); | ||
|
||
fs.readdir( | ||
Buffer.from('/dev'), | ||
{ withFileTypes: true, encoding: 'buffer' }, | ||
common.mustCall((e, d) => { | ||
assert.strictEqual(e, null); | ||
}) | ||
); |
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,123 @@ | ||
// Flags: --expose-internals | ||
'use strict'; | ||
|
||
const common = require('../common'); | ||
const { getDirents, getDirent } = require('internal/fs/utils'); | ||
const assert = require('assert'); | ||
const { internalBinding } = require('internal/test/binding'); | ||
const { UV_DIRENT_UNKNOWN } = internalBinding('constants').fs; | ||
const fs = require('fs'); | ||
const path = require('path'); | ||
|
||
const tmpdir = require('../common/tmpdir'); | ||
const filename = 'foo'; | ||
|
||
{ | ||
// setup | ||
tmpdir.refresh(); | ||
fs.writeFileSync(path.join(tmpdir.path, filename), ''); | ||
} | ||
// getDirents | ||
{ | ||
// string + string | ||
getDirents( | ||
tmpdir.path, | ||
[[filename], [UV_DIRENT_UNKNOWN]], | ||
common.mustCall((err, names) => { | ||
assert.strictEqual(err, null); | ||
assert.strictEqual(names.length, 1); | ||
}, | ||
)); | ||
} | ||
{ | ||
// string + Buffer | ||
getDirents( | ||
tmpdir.path, | ||
[[Buffer.from(filename)], [UV_DIRENT_UNKNOWN]], | ||
common.mustCall((err, names) => { | ||
assert.strictEqual(err, null); | ||
assert.strictEqual(names.length, 1); | ||
}, | ||
)); | ||
} | ||
{ | ||
// Buffer + Buffer | ||
getDirents( | ||
Buffer.from(tmpdir.path), | ||
[[Buffer.from(filename)], [UV_DIRENT_UNKNOWN]], | ||
common.mustCall((err, names) => { | ||
assert.strictEqual(err, null); | ||
assert.strictEqual(names.length, 1); | ||
}, | ||
)); | ||
} | ||
{ | ||
// wrong combination | ||
getDirents( | ||
42, | ||
[[Buffer.from(filename)], [UV_DIRENT_UNKNOWN]], | ||
common.mustCall((err) => { | ||
assert.strictEqual( | ||
err.message, | ||
[ | ||
'The "path" argument must be of type string or an ' + | ||
'instance of Buffer. Received type number (42)' | ||
].join('')); | ||
}, | ||
)); | ||
} | ||
// getDirent | ||
{ | ||
// string + string | ||
getDirent( | ||
tmpdir.path, | ||
filename, | ||
UV_DIRENT_UNKNOWN, | ||
common.mustCall((err, dirent) => { | ||
assert.strictEqual(err, null); | ||
assert.strictEqual(dirent.name, filename); | ||
}, | ||
)); | ||
} | ||
{ | ||
// string + Buffer | ||
const filenameBuffer = Buffer.from(filename); | ||
getDirent( | ||
tmpdir.path, | ||
filenameBuffer, | ||
UV_DIRENT_UNKNOWN, | ||
common.mustCall((err, dirent) => { | ||
assert.strictEqual(err, null); | ||
assert.strictEqual(dirent.name, filenameBuffer); | ||
}, | ||
)); | ||
} | ||
{ | ||
// Buffer + Buffer | ||
const filenameBuffer = Buffer.from(filename); | ||
getDirent( | ||
Buffer.from(tmpdir.path), | ||
filenameBuffer, | ||
UV_DIRENT_UNKNOWN, | ||
common.mustCall((err, dirent) => { | ||
assert.strictEqual(err, null); | ||
assert.strictEqual(dirent.name, filenameBuffer); | ||
}, | ||
)); | ||
} | ||
{ | ||
// wrong combination | ||
getDirent( | ||
42, | ||
Buffer.from(filename), | ||
UV_DIRENT_UNKNOWN, | ||
common.mustCall((err) => { | ||
assert.strictEqual( | ||
err.message, | ||
[ | ||
'The "path" argument must be of type string or an ' + | ||
'instance of Buffer. Received type number (42)' | ||
].join('')); | ||
}, | ||
)); | ||
} |