mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
6100e12667
PR-URL: https://github.com/nodejs/node/pull/17667 Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
53 lines
1.3 KiB
JavaScript
53 lines
1.3 KiB
JavaScript
'use strict';
|
|
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
const fs = require('fs');
|
|
|
|
const readdirDir = common.tmpDir;
|
|
const files = ['empty', 'files', 'for', 'just', 'testing'];
|
|
|
|
// Make sure tmp directory is clean
|
|
common.refreshTmpDir();
|
|
|
|
// Create the necessary files
|
|
files.forEach(function(currentFile) {
|
|
fs.closeSync(fs.openSync(`${readdirDir}/${currentFile}`, 'w'));
|
|
});
|
|
|
|
// Check the readdir Sync version
|
|
assert.deepStrictEqual(files, fs.readdirSync(readdirDir).sort());
|
|
|
|
// Check the readdir async version
|
|
fs.readdir(readdirDir, common.mustCall(function(err, f) {
|
|
assert.ifError(err);
|
|
assert.deepStrictEqual(files, f.sort());
|
|
}));
|
|
|
|
// readdir() on file should throw ENOTDIR
|
|
// https://github.com/joyent/node/issues/1869
|
|
assert.throws(function() {
|
|
fs.readdirSync(__filename);
|
|
}, /Error: ENOTDIR: not a directory/);
|
|
|
|
fs.readdir(__filename, common.mustCall(function(e) {
|
|
assert.strictEqual(e.code, 'ENOTDIR');
|
|
}));
|
|
|
|
[false, 1, [], {}, null, undefined].forEach((i) => {
|
|
common.expectsError(
|
|
() => fs.readdir(i, common.mustNotCall()),
|
|
{
|
|
code: 'ERR_INVALID_ARG_TYPE',
|
|
type: TypeError
|
|
}
|
|
);
|
|
common.expectsError(
|
|
() => fs.readdirSync(i),
|
|
{
|
|
code: 'ERR_INVALID_ARG_TYPE',
|
|
type: TypeError
|
|
}
|
|
);
|
|
});
|