mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
415905712e
A subtest about the behavior when `autoClose=false`. PR-URL: https://github.com/nodejs/node/pull/54671 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
105 lines
2.7 KiB
JavaScript
105 lines
2.7 KiB
JavaScript
// Flags: --expose-internals
|
|
'use strict';
|
|
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
const fs = require('fs');
|
|
const SyncWriteStream = require('internal/fs/sync_write_stream');
|
|
|
|
const tmpdir = require('../common/tmpdir');
|
|
tmpdir.refresh();
|
|
|
|
const filename = tmpdir.resolve('sync-write-stream.txt');
|
|
|
|
// Verify constructing the instance with default options.
|
|
{
|
|
const stream = new SyncWriteStream(1);
|
|
|
|
assert.strictEqual(stream.fd, 1);
|
|
assert.strictEqual(stream.readable, false);
|
|
assert.strictEqual(stream.autoClose, true);
|
|
}
|
|
|
|
// Verify constructing the instance with specified options.
|
|
{
|
|
const stream = new SyncWriteStream(1, { autoClose: false });
|
|
|
|
assert.strictEqual(stream.fd, 1);
|
|
assert.strictEqual(stream.readable, false);
|
|
assert.strictEqual(stream.autoClose, false);
|
|
}
|
|
|
|
// Verify that the file will be written synchronously.
|
|
{
|
|
const fd = fs.openSync(filename, 'w');
|
|
const stream = new SyncWriteStream(fd);
|
|
const chunk = Buffer.from('foo');
|
|
|
|
let calledSynchronously = false;
|
|
stream._write(chunk, null, common.mustCall(() => {
|
|
calledSynchronously = true;
|
|
}, 1));
|
|
|
|
assert.ok(calledSynchronously);
|
|
assert.strictEqual(fs.readFileSync(filename).equals(chunk), true);
|
|
|
|
fs.closeSync(fd);
|
|
}
|
|
|
|
// Verify that the stream will unset the fd after destroy().
|
|
{
|
|
const fd = fs.openSync(filename, 'w');
|
|
const stream = new SyncWriteStream(fd);
|
|
|
|
stream.on('close', common.mustCall());
|
|
assert.strictEqual(stream.destroy(), stream);
|
|
assert.strictEqual(stream.fd, null);
|
|
}
|
|
|
|
// Verify that the stream will unset the fd after destroySoon().
|
|
{
|
|
const fd = fs.openSync(filename, 'w');
|
|
const stream = new SyncWriteStream(fd);
|
|
|
|
stream.on('close', common.mustCall());
|
|
assert.strictEqual(stream.destroySoon(), stream);
|
|
assert.strictEqual(stream.fd, null);
|
|
}
|
|
|
|
// Verify that the file is not closed when autoClose=false
|
|
{
|
|
const fd = fs.openSync(filename, 'w');
|
|
const stream = new SyncWriteStream(fd, { autoClose: false });
|
|
|
|
stream.on('close', common.mustCall());
|
|
|
|
assert.strictEqual(stream.destroy(), stream);
|
|
fs.fstatSync(fd); // Does not throw
|
|
fs.closeSync(fd);
|
|
}
|
|
|
|
// Verify that calling end() will also destroy the stream.
|
|
{
|
|
const fd = fs.openSync(filename, 'w');
|
|
const stream = new SyncWriteStream(fd);
|
|
|
|
assert.strictEqual(stream.fd, fd);
|
|
|
|
stream.end();
|
|
stream.on('close', common.mustCall(() => {
|
|
assert.strictEqual(stream.fd, null);
|
|
}));
|
|
}
|
|
|
|
// Verify that an error on _write() triggers an 'error' event.
|
|
{
|
|
const fd = fs.openSync(filename, 'w');
|
|
const stream = new SyncWriteStream(fd);
|
|
|
|
assert.strictEqual(stream.fd, fd);
|
|
stream._write({}, null, common.mustCall((err) => {
|
|
assert(err);
|
|
fs.closeSync(fd);
|
|
}));
|
|
}
|