-
-
Notifications
You must be signed in to change notification settings - Fork 252
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
146 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,145 @@ | ||
const t = require('tap') | ||
const fs = require('../lib/fs.js') | ||
|
||
t.test('works if it works', async t => { | ||
const { fixEPERM, fixEPERMSync } = t.mock('../lib/fix-eperm.js', {}) | ||
const fixed = fixEPERM(() => 1) | ||
await fixed().then(n => t.equal(n, 1)) | ||
const fixedSync = fixEPERMSync(() => 1) | ||
t.equal(fixedSync(), 1) | ||
}) | ||
|
||
t.test('throw non-EPERM just throws', async t => { | ||
const { fixEPERM, fixEPERMSync } = t.mock('../lib/fix-eperm.js', {}) | ||
const fixed = fixEPERM(() => { | ||
throw new Error('oops') | ||
}) | ||
await t.rejects(fixed(), new Error('oops')) | ||
const fixedSync = fixEPERMSync(() => { | ||
throw new Error('oops') | ||
}) | ||
t.throws(() => fixedSync(), new Error('oops')) | ||
}) | ||
|
||
t.test('throw ENOENT returns void', async t => { | ||
const er = Object.assign(new Error('no ents'), { code: 'ENOENT' }) | ||
const { fixEPERM, fixEPERMSync } = t.mock('../lib/fix-eperm.js', {}) | ||
const fixed = fixEPERM(() => { | ||
throw er | ||
}) | ||
await fixed().then(n => t.equal(n, undefined)) | ||
const fixedSync = fixEPERMSync(() => { | ||
throw er | ||
}) | ||
t.equal(fixedSync(), undefined) | ||
}) | ||
|
||
t.test('chmod and try again', async t => { | ||
const seen = new Set() | ||
const finished = new Set() | ||
const eperm = Object.assign(new Error('perm'), { code: 'EPERM' }) | ||
const method = p => { | ||
if (!seen.has(p)) { | ||
seen.add(p) | ||
throw eperm | ||
} else { | ||
t.equal(chmods.has(p), true) | ||
t.equal(finished.has(p), false) | ||
finished.add(p) | ||
} | ||
} | ||
const chmods = new Set() | ||
const chmodSync = (p, mode) => { | ||
t.equal(chmods.has(p), false) | ||
chmods.add(p) | ||
t.equal(mode, 0o666) | ||
} | ||
const chmod = async (p, mode) => chmodSync(p, mode) | ||
const { fixEPERM, fixEPERMSync } = t.mock('../lib/fix-eperm.js', { | ||
'../lib/fs.js': { | ||
promises: { chmod }, | ||
chmodSync, | ||
}, | ||
}) | ||
const fixed = fixEPERM(method) | ||
const fixedSync = fixEPERMSync(method) | ||
await fixed('async').then(n => t.equal(n, undefined)) | ||
t.equal(fixedSync('sync'), undefined) | ||
t.equal(chmods.size, 2) | ||
t.equal(seen.size, 2) | ||
t.equal(finished.size, 2) | ||
}) | ||
|
||
t.test('chmod ENOENT is fine, abort', async t => { | ||
const seen = new Set() | ||
const finished = new Set() | ||
const eperm = Object.assign(new Error('perm'), { code: 'EPERM' }) | ||
const method = p => { | ||
if (!seen.has(p)) { | ||
seen.add(p) | ||
throw eperm | ||
} else { | ||
t.equal(chmods.has(p), true) | ||
t.equal(finished.has(p), false) | ||
finished.add(p) | ||
} | ||
} | ||
const chmods = new Set() | ||
const chmodSync = (p, mode) => { | ||
t.equal(chmods.has(p), false) | ||
chmods.add(p) | ||
t.equal(mode, 0o666) | ||
throw Object.assign(new Error('no ent'), { code: 'ENOENT' }) | ||
} | ||
const chmod = async (p, mode) => chmodSync(p, mode) | ||
const { fixEPERM, fixEPERMSync } = t.mock('../lib/fix-eperm.js', { | ||
'../lib/fs.js': { | ||
promises: { chmod }, | ||
chmodSync, | ||
}, | ||
}) | ||
const fixed = fixEPERM(method) | ||
const fixedSync = fixEPERMSync(method) | ||
await fixed('async').then(n => t.equal(n, undefined)) | ||
t.equal(fixedSync('sync'), undefined) | ||
t.equal(chmods.size, 2) | ||
t.equal(seen.size, 2) | ||
t.equal(finished.size, 0) | ||
}) | ||
|
||
t.test('chmod other than ENOENT is failure', async t => { | ||
const seen = new Set() | ||
const finished = new Set() | ||
const eperm = Object.assign(new Error('perm'), { code: 'EPERM' }) | ||
const method = p => { | ||
if (!seen.has(p)) { | ||
seen.add(p) | ||
throw eperm | ||
} else { | ||
t.equal(chmods.has(p), true) | ||
t.equal(finished.has(p), false) | ||
finished.add(p) | ||
} | ||
} | ||
const chmods = new Set() | ||
const chmodSync = (p, mode) => { | ||
t.equal(chmods.has(p), false) | ||
chmods.add(p) | ||
t.equal(mode, 0o666) | ||
throw Object.assign(new Error('ent bro'), { code: 'OHNO' }) | ||
} | ||
const chmod = async (p, mode) => chmodSync(p, mode) | ||
const { fixEPERM, fixEPERMSync } = t.mock('../lib/fix-eperm.js', { | ||
'../lib/fs.js': { | ||
promises: { chmod }, | ||
chmodSync, | ||
}, | ||
}) | ||
const fixed = fixEPERM(method) | ||
const fixedSync = fixEPERMSync(method) | ||
t.rejects(fixed('async'), { code: 'EPERM' }) | ||
t.throws(() => fixedSync('sync'), { code: 'EPERM' }) | ||
t.equal(chmods.size, 2) | ||
t.equal(seen.size, 2) | ||
t.equal(finished.size, 0) | ||
}) |