Skip to content

Commit

Permalink
Test case for issue nodejs#1228: errno masked in fs.openSync().
Browse files Browse the repository at this point in the history
  • Loading branch information
bnoordhuis committed Jun 25, 2011
1 parent c95da94 commit c9e82fd
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions test/simple/test-fs-open.js
Expand Up @@ -19,10 +19,22 @@
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
// USE OR OTHER DEALINGS IN THE SOFTWARE.

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.errno, constants.ENOENT);
caughtException = true;
}
assert.ok(caughtException);

var openFd;
fs.open(__filename, 'r', function(err, fd) {
if (err) {
Expand Down

0 comments on commit c9e82fd

Please sign in to comment.