2014-05-23 20:53:50 +00:00
|
|
|
var Filer = require('../..');
|
|
|
|
var util = require('../lib/test-utils.js');
|
|
|
|
var expect = require('chai').expect;
|
2013-11-27 17:18:09 +00:00
|
|
|
|
2014-05-23 20:53:50 +00:00
|
|
|
describe('fs.readdir', function() {
|
|
|
|
beforeEach(util.setup);
|
|
|
|
afterEach(util.cleanup);
|
2013-11-27 17:18:09 +00:00
|
|
|
|
2014-05-23 20:53:50 +00:00
|
|
|
it('should be a function', function() {
|
|
|
|
var fs = util.fs();
|
|
|
|
expect(fs.readdir).to.be.a('function');
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should return an error if the path does not exist', function(done) {
|
|
|
|
var fs = util.fs();
|
|
|
|
|
|
|
|
fs.readdir('/tmp/mydir', function(error, files) {
|
|
|
|
expect(error).to.exist;
|
|
|
|
expect(error.code).to.equal("ENOENT");
|
|
|
|
expect(files).not.to.exist;
|
|
|
|
done();
|
2013-11-27 17:18:09 +00:00
|
|
|
});
|
2014-05-23 20:53:50 +00:00
|
|
|
});
|
2013-11-27 17:18:09 +00:00
|
|
|
|
2014-05-23 20:53:50 +00:00
|
|
|
it('should return a list of files from an existing directory', function(done) {
|
|
|
|
var fs = util.fs();
|
2013-11-27 17:18:09 +00:00
|
|
|
|
2014-05-23 20:53:50 +00:00
|
|
|
fs.mkdir('/tmp', function(error) {
|
|
|
|
if(error) throw error;
|
|
|
|
|
|
|
|
fs.readdir('/', function(error, files) {
|
|
|
|
expect(error).not.to.exist;
|
|
|
|
expect(files).to.exist;
|
|
|
|
expect(files.length).to.equal(1);
|
|
|
|
expect(files[0]).to.equal('tmp');
|
2014-01-21 21:25:09 +00:00
|
|
|
done();
|
2013-11-27 17:18:09 +00:00
|
|
|
});
|
|
|
|
});
|
2014-05-23 20:53:50 +00:00
|
|
|
});
|
2013-11-27 17:18:09 +00:00
|
|
|
|
2014-05-23 20:53:50 +00:00
|
|
|
it('should follow symbolic links', function(done) {
|
|
|
|
var fs = util.fs();
|
2013-11-27 17:18:09 +00:00
|
|
|
|
2014-05-23 20:53:50 +00:00
|
|
|
fs.mkdir('/tmp', function(error) {
|
|
|
|
if(error) throw error;
|
|
|
|
fs.symlink('/', '/tmp/dirLink', function(error) {
|
2014-01-21 21:25:09 +00:00
|
|
|
if(error) throw error;
|
2014-05-23 20:53:50 +00:00
|
|
|
fs.readdir('/tmp/dirLink', function(error, files) {
|
2014-01-21 21:25:09 +00:00
|
|
|
expect(error).not.to.exist;
|
|
|
|
expect(files).to.exist;
|
|
|
|
expect(files.length).to.equal(1);
|
|
|
|
expect(files[0]).to.equal('tmp');
|
|
|
|
done();
|
2013-11-27 17:18:09 +00:00
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2014-05-23 20:53:50 +00:00
|
|
|
});
|