mirror of
https://github.com/nodejs/node.git
synced 2025-05-06 21:25:20 +00:00

PR-URL: https://github.com/nodejs/node/pull/10550 Reviewed-By: Rich Trott <rtrott@gmail.com>
33 lines
718 B
JavaScript
33 lines
718 B
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
const fs = require('fs');
|
|
|
|
common.refreshTmpDir();
|
|
|
|
test1(fs.createReadStream(__filename));
|
|
test2(fs.createReadStream(__filename));
|
|
test3(fs.createReadStream(__filename));
|
|
|
|
test1(fs.createWriteStream(common.tmpDir + '/dummy1'));
|
|
test2(fs.createWriteStream(common.tmpDir + '/dummy2'));
|
|
test3(fs.createWriteStream(common.tmpDir + '/dummy3'));
|
|
|
|
function test1(stream) {
|
|
stream.destroy();
|
|
stream.destroy();
|
|
}
|
|
|
|
function test2(stream) {
|
|
stream.destroy();
|
|
stream.on('open', common.mustCall(function(fd) {
|
|
stream.destroy();
|
|
}));
|
|
}
|
|
|
|
function test3(stream) {
|
|
stream.on('open', common.mustCall(function(fd) {
|
|
stream.destroy();
|
|
stream.destroy();
|
|
}));
|
|
}
|