node/test/simple/test-fs-stat.js

98 lines
2.1 KiB
JavaScript
Raw Normal View History

common = require("../common");
assert = common.assert
var fs = require('fs');
2009-06-29 20:11:26 +08:00
var got_error = false;
var success_count = 0;
2009-06-29 20:11:26 +08:00
2010-02-20 08:02:30 +08:00
fs.stat(".", function (err, stats) {
if (err) {
got_error = true;
} else {
common.p(stats);
2010-02-20 08:02:30 +08:00
assert.ok(stats.mtime instanceof Date);
success_count++;
}
2009-06-29 20:11:26 +08:00
});
2010-02-22 12:10:23 +08:00
fs.lstat(".", function (err, stats) {
if (err) {
got_error = true;
} else {
common.p(stats);
2010-02-22 12:10:23 +08:00
assert.ok(stats.mtime instanceof Date);
success_count++;
}
});
// fstat
fs.open(".", "r", undefined, function(err, fd) {
assert.ok(!err);
assert.ok(fd);
fs.fstat(fd, function (err, stats) {
if (err) {
got_error = true;
} else {
common.p(stats);
assert.ok(stats.mtime instanceof Date);
success_count++;
fs.close(fd);
}
});
});
// fstatSync
fs.open(".", "r", undefined, function(err, fd) {
var stats;
try {
stats = fs.fstatSync(fd);
} catch (err) {
got_error = true;
}
if (stats) {
common.p(stats);
assert.ok(stats.mtime instanceof Date);
success_count++;
}
fs.close(fd);
});
console.log("stating: " + __filename);
2010-02-20 08:02:30 +08:00
fs.stat(__filename, function (err, s) {
if (err) {
got_error = true;
} else {
common.p(s);
2010-02-20 08:02:30 +08:00
success_count++;
console.log("isDirectory: " + JSON.stringify( s.isDirectory() ) );
2010-02-20 08:02:30 +08:00
assert.equal(false, s.isDirectory());
console.log("isFile: " + JSON.stringify( s.isFile() ) );
2010-02-20 08:02:30 +08:00
assert.equal(true, s.isFile());
console.log("isSocket: " + JSON.stringify( s.isSocket() ) );
2010-02-20 08:02:30 +08:00
assert.equal(false, s.isSocket());
console.log("isBlockDevice: " + JSON.stringify( s.isBlockDevice() ) );
2010-02-20 08:02:30 +08:00
assert.equal(false, s.isBlockDevice());
console.log("isCharacterDevice: " + JSON.stringify( s.isCharacterDevice() ) );
2010-02-20 08:02:30 +08:00
assert.equal(false, s.isCharacterDevice());
console.log("isFIFO: " + JSON.stringify( s.isFIFO() ) );
2010-02-20 08:02:30 +08:00
assert.equal(false, s.isFIFO());
console.log("isSymbolicLink: " + JSON.stringify( s.isSymbolicLink() ) );
2010-02-20 08:02:30 +08:00
assert.equal(false, s.isSymbolicLink());
2010-02-20 08:02:30 +08:00
assert.ok(s.mtime instanceof Date);
}
});
process.addListener("exit", function () {
assert.equal(5, success_count);
assert.equal(false, got_error);
});
2009-06-29 20:11:26 +08:00