-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[test] add immediate and interval exception tests
- Loading branch information
1 parent
5d7695a
commit 3cc5607
Showing
2 changed files
with
64 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
'use strict'; | ||
|
||
if (process.env.hasOwnProperty('ASYNC_HOOK_TEST_CHILD')) { | ||
const asyncHook = require('../'); | ||
|
||
asyncHook.enable(); | ||
|
||
setImmediate(function () { | ||
throw new Error('test error'); | ||
}); | ||
} else { | ||
const spawn = require('child_process').spawn; | ||
const endpoint = require('endpoint'); | ||
|
||
const child = spawn(process.execPath, [__filename], { | ||
env: Object.assign({ ASYNC_HOOK_TEST_CHILD: '' }, process.env), | ||
stdio: ['ignore', 1, 'pipe'] | ||
}); | ||
|
||
let stderr = null; | ||
child.stderr.pipe(endpoint(function (err, _stderr) { | ||
if (err) throw err; | ||
stderr = _stderr; | ||
})); | ||
|
||
child.once('close', function (statusCode) { | ||
if (statusCode !== 1 || stderr.toString().indexOf('test error') === -1) { | ||
process.stderr.write(stderr); | ||
process.exit(statusCode); | ||
} | ||
}); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
'use strict'; | ||
|
||
if (process.env.hasOwnProperty('ASYNC_HOOK_TEST_CHILD')) { | ||
const asyncHook = require('../'); | ||
|
||
asyncHook.enable(); | ||
|
||
setInterval(function () { | ||
throw new Error('test error'); | ||
}); | ||
} else { | ||
const spawn = require('child_process').spawn; | ||
const endpoint = require('endpoint'); | ||
|
||
const child = spawn(process.execPath, [__filename], { | ||
env: Object.assign({ ASYNC_HOOK_TEST_CHILD: '' }, process.env), | ||
stdio: ['ignore', 1, 'pipe'] | ||
}); | ||
|
||
let stderr = null; | ||
child.stderr.pipe(endpoint(function (err, _stderr) { | ||
if (err) throw err; | ||
stderr = _stderr; | ||
})); | ||
|
||
child.once('close', function (statusCode) { | ||
if (statusCode !== 1 || stderr.toString().indexOf('test error') === -1) { | ||
process.stderr.write(stderr); | ||
process.exit(statusCode); | ||
} | ||
}); | ||
} |