summaryrefslogtreecommitdiff
path: root/test/simple/test-file-read-noexist.js
blob: 63f049cb3f7bccebb6a968b279450bfa974c0d21 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
common = require("../common");
assert = common.assert
var path = require('path');
var fs = require('fs');
var got_error = false;

var filename = path.join(common.fixturesDir, "does_not_exist.txt");
fs.readFile(filename, "raw", function (err, content) {
  if (err) {
    got_error = true;
  } else {
    common.debug("cat returned some content: " + content);
    common.debug("this shouldn't happen as the file doesn't exist...");
    assert.equal(true, false);
  }
});

process.addListener("exit", function () {
  console.log("done");
  assert.equal(true, got_error);
});