1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
'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);
});
// 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();
}
|