0
0
mirror of https://github.com/nodejs/node.git synced 2024-12-01 16:10:02 +01:00
nodejs/test/simple/test-fs-stat.js

64 lines
1.5 KiB
JavaScript
Raw Normal View History

require("../common");
var fs = require('fs');
2009-06-29 14:11:26 +02:00
var got_error = false;
var success_count = 0;
2009-06-29 14:11:26 +02:00
2010-02-20 01:02:30 +01:00
fs.stat(".", function (err, stats) {
if (err) {
got_error = true;
} else {
p(stats);
assert.ok(stats.mtime instanceof Date);
success_count++;
}
2009-06-29 14:11:26 +02:00
});
2010-02-22 05:10:23 +01:00
fs.lstat(".", function (err, stats) {
if (err) {
got_error = true;
} else {
p(stats);
assert.ok(stats.mtime instanceof Date);
success_count++;
}
});
puts("stating: " + __filename);
2010-02-20 01:02:30 +01:00
fs.stat(__filename, function (err, s) {
if (err) {
got_error = true;
} else {
p(s);
success_count++;
2010-02-20 01:02:30 +01:00
puts("isDirectory: " + JSON.stringify( s.isDirectory() ) );
assert.equal(false, s.isDirectory());
2010-02-20 01:02:30 +01:00
puts("isFile: " + JSON.stringify( s.isFile() ) );
assert.equal(true, s.isFile());
2010-02-20 01:02:30 +01:00
puts("isSocket: " + JSON.stringify( s.isSocket() ) );
assert.equal(false, s.isSocket());
2010-02-20 01:02:30 +01:00
puts("isBlockDevice: " + JSON.stringify( s.isBlockDevice() ) );
assert.equal(false, s.isBlockDevice());
2010-02-20 01:02:30 +01:00
puts("isCharacterDevice: " + JSON.stringify( s.isCharacterDevice() ) );
assert.equal(false, s.isCharacterDevice());
2010-02-20 01:02:30 +01:00
puts("isFIFO: " + JSON.stringify( s.isFIFO() ) );
assert.equal(false, s.isFIFO());
2010-02-20 01:02:30 +01:00
puts("isSymbolicLink: " + JSON.stringify( s.isSymbolicLink() ) );
assert.equal(false, s.isSymbolicLink());
2010-02-20 01:02:30 +01:00
assert.ok(s.mtime instanceof Date);
}
});
process.addListener("exit", function () {
2010-02-22 05:10:23 +01:00
assert.equal(3, success_count);
assert.equal(false, got_error);
});
2009-06-29 14:11:26 +02:00