mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
7c79490bfb
Expose `common.refreshTmpDir()` and only call it for tests that use common.tmpDir or common.PIPE. A positive side effect is the removal of a code smell where child processes were detected by the presence of `.send()`. Now each process can decide for itself if it needs to refresh tmpDir. PR-URL: https://github.com/nodejs/io.js/pull/1954 Reviewed-By: Rod Vagg <rod@vagg.org> Reviewed-By: Johan Bergström <bugs@bergstroem.nu>
44 lines
962 B
JavaScript
44 lines
962 B
JavaScript
'use strict';
|
|
var common = require('../common');
|
|
var assert = require('assert');
|
|
var 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', function(fd) {
|
|
stream.destroy();
|
|
open_cb_called++;
|
|
});
|
|
process.on('exit', function() {
|
|
assert.equal(open_cb_called, 1);
|
|
});
|
|
var open_cb_called = 0;
|
|
}
|
|
|
|
function test3(stream) {
|
|
stream.on('open', function(fd) {
|
|
stream.destroy();
|
|
stream.destroy();
|
|
open_cb_called++;
|
|
});
|
|
process.on('exit', function() {
|
|
assert.equal(open_cb_called, 1);
|
|
});
|
|
var open_cb_called = 0;
|
|
}
|