Ryan Zimmerman 3c3865cad8
BREAKING: Drop old Node support (#751)
* BREAKING: Drop old Node support, require v10+

Update CI configs

* Remove references and test fencing for old Node versions

* Use object spread properties

* Use octal literal notation

* Use optional catch bindings
2020-02-04 17:30:40 -05:00

52 lines
1.2 KiB
JavaScript

'use strict'
const fs = require('fs')
const os = require('os')
const fse = require('../../')
const path = require('path')
const assert = require('assert')
/* global afterEach, beforeEach, describe, it */
describe('mkdirp / perm', () => {
let TEST_DIR
beforeEach(done => {
TEST_DIR = path.join(os.tmpdir(), 'fs-extra', 'mkdirp-perm')
fse.emptyDir(TEST_DIR, done)
})
afterEach(done => fse.remove(TEST_DIR, done))
it('async perm', done => {
const file = path.join(TEST_DIR, (Math.random() * (1 << 30)).toString(16))
fse.mkdirp(file, 0o755, err => {
assert.ifError(err)
fse.pathExists(file, (err, ex) => {
assert.ifError(err)
assert.ok(ex, 'file created')
fs.stat(file, (err, stat) => {
assert.ifError(err)
if (os.platform().indexOf('win') === 0) {
assert.strictEqual(stat.mode & 0o777, 0o666)
} else {
assert.strictEqual(stat.mode & 0o777, 0o755)
}
assert.ok(stat.isDirectory(), 'target not a directory')
done()
})
})
})
})
it('async root perm', done => {
fse.mkdirp(path.join(os.tmpdir(), 'tmp'), 0o755, err => {
assert.ifError(err)
done()
})
})
})