Update fs.symlink.spec.js
This commit is contained in:
parent
db237e617b
commit
7e941bb304
|
@ -1,42 +1,42 @@
|
|||
var util = require('../lib/test-utils.js');
|
||||
var expect = require('chai').expect;
|
||||
|
||||
describe('fs.symlink', function() {
|
||||
describe('fs.symlink', function () {
|
||||
beforeEach(util.setup);
|
||||
afterEach(util.cleanup);
|
||||
|
||||
it('should be a function', function() {
|
||||
it('should be a function', function () {
|
||||
var fs = util.fs();
|
||||
expect(fs.symlink).to.be.a('function');
|
||||
});
|
||||
|
||||
it('should return an error if part of the parent destination path does not exist', function(done) {
|
||||
it('should return an error if part of the parent destination path does not exist', function (done) {
|
||||
var fs = util.fs();
|
||||
|
||||
fs.symlink('/', '/tmp/mydir', function(error) {
|
||||
fs.symlink('/', '/tmp/mydir', function (error) {
|
||||
expect(error).to.exist;
|
||||
expect(error.code).to.equal('ENOENT');
|
||||
done();
|
||||
});
|
||||
});
|
||||
|
||||
it('should return an error if the destination path already exists', function(done) {
|
||||
it('should return an error if the destination path already exists', function (done) {
|
||||
var fs = util.fs();
|
||||
|
||||
fs.symlink('/tmp', '/', function(error) {
|
||||
fs.symlink('/tmp', '/', function (error) {
|
||||
expect(error).to.exist;
|
||||
expect(error.code).to.equal('EEXIST');
|
||||
done();
|
||||
});
|
||||
});
|
||||
|
||||
it('should create a symlink', function(done) {
|
||||
it('should create a symlink', function (done) {
|
||||
var fs = util.fs();
|
||||
|
||||
fs.symlink('/', '/myfile', function(error) {
|
||||
fs.symlink('/', '/myfile', function (error) {
|
||||
expect(error).not.to.exist;
|
||||
|
||||
fs.stat('/myfile', function(err, stats) {
|
||||
fs.stat('/myfile', function (err, stats) {
|
||||
expect(error).not.to.exist;
|
||||
expect(stats.isDirectory()).to.be.true;
|
||||
done();
|
||||
|
@ -52,6 +52,7 @@ describe('fs.symlink', function() {
|
|||
expect(error).to.exist;
|
||||
expect(error.code).to.equal('ENOENT');
|
||||
});
|
||||
});
|
||||
|
||||
it('should return an error if source path does not exist', function () {
|
||||
var fsPromises = util.fs().promises;
|
||||
|
@ -62,7 +63,6 @@ describe('fs.symlink', function() {
|
|||
});
|
||||
});
|
||||
|
||||
|
||||
it('Promise should create a symlink of type DIRECTORY when directory provided', function () {
|
||||
var fsPromises = util.fs().promises;
|
||||
return fsPromises.symlink('/', '/myDirLink')
|
||||
|
@ -107,8 +107,8 @@ describe('fs.symlink', function() {
|
|||
expect(error.code).to.equal('EEXIST');
|
||||
});
|
||||
});
|
||||
});
|
||||
|
||||
});
|
||||
});
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue