node/deps/npm/node_modules/mkdirp/test/umask_sync.js

31 lines
866 B
JavaScript
Raw Normal View History

2012-07-14 02:40:38 +08:00
var mkdirp = require('../');
var path = require('path');
var fs = require('fs');
2014-08-19 23:17:36 +08:00
var exists = fs.exists || path.exists;
2012-07-14 02:40:38 +08:00
var test = require('tap').test;
test('umask sync modes', function (t) {
2014-08-19 23:17:36 +08:00
t.plan(4);
2012-07-14 02:40:38 +08:00
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 = '/tmp/' + [x,y,z].join('/');
try {
mkdirp.sync(file);
} catch (err) {
t.fail(err);
return t.end();
}
2014-08-19 23:17:36 +08:00
exists(file, function (ex) {
t.ok(ex, 'file created');
fs.stat(file, function (err, stat) {
t.ifError(err);
t.equal(stat.mode & 0777, (0777 & (~process.umask())));
t.ok(stat.isDirectory(), 'target not a directory');
2012-07-14 02:40:38 +08:00
});
});
});