Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download
80684 views
1
var mkdirp = require('../');
2
var path = require('path');
3
var fs = require('fs');
4
var exists = fs.exists || path.exists;
5
var test = require('tap').test;
6
var _0777 = parseInt('0777', 8);
7
var _0755 = parseInt('0755', 8);
8
9
test('umask sync modes', function (t) {
10
t.plan(4);
11
var x = Math.floor(Math.random() * Math.pow(16,4)).toString(16);
12
var y = Math.floor(Math.random() * Math.pow(16,4)).toString(16);
13
var z = Math.floor(Math.random() * Math.pow(16,4)).toString(16);
14
15
var file = '/tmp/' + [x,y,z].join('/');
16
17
try {
18
mkdirp.sync(file);
19
} catch (err) {
20
t.fail(err);
21
return t.end();
22
}
23
24
exists(file, function (ex) {
25
t.ok(ex, 'file created');
26
fs.stat(file, function (err, stat) {
27
t.ifError(err);
28
t.equal(stat.mode & _0777, (_0777 & (~process.umask())));
29
t.ok(stat.isDirectory(), 'target not a directory');
30
});
31
});
32
});
33
34