node/test/parallel/test-fs-write-stream-file-handle.js
Livia Medeiros 74e0ca3f49
test: use tmpdir.resolve() in fs tests
PR-URL: https://github.com/nodejs/node/pull/49125
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Reviewed-By: Chemi Atlow <chemi@atlow.co.il>
2023-08-15 13:45:14 +00:00

21 lines
611 B
JavaScript

'use strict';
const common = require('../common');
const fs = require('fs');
const assert = require('assert');
const tmpdir = require('../common/tmpdir');
const file = tmpdir.resolve('write_stream_filehandle_test.txt');
const input = 'hello world';
tmpdir.refresh();
fs.promises.open(file, 'w+').then((handle) => {
handle.on('close', common.mustCall());
const stream = fs.createWriteStream(null, { fd: handle });
stream.end(input);
stream.on('close', common.mustCall(() => {
const output = fs.readFileSync(file, 'utf-8');
assert.strictEqual(output, input);
}));
}).then(common.mustCall());