mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
940 B
35 lines
940 B
'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.deepEqual(files, fs.readdirSync(readdirDir).sort());
|
|
|
|
// Check the readdir async version
|
|
fs.readdir(readdirDir, common.mustCall(function(err, f) {
|
|
assert.ifError(err);
|
|
assert.deepEqual(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.equal(e.code, 'ENOTDIR');
|
|
}));
|
|
|