mirror of
https://github.com/nodejs/node.git
synced 2025-04-29 06:19:07 +00:00

PR-URL: https://github.com/nodejs/node/pull/28858 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
27 lines
781 B
JavaScript
27 lines
781 B
JavaScript
'use strict';
|
|
require('../common');
|
|
const assert = require('assert');
|
|
const fixtures = require('../common/fixtures');
|
|
const tmpdir = require('../common/tmpdir');
|
|
|
|
const { access, copyFile, open } = require('fs').promises;
|
|
const path = require('path');
|
|
|
|
async function validateSync() {
|
|
tmpdir.refresh();
|
|
const dest = path.resolve(tmpdir.path, 'baz.js');
|
|
await copyFile(fixtures.path('baz.js'), dest);
|
|
await access(dest, 'r');
|
|
const handle = await open(dest, 'r+');
|
|
await handle.datasync();
|
|
await handle.sync();
|
|
const buf = Buffer.from('hello world');
|
|
await handle.write(buf);
|
|
const ret = await handle.read(Buffer.alloc(11), 0, 11, 0);
|
|
assert.strictEqual(ret.bytesRead, 11);
|
|
assert.deepStrictEqual(ret.buffer, buf);
|
|
await handle.close();
|
|
}
|
|
|
|
validateSync();
|