mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
981 B
48 lines
981 B
'use strict';
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
const http = require('http');
|
|
const 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();
|
|
}
|
|
|