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.
40 lines
859 B
40 lines
859 B
'use strict';
|
|
require('../common');
|
|
var domain = require('domain');
|
|
var assert = require('assert');
|
|
|
|
var timeout_err, timeout, immediate_err;
|
|
|
|
var timeoutd = domain.create();
|
|
|
|
timeoutd.on('error', function(e) {
|
|
timeout_err = e;
|
|
clearTimeout(timeout);
|
|
});
|
|
|
|
timeoutd.run(function() {
|
|
setTimeout(function() {
|
|
throw new Error('Timeout UNREFd');
|
|
}).unref();
|
|
});
|
|
|
|
var immediated = domain.create();
|
|
|
|
immediated.on('error', function(e) {
|
|
immediate_err = e;
|
|
});
|
|
|
|
immediated.run(function() {
|
|
setImmediate(function() {
|
|
throw new Error('Immediate Error');
|
|
});
|
|
});
|
|
|
|
timeout = setTimeout(function() {}, 10 * 1000);
|
|
|
|
process.on('exit', function() {
|
|
assert.equal(timeout_err.message, 'Timeout UNREFd',
|
|
'Domain should catch timer error');
|
|
assert.equal(immediate_err.message, 'Immediate Error',
|
|
'Domain should catch immediate error');
|
|
});
|
|
|