mirror of
https://github.com/nodejs/node.git
synced 2025-05-05 15:32:15 +00:00

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>
50 lines
920 B
JavaScript
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);
|
|
}
|