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

21 lines
492 B
JavaScript
Raw Normal View History

include("common.js");
2009-06-29 01:05:58 +08:00
var got_error = false;
2009-06-01 18:56:28 +08:00
var filename = node.path.join(fixturesDir, "does_not_exist.txt");
2009-08-27 00:22:00 +08:00
var promise = node.fs.cat(filename, "raw");
2009-06-29 01:05:58 +08:00
2009-08-27 00:22:00 +08:00
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
process.addListener("exit", function () {
puts("done");
2009-06-29 01:05:58 +08:00
assertTrue(got_error);
});