* issue 681 fix * issue 681 revision * issue 681 revision v2
This commit is contained in:
parent
3b4bf42604
commit
8eaaeeed17
|
@ -1,16 +1,17 @@
|
||||||
var Filer = require('../../src');
|
'use strict';
|
||||||
var util = require('../lib/test-utils.js');
|
const Filer = require('../../src');
|
||||||
var expect = require('chai').expect;
|
const util = require('../lib/test-utils.js');
|
||||||
|
const expect = require('chai').expect;
|
||||||
|
|
||||||
describe('Filer.FileSystem', function() {
|
describe('Filer.FileSystem', function() {
|
||||||
beforeEach(util.setup);
|
beforeEach(util.setup);
|
||||||
afterEach(util.cleanup);
|
afterEach(util.cleanup);
|
||||||
|
|
||||||
it('should properly mount new or existing filesystem', function(done) {
|
it('should properly mount new or existing filesystem', function(done) {
|
||||||
var provider = util.provider().provider;
|
const provider = util.provider().provider;
|
||||||
|
|
||||||
// 1) Should be able to open a new filesystem, and get empty root
|
// 1) Should be able to open a new filesystem, and get empty root
|
||||||
var fs1 = new Filer.FileSystem({provider: provider}, function() {
|
const fs1 = new Filer.FileSystem({provider: provider}, function() {
|
||||||
fs1.readdir('/', function(err, entries) {
|
fs1.readdir('/', function(err, entries) {
|
||||||
expect(err).not.to.exist;
|
expect(err).not.to.exist;
|
||||||
expect(entries).to.be.an('array');
|
expect(entries).to.be.an('array');
|
||||||
|
@ -20,7 +21,7 @@ describe('Filer.FileSystem', function() {
|
||||||
if(err) throw err;
|
if(err) throw err;
|
||||||
|
|
||||||
// 2) Should be able to open an existing filesystem
|
// 2) Should be able to open an existing filesystem
|
||||||
var fs2 = new Filer.FileSystem({provider: provider}, function() {
|
const fs2 = new Filer.FileSystem({provider: provider}, function() {
|
||||||
fs2.readdir('/', function(err, entries) {
|
fs2.readdir('/', function(err, entries) {
|
||||||
expect(err).not.to.exist;
|
expect(err).not.to.exist;
|
||||||
expect(entries).to.be.an('array');
|
expect(entries).to.be.an('array');
|
||||||
|
@ -29,7 +30,7 @@ describe('Filer.FileSystem', function() {
|
||||||
|
|
||||||
|
|
||||||
// 3) FORMAT flag should wipe an existing filesystem
|
// 3) FORMAT flag should wipe an existing filesystem
|
||||||
var fs3 = new Filer.FileSystem({provider: provider, flags: ['FORMAT']}, function() {
|
const fs3 = new Filer.FileSystem({provider: provider, flags: ['FORMAT']}, function() {
|
||||||
fs3.readdir('/', function(err, entries) {
|
fs3.readdir('/', function(err, entries) {
|
||||||
expect(err).not.to.exist;
|
expect(err).not.to.exist;
|
||||||
expect(entries).to.be.an('array');
|
expect(entries).to.be.an('array');
|
||||||
|
|
Loading…
Reference in New Issue