mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
975f6c1f70
PR-URL: https://github.com/nodejs/node/pull/20504 Refs: https://github.com/nodejs/TSC/issues/389 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Myles Borins <myles.borins@gmail.com> Reviewed-By: Shingo Inoue <leko.noor@gmail.com> Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: Tiancheng "Timothy" Gu <timothygu99@gmail.com> Reviewed-By: Ali Ijaz Sheikh <ofrobots@google.com>
50 lines
1.3 KiB
JavaScript
50 lines
1.3 KiB
JavaScript
'use strict';
|
|
|
|
const common = require('../common');
|
|
const fs = require('fs');
|
|
const fsPromises = fs.promises;
|
|
const path = require('path');
|
|
const tmpdir = require('../common/tmpdir');
|
|
const assert = require('assert');
|
|
const tmpDir = tmpdir.path;
|
|
|
|
tmpdir.refresh();
|
|
|
|
common.crashOnUnhandledRejection();
|
|
|
|
const dest = path.resolve(tmpDir, 'tmp.txt');
|
|
const buffer = Buffer.from('abc'.repeat(1000));
|
|
const buffer2 = Buffer.from('xyz'.repeat(1000));
|
|
|
|
async function doWrite() {
|
|
await fsPromises.writeFile(dest, buffer);
|
|
const data = fs.readFileSync(dest);
|
|
assert.deepStrictEqual(data, buffer);
|
|
}
|
|
|
|
async function doAppend() {
|
|
await fsPromises.appendFile(dest, buffer2);
|
|
const data = fs.readFileSync(dest);
|
|
const buf = Buffer.concat([buffer, buffer2]);
|
|
assert.deepStrictEqual(buf, data);
|
|
}
|
|
|
|
async function doRead() {
|
|
const data = await fsPromises.readFile(dest);
|
|
const buf = fs.readFileSync(dest);
|
|
assert.deepStrictEqual(buf, data);
|
|
}
|
|
|
|
async function doReadWithEncoding() {
|
|
const data = await fsPromises.readFile(dest, 'utf-8');
|
|
const syncData = fs.readFileSync(dest, 'utf-8');
|
|
assert.strictEqual(typeof data, 'string');
|
|
assert.deepStrictEqual(data, syncData);
|
|
}
|
|
|
|
doWrite()
|
|
.then(doAppend)
|
|
.then(doRead)
|
|
.then(doReadWithEncoding)
|
|
.then(common.mustCall());
|