mirror of
https://github.com/oven-sh/bun
synced 2026-02-10 10:58:56 +00:00
Co-authored-by: Dylan Conway <dylan.conway567@gmail.com> Co-authored-by: Meghan Denny <meghan@bun.sh> Co-authored-by: dylan-conway <35280289+dylan-conway@users.noreply.github.com> Co-authored-by: Jarred Sumner <jarred@jarredsumner.com>
40 lines
1.0 KiB
JavaScript
40 lines
1.0 KiB
JavaScript
'use strict';
|
|
require('../common');
|
|
const common = require('../common');
|
|
const fixtures = require('../common/fixtures');
|
|
const assert = require('assert');
|
|
const fs = require('fs');
|
|
const filepath = fixtures.path('x.txt');
|
|
const fd = fs.openSync(filepath, 'r');
|
|
const fsPromises = fs.promises;
|
|
|
|
const buffer = new Uint8Array();
|
|
|
|
assert.throws(
|
|
() => fs.readSync(fd, buffer, 0, 10, 0),
|
|
{
|
|
code: 'ERR_INVALID_ARG_VALUE',
|
|
message: 'The argument \'buffer\' is empty and cannot be written.'
|
|
}
|
|
);
|
|
|
|
assert.throws(
|
|
() => fs.read(fd, buffer, 0, 1, 0, common.mustNotCall()),
|
|
{
|
|
code: 'ERR_INVALID_ARG_VALUE',
|
|
message: 'The argument \'buffer\' is empty and cannot be written.'
|
|
}
|
|
);
|
|
|
|
(async () => {
|
|
const filehandle = await fsPromises.open(filepath, 'r');
|
|
assert.rejects(
|
|
() => filehandle.read(buffer, 0, 1, 0),
|
|
{
|
|
code: 'ERR_INVALID_ARG_VALUE',
|
|
// message: 'The argument \'buffer\' is empty and cannot be written. ' +
|
|
// 'Received Uint8Array(0) []'
|
|
}
|
|
).then(common.mustCall());
|
|
})().then(common.mustCall());
|