mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
499efbd085
* use const instead of var * use common.mustCall to control the functions execution automatically * use assert.strictEqual instead of assert.equal * use assert.notStrictEqual instead of assert.notEqual * use arrow functions PR-URL: https://github.com/nodejs/node/pull/10367 Reviewed-By: Sakthipriyan Vairamani <thechargingvolcano@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
35 lines
1.0 KiB
JavaScript
35 lines
1.0 KiB
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
const exec = require('child_process').exec;
|
|
const path = require('path');
|
|
|
|
// `fs.readFile('/')` does not fail on FreeBSD, because you can open and read
|
|
// the directory there.
|
|
if (process.platform === 'freebsd') {
|
|
common.skip('platform not supported.');
|
|
return;
|
|
}
|
|
|
|
function test(env, cb) {
|
|
const filename = path.join(common.fixturesDir, 'test-fs-readfile-error.js');
|
|
const execPath = '"' + process.execPath + '" "' + filename + '"';
|
|
const options = { env: Object.assign(process.env, env) };
|
|
exec(execPath, options, common.mustCall((err, stdout, stderr) => {
|
|
assert(err);
|
|
assert.strictEqual(stdout, '');
|
|
assert.notStrictEqual(stderr, '');
|
|
cb('' + stderr);
|
|
}));
|
|
}
|
|
|
|
test({ NODE_DEBUG: '' }, common.mustCall((data) => {
|
|
assert(/EISDIR/.test(data));
|
|
assert(!/test-fs-readfile-error/.test(data));
|
|
}));
|
|
|
|
test({ NODE_DEBUG: 'fs' }, common.mustCall((data) => {
|
|
assert(/EISDIR/.test(data));
|
|
assert(/test-fs-readfile-error/.test(data));
|
|
}));
|