mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
59 lines
1.2 KiB
59 lines
1.2 KiB
12 years ago
|
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()
|
||
|
})
|
||
|
})
|
||
|
}
|
||
|
|