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

common.PIPE resides in the temp directory (except on Windows). Insure that the temp directory is refreshed in tests that use common.PIPE. PR-URL: https://github.com/nodejs/node/pull/3231 Fixes: https://github.com/nodejs/node/issues/3227 Reviewed-By: Johan Bergström <bugs@bergstroem.nu>
49 lines
973 B
JavaScript
49 lines
973 B
JavaScript
'use strict';
|
|
var common = require('../common'),
|
|
assert = require('assert'),
|
|
http = require('http'),
|
|
domain = require('domain');
|
|
|
|
var gotDomainError = false;
|
|
var d;
|
|
|
|
process.on('exit', function() {
|
|
assert(gotDomainError);
|
|
});
|
|
|
|
common.refreshTmpDir();
|
|
|
|
// first fire up a simple HTTP server
|
|
var server = http.createServer(function(req, res) {
|
|
res.writeHead(200);
|
|
res.end();
|
|
server.close();
|
|
});
|
|
server.listen(common.PIPE, function() {
|
|
// create a domain
|
|
d = domain.create();
|
|
d.run(test);
|
|
});
|
|
|
|
function test() {
|
|
|
|
d.on('error', function(err) {
|
|
gotDomainError = true;
|
|
assert.equal('should be caught by domain', err.message);
|
|
});
|
|
|
|
var req = http.get({
|
|
socketPath: common.PIPE,
|
|
headers: {'Content-Length':'1'},
|
|
method: 'POST',
|
|
path: '/'
|
|
});
|
|
req.on('response', function(res) {
|
|
res.on('end', function() {
|
|
res.emit('error', new Error('should be caught by domain'));
|
|
});
|
|
res.resume();
|
|
});
|
|
req.end();
|
|
}
|