mirror of
https://github.com/nodejs/node.git
synced 2025-05-07 04:41:47 +00:00

Use assert.strictEqual instead of assert.equal in tests, manually convert types where necessary. PR-URL: https://github.com/nodejs/node/pull/10698 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com> Reviewed-By: Sakthipriyan Vairamani <thechargingvolcano@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Teddy Katz <teddy.katz@gmail.com>
50 lines
948 B
JavaScript
50 lines
948 B
JavaScript
'use strict';
|
|
require('../common');
|
|
const assert = require('assert');
|
|
const fs = require('fs');
|
|
|
|
// ensure that (read|write|append)FileSync() closes the file descriptor
|
|
fs.openSync = function() {
|
|
return 42;
|
|
};
|
|
fs.closeSync = function(fd) {
|
|
assert.strictEqual(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');
|
|
};
|
|
|
|
let close_called = 0;
|
|
ensureThrows(function() {
|
|
fs.readFileSync('dummy');
|
|
});
|
|
ensureThrows(function() {
|
|
fs.writeFileSync('dummy', 'xxx');
|
|
});
|
|
ensureThrows(function() {
|
|
fs.appendFileSync('dummy', 'xxx');
|
|
});
|
|
|
|
function ensureThrows(cb) {
|
|
let got_exception = false;
|
|
|
|
close_called = 0;
|
|
try {
|
|
cb();
|
|
} catch (e) {
|
|
assert.strictEqual(e.message, 'BAM');
|
|
got_exception = true;
|
|
}
|
|
|
|
assert.strictEqual(close_called, 1);
|
|
assert.strictEqual(got_exception, true);
|
|
}
|