'use strict'; const util = require('../lib/test-utils.js'); const expect = require('chai').expect; describe('fs.mkdtemp', function() { beforeEach(util.setup); afterEach(util.cleanup); it('should be a function', function() { const fs = util.fs(); expect(fs.mkdtemp).to.be.a('function'); }); it('should craete temp dir with specified prefix', function(done) { const fs = util.fs(); fs.mkdtemp('/foo', function(error, path) { expect(error).not.to.exist; expect(path).to.match(/foo-\w{6}/); done(); }); }); it('should craete temp dir inside existing directory', function(done) { const fs = util.fs(); fs.mkdir('/myDir', (error) => { expect(error).not.to.exist; fs.mkdtemp('/myDir/foo', function(error, path) { expect(error).not.to.exist; expect(path).to.match(/foo.{6}/); done(); }); }); }); it('should not create temp dir without prefix', function(done) { const fs = util.fs(); fs.mkdtemp('', function(error, path) { expect(error).to.exist; expect(path).not.to.exist; done(); }); }); it('should not create temp dir inside non existing dir', function(done) { const fs = util.fs(); fs.mkdtemp('/doesNotExists/foo', function(error, path) { expect(error).to.exist; expect(error.code).to.be.equal('ENOENT'); expect(path).to.exist; done(); }); }); });