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.link', 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.link).to.be.a('function');
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should create a link to an existing file', function(done) {
|
|
|
|
var fs = util.fs();
|
2013-11-27 17:18:09 +00:00
|
|
|
|
2014-05-23 20:53:50 +00:00
|
|
|
fs.open('/myfile', 'w+', function(error, fd) {
|
|
|
|
if(error) throw error;
|
2013-11-27 17:18:09 +00:00
|
|
|
|
2014-05-23 20:53:50 +00:00
|
|
|
fs.close(fd, function(error) {
|
2013-11-27 17:18:09 +00:00
|
|
|
if(error) throw error;
|
|
|
|
|
2014-05-23 20:53:50 +00:00
|
|
|
fs.link('/myfile', '/myotherfile', function(error) {
|
2013-11-27 17:18:09 +00:00
|
|
|
if(error) throw error;
|
|
|
|
|
2014-05-23 20:53:50 +00:00
|
|
|
fs.stat('/myfile', function(error, result) {
|
2013-11-27 17:18:09 +00:00
|
|
|
if(error) throw error;
|
|
|
|
|
2014-05-23 20:53:50 +00:00
|
|
|
var _oldstats = result;
|
|
|
|
fs.stat('/myotherfile', function(error, result) {
|
|
|
|
expect(error).not.to.exist;
|
|
|
|
expect(result.nlinks).to.equal(2);
|
|
|
|
expect(result.dev).to.equal(_oldstats.dev);
|
|
|
|
expect(result.node).to.equal(_oldstats.node);
|
|
|
|
expect(result.size).to.equal(_oldstats.size);
|
|
|
|
expect(result.type).to.equal(_oldstats.type);
|
|
|
|
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
|
|
|
|
2018-05-26 20:57:57 +00:00
|
|
|
it('should create hard link to identical data node', function(done) {
|
|
|
|
var fs = util.fs();
|
|
|
|
var contents = "Hello World!";
|
|
|
|
|
|
|
|
fs.writeFile('/file', contents, function(err) {
|
|
|
|
if(err) throw err;
|
|
|
|
|
|
|
|
fs.link('/file', '/hlink', function(err) {
|
|
|
|
if(err) throw err;
|
|
|
|
|
|
|
|
fs.readFile('/file', 'utf8', function(err, fileData) {
|
|
|
|
if(err) throw err;
|
|
|
|
|
|
|
|
fs.readFile('/hlink', 'utf8', function(err, hlinkData) {
|
|
|
|
if(err) throw err;
|
|
|
|
|
|
|
|
expect(fileData).to.equal(hlinkData);
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2014-05-23 20:53:50 +00:00
|
|
|
it('should not 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.stat('/', function (error, result) {
|
|
|
|
if (error) throw error;
|
|
|
|
var _oldstats = result;
|
|
|
|
fs.symlink('/', '/myfileLink', function (error) {
|
2013-11-27 17:18:09 +00:00
|
|
|
if (error) throw error;
|
2014-05-23 20:53:50 +00:00
|
|
|
fs.link('/myfileLink', '/myotherfile', function (error) {
|
2013-11-27 17:18:09 +00:00
|
|
|
if (error) throw error;
|
2014-05-23 20:53:50 +00:00
|
|
|
fs.lstat('/myfileLink', function (error, result) {
|
2013-11-27 17:18:09 +00:00
|
|
|
if (error) throw error;
|
2014-05-23 20:53:50 +00:00
|
|
|
var _linkstats = result;
|
|
|
|
fs.lstat('/myotherfile', function (error, result) {
|
|
|
|
expect(error).not.to.exist;
|
|
|
|
expect(result.dev).to.equal(_linkstats.dev);
|
|
|
|
expect(result.node).to.equal(_linkstats.node);
|
|
|
|
expect(result.size).to.equal(_linkstats.size);
|
|
|
|
expect(result.type).to.equal(_linkstats.type);
|
|
|
|
expect(result.nlinks).to.equal(2);
|
|
|
|
done();
|
2013-11-27 17:18:09 +00:00
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2014-12-06 06:16:22 +00:00
|
|
|
|
|
|
|
it('should not allow links to a directory', function(done) {
|
|
|
|
var fs = util.fs();
|
|
|
|
|
|
|
|
fs.mkdir('/mydir', function(error) {
|
|
|
|
if(error) throw error;
|
|
|
|
|
|
|
|
fs.link('/mydir', '/mydirlink', function(error) {
|
|
|
|
expect(error).to.exist;
|
|
|
|
expect(error.code).to.equal('EPERM');
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2014-05-23 20:53:50 +00:00
|
|
|
});
|