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>
52 lines
1.1 KiB
JavaScript
52 lines
1.1 KiB
JavaScript
'use strict';
|
|
var common = require('../common');
|
|
var assert = require('assert');
|
|
var http = require('http');
|
|
var fs = require('fs');
|
|
var path = require('path');
|
|
|
|
common.refreshTmpDir();
|
|
|
|
var file = path.join(common.tmpDir, 'http-pipe-fs-test.txt');
|
|
var requests = 0;
|
|
|
|
var server = http.createServer(function(req, res) {
|
|
++requests;
|
|
var stream = fs.createWriteStream(file);
|
|
req.pipe(stream);
|
|
stream.on('close', function() {
|
|
res.writeHead(200);
|
|
res.end();
|
|
});
|
|
}).listen(common.PORT, function() {
|
|
http.globalAgent.maxSockets = 1;
|
|
|
|
for (var i = 0; i < 2; ++i) {
|
|
(function(i) {
|
|
var req = http.request({
|
|
port: common.PORT,
|
|
method: 'POST',
|
|
headers: {
|
|
'Content-Length': 5
|
|
}
|
|
}, function(res) {
|
|
res.on('end', function() {
|
|
common.debug('res' + i + ' end');
|
|
if (i === 2) {
|
|
server.close();
|
|
}
|
|
});
|
|
res.resume();
|
|
});
|
|
req.on('socket', function(s) {
|
|
common.debug('req' + i + ' start');
|
|
});
|
|
req.end('12345');
|
|
}(i + 1));
|
|
}
|
|
});
|
|
|
|
process.on('exit', function() {
|
|
assert.equal(requests, 2);
|
|
});
|