summaryrefslogtreecommitdiff
path: root/test/parallel/test-fs-open.js
blob: ea099d2e14c89f32ccf863b94a558782ed81cbd0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
var constants = require('constants');
var common = require('../common');
var assert = require('assert');
var fs = require('fs');

var caughtException = false;
try {
  // should throw ENOENT, not EBADF
  // see https://github.com/joyent/node/pull/1228
  fs.openSync('/path/to/file/that/does/not/exist', 'r');
}
catch (e) {
  assert.equal(e.code, 'ENOENT');
  caughtException = true;
}
assert.ok(caughtException);

var openFd;
fs.open(__filename, 'r', function(err, fd) {
  if (err) {
    throw err;
  }
  openFd = fd;
});

var openFd2;
fs.open(__filename, 'rs', function(err, fd) {
  if (err) {
    throw err;
  }
  openFd2 = fd;
});

process.on('exit', function() {
  assert.ok(openFd);
  assert.ok(openFd2);
});