mirror of https://github.com/nodejs/node.git
59 lines
1.2 KiB
JavaScript
59 lines
1.2 KiB
JavaScript
var chmodr = require("../")
|
|
, test = require("tap").test
|
|
, mkdirp = require("mkdirp")
|
|
, rimraf = require("rimraf")
|
|
, fs = require("fs")
|
|
, dirs = []
|
|
|
|
rimraf("/tmp/chmodr", function (er) {
|
|
if (er) throw er
|
|
var cnt = 5
|
|
for (var i = 0; i < 5; i ++) {
|
|
mkdirp(getDir(), then)
|
|
}
|
|
function then (er) {
|
|
if (er) throw er
|
|
if (-- cnt === 0) {
|
|
runTest()
|
|
}
|
|
}
|
|
})
|
|
|
|
function getDir () {
|
|
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 dir = "/tmp/chmodr/" + [x,y,z].join("/")
|
|
dirs.push(dir)
|
|
return dir
|
|
}
|
|
|
|
function runTest () {
|
|
test("should complete successfully", function (t) {
|
|
console.error("calling chmodr 0700")
|
|
chmodr.sync("/tmp/chmodr", 0700)
|
|
t.end()
|
|
})
|
|
|
|
dirs.forEach(function (dir) {
|
|
test("verify "+dir, function (t) {
|
|
fs.stat(dir, function (er, st) {
|
|
if (er) {
|
|
t.ifError(er)
|
|
return t.end()
|
|
}
|
|
t.equal(st.mode & 0777, 0700, "uid should be 0700")
|
|
t.end()
|
|
})
|
|
})
|
|
})
|
|
|
|
test("cleanup", function (t) {
|
|
rimraf("/tmp/chmodr", function (er) {
|
|
t.ifError(er)
|
|
t.end()
|
|
})
|
|
})
|
|
}
|
|
|