node/test/mjsunit/test-file-cat-noexist.js

24 lines
597 B
JavaScript
Raw Normal View History

include("mjsunit.js");
2009-06-29 01:05:58 +08:00
var got_error = false;
2009-06-01 18:56:28 +08:00
function onLoad () {
var dirname = node.path.dirname(__filename);
var fixtures = node.path.join(dirname, "fixtures");
var filename = node.path.join(fixtures, "does_not_exist.txt");
2009-06-29 01:05:58 +08:00
var promise = node.fs.cat(filename, "raw");
promise.addCallback(function (content) {
node.debug("cat returned some content: " + content);
node.debug("this shouldn't happen as the file doesn't exist...");
assertTrue(false);
});
promise.addErrback(function () {
got_error = true;
});
}
2009-06-01 18:56:28 +08:00
function onExit () {
2009-06-29 01:05:58 +08:00
assertTrue(got_error);
}