forked from nodejs/node
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest-fs-open.js
More file actions
46 lines (41 loc) · 971 Bytes
/
Copy pathtest-fs-open.js
File metadata and controls
46 lines (41 loc) · 971 Bytes
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
39
40
41
42
43
44
45
46
'use strict';
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;
});
assert.throws(function() {
fs.open('/path/to/file/that/does/not/exist', { bad: 'flags' }, assert.fail);
}, function(err) {
if (err instanceof TypeError) {
return err.message === 'File open flags may only be string or integer';
}
});
process.on('exit', function() {
assert.ok(openFd);
assert.ok(openFd2);
});