diff --git a/src/fs.js b/src/fs.js index 41d1da2..b5662eb 100644 --- a/src/fs.js +++ b/src/fs.js @@ -131,34 +131,6 @@ define(function(require) { this.type = fileNode.mode; } - Stats.prototype.isFile = function() { - return this.type === constants.MODE_FILE; - }; - - Stats.prototype.isDirectory = function() { - return this.type === constants.MODE_DIRECTORY; - }; - - Stats.prototype.isBlockDevice = function() { - return false; - }; - - Stats.prototype.isCharacterDevice = function() { - return false; - }; - - Stats.prototype.isSymbolicLink = function() { - return this.type === constants.MODE_SYMBOLIC_LINK; - }; - - Stats.prototype.isFIFO = function() { - return false; - }; - - Stats.prototype.isSocket = function() { - return false; - }; - /* * Update node times. Only passed times are modified (undefined times are ignored) * and filesystem flags are examined in order to override update logic. diff --git a/tests/spec/fs.Stats.spec.js b/tests/spec/fs.Stats.spec.js deleted file mode 100644 index 09d9c08..0000000 --- a/tests/spec/fs.Stats.spec.js +++ /dev/null @@ -1,306 +0,0 @@ -define(["Filer"], function(Filer) { - - describe('fs.Stats', function() { - describe('#isFile()', function() { - beforeEach(function() { - this.db_name = mk_db_name(); - this.fs = new Filer.FileSystem({ - name: this.db_name, - flags: 'FORMAT' - }); - }); - - afterEach(function() { - indexedDB.deleteDatabase(this.db_name); - delete this.fs; - }); - - it('should be a function', function() { - var testStat = this.fs.stat('/', function(error) { - if(error) throw error; - }); - expect(typeof this.testStat.isFile).toEqual('function'); - }); - - it('should return true if stats are for file', function() { - var complete = false; - var _error, _result; - var that = this; - - var contents = "This is a file."; - - that.fs.writeFile('/myFile', contents, binary, function(error) { - if(error) throw error; - _result = that.fs.stat('/myFile', function() {}).isFile(); - complete = true; - }) - - waitsFor(function() { - return complete; - }, 'test to complete', DEFAULT_TIMEOUT); - - runs(function() { - expect(_error).toEqual(null); - expect(_result).toEqual(true); - }); - }); - }) - - describe('#isDirectory()', function() { - beforeEach(function() { - this.db_name = mk_db_name(); - this.fs = new Filer.FileSystem({ - name: this.db_name, - flags: 'FORMAT' - }); - }); - - afterEach(function() { - indexedDB.deleteDatabase(this.db_name); - delete this.fs; - }); - - it('should be a function', function() { - var testStat = this.fs.stat('/', function(error) { - if(error) throw error; - }); - expect(typeof this.testStat.isDirectory).toEqual('function'); - }); - - it('should only return true if stats are for directory', function() { - var complete = false; - var _result; - var that = this; - - _result = that.fs.stat('/myFile', function(error) { - if(error) throw error; - }).isFile(); - complete = true; - - waitsFor(function() { - return complete; - }, 'test to complete', DEFAULT_TIMEOUT); - - runs(function() { - expect(_error).toEqual(null); - expect(_result).toEqual(true); - }); - }); - }) - - describe('#isBlockDevice()', function() { - beforeEach(function() { - this.db_name = mk_db_name(); - this.fs = new Filer.FileSystem({ - name: this.db_name, - flags: 'FORMAT' - }); - }); - - afterEach(function() { - indexedDB.deleteDatabase(this.db_name); - delete this.fs; - }); - - it('should be a function', function() { - var testStat = this.fs.stat('/', function(error) { - if(error) throw error; - }); - expect(typeof this.testStat.isBlockDevice).toEqual('function'); - }); - - it('should return false', function() { - var complete = false; - var _result; - var that = this; - - _result = that.fs.stat('/', function(error) { - if(error) throw error; - }).isBlockDevice(); - complete = true; - - waitsFor(function() { - return complete; - }, 'test to complete', DEFAULT_TIMEOUT); - - runs(function() { - expect(_error).toEqual(null); - expect(_result).toEqual(false); - }); - }); - }) - - describe('#isCharacterDevice()', function() { - beforeEach(function() { - this.db_name = mk_db_name(); - this.fs = new Filer.FileSystem({ - name: this.db_name, - flags: 'FORMAT' - }); - }); - - afterEach(function() { - indexedDB.deleteDatabase(this.db_name); - delete this.fs; - }); - - it('should be a function', function() { - var testStat = this.fs.stat('/', function(error) { - if(error) throw error; - }); - expect(typeof this.testStat.isCharacterDevice).toEqual('function'); - }); - - it('should return false', function() { - var complete = false; - var _result; - var that = this; - - _result = that.fs.stat('/', function(error) { - if(error) throw error; - }).isCharacterDevice(); - complete = true; - - waitsFor(function() { - return complete; - }, 'test to complete', DEFAULT_TIMEOUT); - - runs(function() { - expect(_error).toEqual(null); - expect(_result).toEqual(false); - }); - }); - }) - - describe('#isSymbolicLink()', function() { - beforeEach(function() { - this.db_name = mk_db_name(); - this.fs = new Filer.FileSystem({ - name: this.db_name, - flags: 'FORMAT' - }); - }); - - afterEach(function() { - indexedDB.deleteDatabase(this.db_name); - delete this.fs; - }); - - it('should be a function', function() { - var testStat = this.fs.stat('/', function(error) { - if(error) throw error; - }); - expect(typeof this.testStat.isSymbolicLink).toEqual('function'); - }); - - it('should return true if stats are for symbolic link', function() { - var complete = false; - var _error, _result; - var that = this; - - that.fs.writeFile('/myfile', '', { encoding: 'utf8' }, function(error) { - if(error) throw error; - that.fs.symlink('/myfile', '/myFileLink', function (error) { - if (error) throw error; - _result = that.fs.lstat('/myfile', function(error) { - if(error) throw error; - }).isSymbolicLink(); - complete = true; - }); - }); - - waitsFor(function() { - return complete; - }, 'test to complete', DEFAULT_TIMEOUT); - - runs(function() { - expect(_error).toEqual(null); - expect(_result).toEqual(true); - }); - }); - }) - - describe('#isFIFO()', function() { - beforeEach(function() { - this.db_name = mk_db_name(); - this.fs = new Filer.FileSystem({ - name: this.db_name, - flags: 'FORMAT' - }); - }); - - afterEach(function() { - indexedDB.deleteDatabase(this.db_name); - delete this.fs; - }); - - it('should be a function', function() { - var testStat = this.fs.stat('/', function(error) { - if(error) throw error; - }); - expect(typeof this.testStat.isFIFO).toEqual('function'); - }); - - it('should return false', function() { - var complete = false; - var _result; - var that = this; - - _result = that.fs.stat('/', function(error) { - if(error) throw error; - }).isFIFO(); - complete = true; - - waitsFor(function() { - return complete; - }, 'test to complete', DEFAULT_TIMEOUT); - - runs(function() { - expect(_error).toEqual(null); - expect(_result).toEqual(false); - }); - }); - }) - - describe('#isSocket()', function() { - beforeEach(function() { - this.db_name = mk_db_name(); - this.fs = new Filer.FileSystem({ - name: this.db_name, - flags: 'FORMAT' - }); - }); - - afterEach(function() { - indexedDB.deleteDatabase(this.db_name); - delete this.fs; - }); - - it('should be a function', function() { - var testStat = this.fs.stat('/', function(error) { - if(error) throw error; - }); - expect(typeof this.testStat.isSocket).toEqual('function'); - }); - - it('should return false', function() { - var complete = false; - var _result; - var that = this; - - _result = that.fs.stat('/', function(error) { - if(error) throw error; - }).isSocket(); - complete = true; - - waitsFor(function() { - return complete; - }, 'test to complete', DEFAULT_TIMEOUT); - - runs(function() { - expect(_error).toEqual(null); - expect(_result).toEqual(false); - }); - }); - }) - } \ No newline at end of file diff --git a/tests/test-manifest.js b/tests/test-manifest.js index ad060a7..688d231 100644 --- a/tests/test-manifest.js +++ b/tests/test-manifest.js @@ -31,7 +31,6 @@ define([ "spec/fs.truncate.spec", "spec/fs.utimes.spec", "spec/fs.xattr.spec", - "spec/fs.stats.spec". "spec/path-resolution.spec", "spec/times.spec", "spec/time-flags.spec",