2020-03-16 13:50:27 +00:00
|
|
|
'use strict';
|
2020-07-14 15:45:39 +00:00
|
|
|
const common = require('../common');
|
2020-03-16 13:50:27 +00:00
|
|
|
const assert = require('assert');
|
|
|
|
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() {
|
2023-08-15 13:45:14 +00:00
|
|
|
return tmpdir.resolve(`readv_promises_${++cnt}.txt`);
|
2020-03-16 13:50:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
const allocateEmptyBuffers = (combinedLength) => {
|
|
|
|
const bufferArr = [];
|
|
|
|
// Allocate two buffers, each half the size of exptectedBuff
|
2020-11-24 13:11:20 +00:00
|
|
|
bufferArr[0] = Buffer.alloc(Math.floor(combinedLength / 2));
|
2020-03-16 13:50:27 +00:00
|
|
|
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 bufferArr = allocateEmptyBuffers(exptectedBuff.length);
|
|
|
|
const expectedLength = exptectedBuff.length;
|
|
|
|
|
|
|
|
let { bytesRead, buffers } = await handle.readv([Buffer.from('')],
|
|
|
|
null);
|
2021-10-27 16:15:11 +00:00
|
|
|
assert.strictEqual(bytesRead, 0);
|
2020-03-16 13:50:27 +00:00
|
|
|
assert.deepStrictEqual(buffers, [Buffer.from('')]);
|
|
|
|
|
|
|
|
({ bytesRead, buffers } = await handle.readv(bufferArr, null));
|
2021-10-27 16:15:11 +00:00
|
|
|
assert.strictEqual(bytesRead, expectedLength);
|
2020-03-16 13:50:27 +00:00
|
|
|
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 bufferArr = allocateEmptyBuffers(exptectedBuff.length);
|
|
|
|
const expectedLength = exptectedBuff.length;
|
|
|
|
|
|
|
|
let { bytesRead, buffers } = await handle.readv([Buffer.from('')]);
|
2021-10-27 16:15:11 +00:00
|
|
|
assert.strictEqual(bytesRead, 0);
|
2020-03-16 13:50:27 +00:00
|
|
|
assert.deepStrictEqual(buffers, [Buffer.from('')]);
|
|
|
|
|
|
|
|
({ bytesRead, buffers } = await handle.readv(bufferArr));
|
2021-10-27 16:15:11 +00:00
|
|
|
assert.strictEqual(bytesRead, expectedLength);
|
2020-03-16 13:50:27 +00:00
|
|
|
assert.deepStrictEqual(buffers, bufferArr);
|
|
|
|
assert(Buffer.concat(bufferArr).equals(await fs.readFile(filename)));
|
|
|
|
handle.close();
|
|
|
|
}
|
2020-07-14 15:45:39 +00:00
|
|
|
})().then(common.mustCall());
|