Skip to content

Commit

Permalink
failing opts.fs test
Browse files Browse the repository at this point in the history
  • Loading branch information
James Halliday committed May 6, 2014
1 parent cf7d8bd commit 7be87c1
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions test/opts_fs.js
@@ -0,0 +1,33 @@
var mkdirp = require('../');
var path = require('path');
var test = require('tap').test;
var mockfs = require('mock-fs');

test('opts.fs', function (t) {
t.plan(5);

var x = Math.floor(Math.random() * Math.pow(16,4)).toString(16);
var y = Math.floor(Math.random() * Math.pow(16,4)).toString(16);
var z = Math.floor(Math.random() * Math.pow(16,4)).toString(16);

var file = '/beep/boop/' + [x,y,z].join('/');
var xfs = mockfs.fs();

mkdirp(file, { fs: xfs, mode: 0755 }, function (err) {
t.ifError(err);
xfs.exists(file, function (ex) {
t.ok(ex, 'created file');
xfs.stat(file, function (err, stat) {
t.ifError(err);
t.equal(stat.mode & 0777, 0755);
t.ok(stat.isDirectory(), 'target not a directory');
});
});
});
});

function error (code, msg) {
var err = new Error(msg);
err.code = code;
return err;
}

0 comments on commit 7be87c1

Please sign in to comment.