This commit is contained in:
JP Richardson 2015-03-28 06:05:30 -05:00
parent 1a95eaf7fe
commit 71c5ccfc8a
2 changed files with 20 additions and 14 deletions

View File

@ -2,15 +2,17 @@ var assert = require('assert')
var fs = require('fs') var fs = require('fs')
var path = require('path') var path = require('path')
var fse = require('../../') var fse = require('../../')
var testutil = require('testutil')
/* global describe, it */
var o755 = parseInt('755', 8)
describe('mkdirp / root', function () { describe('mkdirp / root', function () {
it('should', function (done) {
it('should', function(done) {
// '/' on unix, 'c:/' on windows. // '/' on unix, 'c:/' on windows.
var file = path.resolve('/') var file = path.resolve('/')
fse.mkdirp(file, 0755, function (err) { fse.mkdirp(file, o755, function (err) {
if (err) throw err if (err) throw err
fs.stat(file, function (er, stat) { fs.stat(file, function (er, stat) {
if (er) throw er if (er) throw er
@ -19,4 +21,4 @@ describe('mkdirp / root', function () {
}) })
}) })
}) })
}) })

View File

@ -1,19 +1,23 @@
var assert = require('assert') var assert = require('assert')
var fs = require('fs') var fs = require('fs')
var path = require('path')
var fse = require('../../') var fse = require('../../')
var testutil = require('testutil') var testutil = require('testutil')
describe('mkdirp / sync', function() { /* global describe, it */
it('should', function (done) {
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 = testutil.createTestDir('fs-extra') + '/' + [x,y,z].join('/') var o755 = parseInt('755', 8)
var o777 = parseInt('777', 8)
describe('mkdirp / sync', function () {
it('should', function (done) {
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 = testutil.createTestDir('fs-extra') + '/' + [x, y, z].join('/')
try { try {
fse.mkdirpSync(file, 0755) fse.mkdirpSync(file, o755)
} catch (err) { } catch (err) {
assert.fail(err) assert.fail(err)
} }
@ -22,7 +26,7 @@ describe('mkdirp / sync', function() {
assert.ok(ex, 'file created') assert.ok(ex, 'file created')
fs.stat(file, function (err, stat) { fs.stat(file, function (err, stat) {
assert.ifError(err) assert.ifError(err)
assert.equal(stat.mode & 0777, 0755) assert.equal(stat.mode & o777, o755)
assert.ok(stat.isDirectory(), 'target not a directory') assert.ok(stat.isDirectory(), 'target not a directory')
done() done()
}) })