Skip to content

Commit 98ac82e

Browse files
committed
fixup! fixup! fixup! fixup! fixup! fs: fix rmsync error swallowing
1 parent d515441 commit 98ac82e

8 files changed

+175
-148
lines changed

lib/internal/fs/rimraf.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ function _unlinkSync(path, options) {
222222
} else if (err.code === 'ENOENT') {
223223
// The file is already gone.
224224
return;
225-
} else {
225+
} else if (i === tries) {
226226
throw err;
227227
}
228228
}
@@ -267,7 +267,7 @@ function _rmdirSync(path, options, originalErr) {
267267
} else if (err.code === 'ENOENT') {
268268
// The file is already gone.
269269
return;
270-
} else {
270+
} else if (i === tries) {
271271
throw err;
272272
}
273273
}

test/parallel/test-fs-mkdir-recursive-eaccess.js

+2-3
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,7 @@ function makeDirectoryReadOnly(dir) {
2626
let accessErrorCode = 'EACCES';
2727
if (common.isWindows) {
2828
accessErrorCode = 'EPERM';
29-
execSync(`icacls ${dir} /inheritance:r`);
30-
execSync(`icacls ${dir} /deny "everyone":W`);
29+
execSync(`icacls ${dir} /deny "everyone:(OI)(CI)(DE,DC,AD,WD)"`);
3130
} else {
3231
fs.chmodSync(dir, '444');
3332
}
@@ -36,7 +35,7 @@ function makeDirectoryReadOnly(dir) {
3635

3736
function makeDirectoryWritable(dir) {
3837
if (common.isWindows) {
39-
execSync(`icacls ${dir} /grant "everyone":W`);
38+
execSync(`icacls ${dir} /remove:d "everyone"`);
4039
}
4140
}
4241

test/parallel/test-fs-open-no-close.js

+14-7
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,17 @@ const debuglog = (arg) => {
1515
const tmpdir = require('../common/tmpdir');
1616
tmpdir.refresh();
1717

18-
{
19-
fs.open(`${tmpdir.path}/dummy`, 'wx+', common.mustCall((err, fd) => {
20-
debuglog('fs open() callback');
21-
assert.ifError(err);
22-
}));
23-
debuglog('waiting for callback');
24-
}
18+
let openFd;
19+
20+
fs.open(`${tmpdir.path}/dummy`, 'wx+', common.mustCall((err, fd) => {
21+
debuglog('fs open() callback');
22+
assert.ifError(err);
23+
openFd = fd;
24+
}));
25+
debuglog('waiting for callback');
26+
27+
process.on('beforeExit', common.mustCall(() => {
28+
if (openFd) {
29+
fs.closeSync(openFd);
30+
}
31+
}));

test/parallel/test-fs-promises-file-handle-read-worker.js

+12-8
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,19 @@ if (isMainThread || !workerData) {
2020
});
2121
});
2222
fs.promises.open(file, 'r').then((handle) => {
23-
fs.createReadStream(null, { fd: handle });
24-
assert.throws(() => {
25-
new Worker(__filename, {
26-
workerData: { handle },
27-
transferList: [handle]
23+
try {
24+
fs.createReadStream(null, { fd: handle });
25+
assert.throws(() => {
26+
new Worker(__filename, {
27+
workerData: { handle },
28+
transferList: [handle]
29+
});
30+
}, {
31+
code: 25,
2832
});
29-
}, {
30-
code: 25,
31-
});
33+
} finally {
34+
return handle.close();
35+
}
3236
});
3337
} else {
3438
let output = '';

test/parallel/test-fs-promises-file-handle-readFile.js

+10-7
Original file line numberDiff line numberDiff line change
@@ -56,13 +56,16 @@ async function doReadAndCancel() {
5656
{
5757
const filePathForHandle = path.resolve(tmpDir, 'dogs-running.txt');
5858
const fileHandle = await open(filePathForHandle, 'w+');
59-
const buffer = Buffer.from('Dogs running'.repeat(10000), 'utf8');
60-
fs.writeFileSync(filePathForHandle, buffer);
61-
const signal = AbortSignal.abort();
62-
await assert.rejects(readFile(fileHandle, { signal }), {
63-
name: 'AbortError'
64-
});
65-
await fileHandle.close();
59+
try {
60+
const buffer = Buffer.from('Dogs running'.repeat(10000), 'utf8');
61+
fs.writeFileSync(filePathForHandle, buffer);
62+
const signal = AbortSignal.abort();
63+
await assert.rejects(readFile(fileHandle, { signal }), {
64+
name: 'AbortError'
65+
});
66+
} finally {
67+
await fileHandle.close();
68+
}
6669
}
6770

6871
// Signal aborted on first tick

test/parallel/test-fs-promises-file-handle-writeFile.js

+11-7
Original file line numberDiff line numberDiff line change
@@ -30,13 +30,17 @@ async function validateWriteFile() {
3030
async function doWriteAndCancel() {
3131
const filePathForHandle = path.resolve(tmpDir, 'dogs-running.txt');
3232
const fileHandle = await open(filePathForHandle, 'w+');
33-
const buffer = Buffer.from('dogs running'.repeat(512 * 1024), 'utf8');
34-
const controller = new AbortController();
35-
const { signal } = controller;
36-
process.nextTick(() => controller.abort());
37-
await assert.rejects(writeFile(fileHandle, buffer, { signal }), {
38-
name: 'AbortError'
39-
});
33+
try {
34+
const buffer = Buffer.from('dogs running'.repeat(512 * 1024), 'utf8');
35+
const controller = new AbortController();
36+
const { signal } = controller;
37+
process.nextTick(() => controller.abort());
38+
await assert.rejects(writeFile(fileHandle, buffer, { signal }), {
39+
name: 'AbortError'
40+
});
41+
} finally {
42+
await fileHandle.close();
43+
}
4044
}
4145

4246
validateWriteFile()

0 commit comments

Comments
 (0)