mirror of
https://github.com/nodejs/node.git
synced 2024-11-28 22:46:31 +01:00
3e1b1dd4a9
The copyright and license notice is already in the LICENSE file. There is no justifiable reason to also require that it be included in every file, since the individual files are not individually distributed except as part of the entire package.
46 lines
934 B
JavaScript
46 lines
934 B
JavaScript
var common = require('../common'),
|
|
assert = require('assert'),
|
|
http = require('http'),
|
|
domain = require('domain');
|
|
|
|
var gotDomainError = false;
|
|
var d;
|
|
|
|
process.on('exit', function() {
|
|
assert(gotDomainError);
|
|
});
|
|
|
|
// 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();
|
|
}
|