Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fixed #738: consolidated stats into stat tests #743

Merged
merged 2 commits into from Feb 23, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 0 additions & 1 deletion tests/index.js
Expand Up @@ -36,7 +36,6 @@ require('./spec/fs.truncate.spec');
require('./spec/fs.ftruncate.spec');
require('./spec/fs.utimes.spec');
require('./spec/fs.xattr.spec');
require('./spec/fs.stats.spec');
require('./spec/path-resolution.spec');
require('./spec/trailing-slashes.spec');
require('./spec/times.spec');
Expand Down
286 changes: 286 additions & 0 deletions tests/spec/fs.stat.spec.js
Expand Up @@ -2,6 +2,7 @@ var util = require('../lib/test-utils.js');
var chai = require('chai');
chai.use(require('chai-datetime'));
var expect = chai.expect;
var Path = require('../../src').Path;

describe('fs.stat', function() {
beforeEach(util.setup);
Expand Down Expand Up @@ -215,6 +216,291 @@ describe('fs.stat', function() {
});
});
});

describe('fs.stats', function() {
describe('#isFile()', function() {

it('should be a function', function(done) {
var fs = util.fs();
fs.stat('/', function(error, stats) {
if(error) throw error;
expect(stats.isFile).to.be.a('function');
done();
});
});

it('should return true if stats are for file', function(done) {
var fs = util.fs();

fs.open('/myfile', 'w+', function(error, fd) {
if(error) throw error;

fs.fstat(fd, function(error, stats) {
expect(error).not.to.exist;
expect(stats.isFile()).to.be.true;
fs.close(fd, done);
});
});
});

it('should return false if stats are for directory', function(done) {
var fs = util.fs();

fs.stat('/', function(error, stats) {
if(error) throw error;
expect(stats.isFile()).to.be.false;
done();
});
});

it('should return false if stats are for symbolic link', function(done) {
var fs = util.fs();

fs.open('/myfile', 'w+', function(error, fd) {
if(error) throw error;

fs.close(fd, function(error) {
if(error) throw error;

fs.symlink('/myfile', '/myfilelink', function(error) {
if(error) throw error;
fs.lstat('/myfilelink', function(error, stats) {
expect(error).not.to.exist;
expect(stats.isFile()).to.be.false;
done();
});
});
});
});
});
});

describe('#isDirectory()', function() {

it('should be a function', function(done) {
var fs = util.fs();
fs.stat('/', function(error, stats) {
if(error) throw error;
expect(stats.isDirectory).to.be.a('function');
done();
});
});

it('should return false if stats are for file', function(done) {
var fs = util.fs();

fs.open('/myfile', 'w+', function(error, fd) {
if(error) throw error;
fs.fstat(fd, function(error, stats) {
expect(error).not.to.exist;
expect(stats.isDirectory()).to.be.false;
fs.close(fd, done);
});
});
});

it('should return true if stats are for directory', function(done) {
var fs = util.fs();

fs.stat('/', function(error, stats) {
if(error) throw error;
expect(stats.isDirectory()).to.be.true;
done();
});
});

it('should return false if stats are for symbolic link', function(done) {
var fs = util.fs();

fs.open('/myfile', 'w+', function(error, fd) {
if(error) throw error;
fs.close(fd, function(error) {
if(error) throw error;
fs.symlink('/myfile', '/myfilelink', function(error) {
if(error) throw error;
fs.lstat('/myfilelink', function(error, stats) {
expect(stats.isDirectory()).to.be.false;
done();
});
});
});
});
});
});

describe('#isBlockDevice()', function() {

it('should be a function', function(done) {
var fs = util.fs();
fs.stat('/', function(error, stats) {
if(error) throw error;
expect(stats.isBlockDevice).to.be.a('function');
done();
});
});

it('should return false', function(done) {
var fs = util.fs();
fs.stat('/', function(error, stats) {
if(error) throw error;
expect(stats.isBlockDevice()).to.be.false;
done();
});
});
});

describe('#isCharacterDevice()', function() {

it('should be a function', function(done) {
var fs = util.fs();
fs.stat('/', function(error, stats) {
if(error) throw error;
expect(stats.isCharacterDevice).to.be.a('function');
done();
});
});

it('should return false', function(done) {
var fs = util.fs();
fs.stat('/', function(error, stats) {
if(error) throw error;
expect(stats.isCharacterDevice()).to.be.false;
done();
});
});
});

describe('#isSymbolicLink()', function() {

it('should be a function', function(done) {
var fs = util.fs();
fs.stat('/', function(error, stats) {
if(error) throw error;
expect(stats.isSymbolicLink).to.be.a('function');
done();
});
});

it('should return false if stats are for file', function(done) {
var fs = util.fs();

fs.open('/myfile', 'w+', function(error, fd) {
if(error) throw error;
fs.fstat(fd, function(error, stats) {
expect(error).not.to.exist;
expect(stats.isSymbolicLink()).to.be.false;
fs.close(fd, done);
});
});
});

it('should return false if stats are for directory', function(done) {
var fs = util.fs();

fs.stat('/', function(error, stats) {
if(error) throw error;
expect(stats.isSymbolicLink()).to.be.false;
done();
});
});

it('should return true if stats are for symbolic link', function(done) {
var fs = util.fs();

fs.open('/myfile', 'w+', function(error, fd) {
if(error) throw error;
fs.close(fd, function(error) {
if(error) throw error;
fs.symlink('/myfile', '/myfilelink', function(error) {
if(error) throw error;
fs.lstat('/myfilelink', function(error, stats) {
expect(stats.isSymbolicLink()).to.be.true;
done();
});
});
});
});
});
});

describe('#isFIFO()', function() {

it('should be a function', function(done) {
var fs = util.fs();
fs.stat('/', function(error, stats) {
if(error) throw error;
expect(stats.isFIFO).to.be.a('function');
done();
});
});

it('should return false', function(done) {
var fs = util.fs();
fs.stat('/', function(error, stats) {
if(error) throw error;
expect(stats.isFIFO()).to.be.false;
done();
});
});
});

describe('#isSocket()', function() {

it('should be a function', function(done) {
var fs = util.fs();
fs.stat('/', function(error, stats) {
if(error) throw error;
expect(stats.isSocket).to.be.a('function');
done();
});
});

it('should return false', function(done) {
var fs = util.fs();
fs.stat('/', function(error, stats) {
if(error) throw error;
expect(stats.isSocket()).to.be.false;
done();
});
});
});

describe('generated name property', function() {

it('should correct return name for a file', function(done) {
var fs = util.fs();
var filepath = '/a';

fs.writeFile(filepath, 'data', function(err) {
if(err) throw err;

fs.stat(filepath, function(err, stats) {
if(err) throw err;

expect(stats.name).to.equal(Path.basename(filepath));
done();
});
});
});

it('should correct return name for an fd', function(done) {
var fs = util.fs();
var filepath = '/a';

fs.open(filepath, 'w', function(err, fd) {
if(err) throw err;

fs.fstat(fd, function(err, stats) {
if(err) throw err;

expect(stats.name).to.equal(Path.basename(filepath));
fs.close(fd, done);
});
});
});
});
});

});

/**
Expand Down