-
Notifications
You must be signed in to change notification settings - Fork 29.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixes: #2298 PR-URL: #32356 Reviewed-By: Anna Henningsen <[email protected]> Reviewed-By: James M Snell <[email protected]>
- Loading branch information
1 parent
6d86651
commit 30d55a3
Showing
7 changed files
with
410 additions
and
0 deletions.
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
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
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,67 @@ | ||
'use strict'; | ||
|
||
require('../common'); | ||
const assert = require('assert'); | ||
const path = require('path'); | ||
const fs = require('fs').promises; | ||
const tmpdir = require('../common/tmpdir'); | ||
|
||
tmpdir.refresh(); | ||
|
||
const expected = 'ümlaut. Лорем 運務ホソモ指及 आपको करने विकास 紙読決多密所 أضف'; | ||
const exptectedBuff = Buffer.from(expected); | ||
|
||
let cnt = 0; | ||
function getFileName() { | ||
return path.join(tmpdir.path, `readv_promises_${++cnt}.txt`); | ||
} | ||
|
||
const allocateEmptyBuffers = (combinedLength) => { | ||
const bufferArr = []; | ||
// Allocate two buffers, each half the size of exptectedBuff | ||
bufferArr[0] = Buffer.alloc(Math.floor(combinedLength / 2)), | ||
bufferArr[1] = Buffer.alloc(combinedLength - bufferArr[0].length); | ||
|
||
return bufferArr; | ||
}; | ||
|
||
(async () => { | ||
{ | ||
const filename = getFileName(); | ||
await fs.writeFile(filename, exptectedBuff); | ||
const handle = await fs.open(filename, 'r'); | ||
// const buffer = Buffer.from(expected); | ||
const bufferArr = allocateEmptyBuffers(exptectedBuff.length); | ||
const expectedLength = exptectedBuff.length; | ||
|
||
let { bytesRead, buffers } = await handle.readv([Buffer.from('')], | ||
null); | ||
assert.deepStrictEqual(bytesRead, 0); | ||
assert.deepStrictEqual(buffers, [Buffer.from('')]); | ||
|
||
({ bytesRead, buffers } = await handle.readv(bufferArr, null)); | ||
assert.deepStrictEqual(bytesRead, expectedLength); | ||
assert.deepStrictEqual(buffers, bufferArr); | ||
assert(Buffer.concat(bufferArr).equals(await fs.readFile(filename))); | ||
handle.close(); | ||
} | ||
|
||
{ | ||
const filename = getFileName(); | ||
await fs.writeFile(filename, exptectedBuff); | ||
const handle = await fs.open(filename, 'r'); | ||
// const buffer = Buffer.from(expected); | ||
const bufferArr = allocateEmptyBuffers(exptectedBuff.length); | ||
const expectedLength = exptectedBuff.length; | ||
|
||
let { bytesRead, buffers } = await handle.readv([Buffer.from('')]); | ||
assert.deepStrictEqual(bytesRead, 0); | ||
assert.deepStrictEqual(buffers, [Buffer.from('')]); | ||
|
||
({ bytesRead, buffers } = await handle.readv(bufferArr)); | ||
assert.deepStrictEqual(bytesRead, expectedLength); | ||
assert.deepStrictEqual(buffers, bufferArr); | ||
assert(Buffer.concat(bufferArr).equals(await fs.readFile(filename))); | ||
handle.close(); | ||
} | ||
})(); |
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,92 @@ | ||
'use strict'; | ||
|
||
require('../common'); | ||
const assert = require('assert'); | ||
const fs = require('fs'); | ||
const tmpdir = require('../common/tmpdir'); | ||
|
||
tmpdir.refresh(); | ||
|
||
const expected = 'ümlaut. Лорем 運務ホソモ指及 आपको करने विकास 紙読決多密所 أضف'; | ||
|
||
const exptectedBuff = Buffer.from(expected); | ||
const expectedLength = exptectedBuff.length; | ||
|
||
const filename = 'readv_sync.txt'; | ||
fs.writeFileSync(filename, exptectedBuff); | ||
|
||
const allocateEmptyBuffers = (combinedLength) => { | ||
const bufferArr = []; | ||
// Allocate two buffers, each half the size of exptectedBuff | ||
bufferArr[0] = Buffer.alloc(Math.floor(combinedLength / 2)), | ||
bufferArr[1] = Buffer.alloc(combinedLength - bufferArr[0].length); | ||
|
||
return bufferArr; | ||
}; | ||
|
||
// fs.readvSync with array of buffers with all parameters | ||
{ | ||
const fd = fs.openSync(filename, 'r'); | ||
|
||
const bufferArr = allocateEmptyBuffers(exptectedBuff.length); | ||
|
||
let read = fs.readvSync(fd, [Buffer.from('')], 0); | ||
assert.deepStrictEqual(read, 0); | ||
|
||
read = fs.readvSync(fd, bufferArr, 0); | ||
assert.deepStrictEqual(read, expectedLength); | ||
|
||
fs.closeSync(fd); | ||
|
||
assert(Buffer.concat(bufferArr).equals(fs.readFileSync(filename))); | ||
} | ||
|
||
// fs.readvSync with array of buffers without position | ||
{ | ||
const fd = fs.openSync(filename, 'r'); | ||
|
||
const bufferArr = allocateEmptyBuffers(exptectedBuff.length); | ||
|
||
let read = fs.readvSync(fd, [Buffer.from('')]); | ||
assert.deepStrictEqual(read, 0); | ||
|
||
read = fs.readvSync(fd, bufferArr); | ||
assert.deepStrictEqual(read, expectedLength); | ||
|
||
fs.closeSync(fd); | ||
|
||
assert(Buffer.concat(bufferArr).equals(fs.readFileSync(filename))); | ||
} | ||
|
||
/** | ||
* Testing with incorrect arguments | ||
*/ | ||
const wrongInputs = [false, 'test', {}, [{}], ['sdf'], null, undefined]; | ||
|
||
{ | ||
const fd = fs.openSync(filename, 'r'); | ||
|
||
wrongInputs.forEach((wrongInput) => { | ||
assert.throws( | ||
() => fs.readvSync(fd, wrongInput, null), { | ||
code: 'ERR_INVALID_ARG_TYPE', | ||
name: 'TypeError' | ||
} | ||
); | ||
}); | ||
|
||
fs.closeSync(fd); | ||
} | ||
|
||
{ | ||
// fs.readv with wrong fd argument | ||
wrongInputs.forEach((wrongInput) => { | ||
assert.throws( | ||
() => fs.readvSync(wrongInput), | ||
{ | ||
code: 'ERR_INVALID_ARG_TYPE', | ||
name: 'TypeError' | ||
} | ||
); | ||
}); | ||
} |
Oops, something went wrong.