|
| 1 | +'use strict'; |
| 2 | + |
| 3 | +const common = require('../common'); |
| 4 | +const tmpdir = require('../common/tmpdir'); |
| 5 | +const assert = require('assert'); |
| 6 | +const path = require('path'); |
| 7 | +const fs = require('fs'); |
| 8 | +const URL = require('url').URL; |
| 9 | + |
| 10 | +tmpdir.refresh(); |
| 11 | + |
| 12 | +let fileCounter = 1; |
| 13 | +const nextFile = () => path.join(tmpdir.path, `file${fileCounter++}`); |
| 14 | + |
| 15 | +const generateStringPath = (file, suffix = '') => file + suffix; |
| 16 | + |
| 17 | +const generateURLPath = (file, suffix = '') => |
| 18 | + new URL('file://' + path.resolve(file) + suffix); |
| 19 | + |
| 20 | +const generateUint8ArrayPath = (file, suffix = '') => |
| 21 | + new Uint8Array(Buffer.from(file + suffix)); |
| 22 | + |
| 23 | +const generatePaths = (file, suffix = '') => [ |
| 24 | + generateStringPath(file, suffix), |
| 25 | + generateURLPath(file, suffix), |
| 26 | + generateUint8ArrayPath(file, suffix), |
| 27 | +]; |
| 28 | + |
| 29 | +const generateNewPaths = (suffix = '') => [ |
| 30 | + generateStringPath(nextFile(), suffix), |
| 31 | + generateURLPath(nextFile(), suffix), |
| 32 | + generateUint8ArrayPath(nextFile(), suffix), |
| 33 | +]; |
| 34 | + |
| 35 | +function checkSyncFn(syncFn, p, args, fail) { |
| 36 | + const result = fail ? 'must fail' : 'must succeed'; |
| 37 | + const failMsg = `failed testing sync ${p} ${syncFn.name} ${result}`; |
| 38 | + if (!fail) { |
| 39 | + try { |
| 40 | + syncFn(p, ...args); |
| 41 | + } catch (e) { |
| 42 | + console.log(failMsg, e); |
| 43 | + throw e; |
| 44 | + } |
| 45 | + } else { |
| 46 | + assert.throws(() => syncFn(p, ...args), { |
| 47 | + code: 'ERR_FS_EISDIR', |
| 48 | + }, failMsg); |
| 49 | + } |
| 50 | +} |
| 51 | + |
| 52 | +function checkAsyncFn(asyncFn, p, args, fail) { |
| 53 | + const result = fail ? 'must fail' : 'must succeed'; |
| 54 | + const failMsg = `failed testing async ${p} ${asyncFn.name} ${result}`; |
| 55 | + if (!fail) { |
| 56 | + try { |
| 57 | + asyncFn(p, ...args, common.mustCall()); |
| 58 | + } catch (e) { |
| 59 | + console.log(failMsg, e); |
| 60 | + throw e; |
| 61 | + } |
| 62 | + } else { |
| 63 | + assert.throws( |
| 64 | + () => asyncFn(p, ...args, common.mustNotCall()), { |
| 65 | + code: 'ERR_FS_EISDIR', |
| 66 | + }, |
| 67 | + failMsg |
| 68 | + ); |
| 69 | + } |
| 70 | +} |
| 71 | + |
| 72 | +function checkPromiseFn(promiseFn, p, args, fail) { |
| 73 | + const result = fail ? 'must fail' : 'must succeed'; |
| 74 | + const failMsg = `failed testing promise ${p} ${promiseFn.name} ${result}`; |
| 75 | + if (!fail) { |
| 76 | + const r = promiseFn(p, ...args).catch((err) => { |
| 77 | + console.log(failMsg, err); |
| 78 | + throw err; |
| 79 | + }); |
| 80 | + if (r && r.close) r.close(); |
| 81 | + } else { |
| 82 | + assert.rejects( |
| 83 | + promiseFn(p, ...args), { |
| 84 | + code: 'ERR_FS_EISDIR', |
| 85 | + }, |
| 86 | + failMsg |
| 87 | + ).then(common.mustCall()); |
| 88 | + } |
| 89 | +} |
| 90 | + |
| 91 | +function check(asyncFn, syncFn, promiseFn, |
| 92 | + { suffix, fail, args = [] }) { |
| 93 | + const file = nextFile(); |
| 94 | + fs.writeFile(file, 'data', (e) => { |
| 95 | + assert.ifError(e); |
| 96 | + const paths = generatePaths(file, suffix); |
| 97 | + for (const p of paths) { |
| 98 | + if (asyncFn) checkAsyncFn(asyncFn, p, args, fail); |
| 99 | + if (promiseFn) checkPromiseFn(promiseFn, p, args, fail); |
| 100 | + if (syncFn) checkSyncFn(syncFn, p, args, fail); |
| 101 | + } |
| 102 | + }); |
| 103 | +} |
| 104 | + |
| 105 | +function checkManyToMany(asyncFn, syncFn, promiseFn, |
| 106 | + { suffix, fail, args = [] }) { |
| 107 | + const source = nextFile(); |
| 108 | + fs.writeFile(source, 'data', (err) => { |
| 109 | + assert.ifError(err); |
| 110 | + if (asyncFn) { |
| 111 | + generateNewPaths(suffix) |
| 112 | + .forEach((p) => checkAsyncFn(asyncFn, source, [p, ...args], fail)); |
| 113 | + } |
| 114 | + if (promiseFn) { |
| 115 | + generateNewPaths(suffix) |
| 116 | + .forEach((p) => checkPromiseFn(promiseFn, source, [p, ...args], fail)); |
| 117 | + } |
| 118 | + if (syncFn) { |
| 119 | + generateNewPaths(suffix) |
| 120 | + .forEach((p) => checkSyncFn(syncFn, source, [p, ...args], fail)); |
| 121 | + } |
| 122 | + }); |
| 123 | +} |
| 124 | +check(fs.readFile, fs.readFileSync, fs.promises.readFile, |
| 125 | + { suffix: '', fail: false }); |
| 126 | +check(fs.readFile, fs.readFileSync, fs.promises.readFile, |
| 127 | + { suffix: '/', fail: true }); |
| 128 | +check(fs.writeFile, fs.writeFileSync, fs.promises.writeFile, |
| 129 | + { suffix: '', fail: false, args: ['data'] }); |
| 130 | +check(fs.writeFile, fs.writeFileSync, fs.promises.writeFile, |
| 131 | + { suffix: '/', fail: true, args: ['data'] }); |
| 132 | +check(fs.appendFile, fs.appendFileSync, fs.promises.appendFile, |
| 133 | + { suffix: '', fail: false, args: ['data'] }); |
| 134 | +check(fs.appendFile, fs.appendFileSync, fs.promises.appendFile, |
| 135 | + { suffix: '/', fail: true, args: ['data'] }); |
| 136 | +check(undefined, fs.createReadStream, undefined, |
| 137 | + { suffix: '', fail: false }); |
| 138 | +check(undefined, fs.createReadStream, undefined, |
| 139 | + { suffix: '/', fail: true }); |
| 140 | +check(undefined, fs.createWriteStream, undefined, |
| 141 | + { suffix: '', fail: false }); |
| 142 | +check(undefined, fs.createWriteStream, undefined, |
| 143 | + { suffix: '/', fail: true }); |
| 144 | +check(fs.truncate, fs.truncateSync, fs.promises.truncate, |
| 145 | + { suffix: '', fail: false, args: [42] }); |
| 146 | +check(fs.truncate, fs.truncateSync, fs.promises.truncate, |
| 147 | + { suffix: '/', fail: true, args: [42] }); |
| 148 | + |
| 149 | +check(fs.open, fs.openSync, fs.promises.open, { suffix: '', fail: false }); |
| 150 | +check(fs.open, fs.openSync, fs.promises.open, { suffix: '/', fail: true }); |
| 151 | + |
| 152 | +checkManyToMany(fs.copyFile, fs.copyFileSync, fs.promises.copyFile, |
| 153 | + { suffix: '', fail: false }); |
| 154 | + |
| 155 | +checkManyToMany(fs.copyFile, fs.copyFileSync, fs.promises.copyFile, |
| 156 | + { suffix: '/', fail: true }); |
| 157 | + |
| 158 | +if (common.isWindows) { |
| 159 | + check(fs.readFile, fs.readFileSync, fs.promises.readFile, |
| 160 | + { suffix: '\\', fail: true }); |
| 161 | + check(fs.writeFile, fs.writeFileSync, fs.promises.writeFile, |
| 162 | + { suffix: '\\', fail: true, args: ['data'] }); |
| 163 | + check(fs.appendFile, fs.appendFileSync, fs.promises.appendFile, |
| 164 | + { suffix: '\\', fail: true, args: ['data'] }); |
| 165 | + check(undefined, fs.createReadStream, undefined, |
| 166 | + { suffix: '\\', fail: true }); |
| 167 | + check(undefined, fs.createWriteStream, undefined, |
| 168 | + { suffix: '\\', fail: true }); |
| 169 | + check(fs.truncate, fs.truncateSync, fs.promises.truncate, |
| 170 | + { suffix: '\\', fail: true, args: [42] }); |
| 171 | + check(fs.open, fs.openSync, fs.promises.open, { suffix: '\\', fail: true }); |
| 172 | + checkManyToMany(fs.copyFile, fs.copyFileSync, fs.promises.copyFile, |
| 173 | + { suffix: '\\', fail: true }); |
| 174 | +} |
0 commit comments