node/test/parallel/test-fs-sync-fd-leak.js
Rich Trott 082cc8d6d8 test: remove unnecessary assignments
common.js needs to be loaded in all tests so that there is checking
for variable leaks and possibly other things. However, it does not
need to be assigned to a variable if nothing in common.js is referred
to elsewhere in the test.

PR-URL: https://github.com/nodejs/node/pull/4408
Reviewed-By: James M Snell <jasnell@gmail.com>
2015-12-26 18:00:02 -08:00

50 lines
920 B
JavaScript

'use strict';
require('../common');
var assert = require('assert');
var fs = require('fs');
// ensure that (read|write|append)FileSync() closes the file descriptor
fs.openSync = function() {
return 42;
};
fs.closeSync = function(fd) {
assert.equal(fd, 42);
close_called++;
};
fs.readSync = function() {
throw new Error('BAM');
};
fs.writeSync = function() {
throw new Error('BAM');
};
fs.fstatSync = function() {
throw new Error('BAM');
};
ensureThrows(function() {
fs.readFileSync('dummy');
});
ensureThrows(function() {
fs.writeFileSync('dummy', 'xxx');
});
ensureThrows(function() {
fs.appendFileSync('dummy', 'xxx');
});
var close_called = 0;
function ensureThrows(cb) {
var got_exception = false;
close_called = 0;
try {
cb();
} catch (e) {
assert.equal(e.message, 'BAM');
got_exception = true;
}
assert.equal(close_called, 1);
assert.equal(got_exception, true);
}