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

35 lines
921 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('sync perm', function (t) {
2014-08-19 23:17:36 +08:00
t.plan(4);
2012-07-14 02:40:38 +08:00
var file = '/tmp/' + (Math.random() * (1<<30)).toString(16) + '.json';
mkdirp.sync(file, 0755);
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, 0755);
t.ok(stat.isDirectory(), 'target not a directory');
});
2012-07-14 02:40:38 +08:00
});
});
test('sync root perm', function (t) {
2014-08-19 23:17:36 +08:00
t.plan(3);
2012-07-14 02:40:38 +08:00
var file = '/tmp';
mkdirp.sync(file, 0755);
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.ok(stat.isDirectory(), 'target not a directory');
2012-07-14 02:40:38 +08:00
})
});
});