Sha256: 94432e5dfc4c67c363b576af777ca0f3d6a9744d967dec21f8aa0564ef5c3959

Contents?: true

Size: 1.11 KB

Versions: 186

Compression:

Stored size: 1.11 KB

Contents

var mkdirp = require('../').mkdirp;
var path = require('path');
var fs = require('fs');
var test = require('tap').test;
var _0777 = parseInt('0777', 8);
var _0755 = parseInt('0755', 8);
var _0744 = parseInt('0744', 8);

var ps = [ '', 'tmp' ];

for (var i = 0; i < 25; i++) {
    var dir = Math.floor(Math.random() * Math.pow(16,4)).toString(16);
    ps.push(dir);
}

var file = ps.join('/');

test('chmod-pre', function (t) {
    var mode = _0744
    mkdirp(file, mode, function (er) {
        t.ifError(er, 'should not error');
        fs.stat(file, function (er, stat) {
            t.ifError(er, 'should exist');
            t.ok(stat && stat.isDirectory(), 'should be directory');
            t.equal(stat && stat.mode & _0777, mode, 'should be 0744');
            t.end();
        });
    });
});

test('chmod', function (t) {
    var mode = _0755
    mkdirp(file, mode, function (er) {
        t.ifError(er, 'should not error');
        fs.stat(file, function (er, stat) {
            t.ifError(er, 'should exist');
            t.ok(stat && stat.isDirectory(), 'should be directory');
            t.end();
        });
    });
});

Version data entries

186 entries across 138 versions & 28 rubygems

Version Path
disco_app-0.18.0 test/dummy/node_modules/fsevents/node_modules/mkdirp/test/chmod.js
disco_app-0.18.0 test/dummy/node_modules/mkdirp/test/chmod.js
disco_app-0.18.2 test/dummy/node_modules/mkdirp/test/chmod.js
disco_app-0.16.1 test/dummy/node_modules/mkdirp/test/chmod.js
disco_app-0.15.2 test/dummy/node_modules/mkdirp/test/chmod.js
disco_app-0.18.4 test/dummy/node_modules/mkdirp/test/chmod.js
disco_app-0.18.1 test/dummy/node_modules/mkdirp/test/chmod.js
disco_app-0.12.7.pre.puma.pre.3 test/dummy/node_modules/mkdirp/test/chmod.js
disco_app-0.14.0 test/dummy/node_modules/mkdirp/test/chmod.js
disco_app-0.13.6.pre.puma.pre.3 test/dummy/node_modules/mkdirp/test/chmod.js
enju_library-0.3.8 spec/dummy/node_modules/mkdirp/test/chmod.js
enju_library-0.3.8 spec/dummy/node_modules/fsevents/node_modules/mkdirp/test/chmod.js
ilog-0.4.1 node_modules/fsevents/node_modules/mkdirp/test/chmod.js
ilog-0.4.1 node_modules/mkdirp/test/chmod.js
ilog-0.4.0 node_modules/fsevents/node_modules/mkdirp/test/chmod.js
ilog-0.4.0 node_modules/mkdirp/test/chmod.js
ilog-0.3.3 node_modules/fsevents/node_modules/mkdirp/test/chmod.js
ilog-0.3.3 node_modules/mkdirp/test/chmod.js
learn_create-0.0.22 lib/templates/javascript_lab_template/node_modules/mkdirp/test/chmod.js
jester-data-8.0.0 node_modules/mkdirp/test/chmod.js