-
Notifications
You must be signed in to change notification settings - Fork 29.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test: simplify node-report/test-exception.js
PR-URL: #26277 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Richard Lau <riclau@uk.ibm.com>
- Loading branch information
Showing
1 changed file
with
18 additions
and
36 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 |
---|---|---|
@@ -1,42 +1,24 @@ | ||
// Flags: --experimental-report --diagnostic-report-uncaught-exception | ||
'use strict'; | ||
|
||
// Testcase to produce report on uncaught exception | ||
// Test producing a report on uncaught exception. | ||
const common = require('../common'); | ||
common.skipIfReportDisabled(); | ||
if (process.argv[2] === 'child') { | ||
function myException(request, response) { | ||
const m = '*** test-exception.js: throwing uncaught Error'; | ||
throw new Error(m); | ||
} | ||
const assert = require('assert'); | ||
const helper = require('../common/report'); | ||
const tmpdir = require('../common/tmpdir'); | ||
const error = new Error('test error'); | ||
|
||
myException(); | ||
common.expectWarning('ExperimentalWarning', | ||
'report is an experimental feature. This feature could ' + | ||
'change at any time'); | ||
tmpdir.refresh(); | ||
process.report.setOptions({ path: tmpdir.path }); | ||
|
||
} else { | ||
const helper = require('../common/report.js'); | ||
const tmpdir = require('../common/tmpdir'); | ||
tmpdir.refresh(); | ||
const spawn = require('child_process').spawn; | ||
const assert = require('assert'); | ||
process.on('uncaughtException', common.mustCall((err) => { | ||
assert.strictEqual(err, error); | ||
const reports = helper.findReports(process.pid, tmpdir.path); | ||
assert.strictEqual(reports.length, 1); | ||
helper.validate(reports[0]); | ||
})); | ||
|
||
const child = spawn(process.execPath, | ||
['--experimental-report', | ||
'--diagnostic-report-uncaught-exception', | ||
__filename, 'child'], | ||
{ cwd: tmpdir.path }); | ||
// Capture stderr output from the child process | ||
let stderr = ''; | ||
child.stderr.on('data', (chunk) => { | ||
stderr += chunk; | ||
}); | ||
child.on('exit', common.mustCall((code) => { | ||
const report_msg = 'No reports found'; | ||
const process_msg = 'Process exited unexpectedly'; | ||
assert.strictEqual(code, 1, process_msg + ':' + code); | ||
assert.ok(new RegExp('myException').test(stderr), | ||
'Check for expected stack trace frame in stderr'); | ||
const reports = helper.findReports(child.pid, tmpdir.path); | ||
assert.strictEqual(reports.length, 1, report_msg); | ||
const report = reports[0]; | ||
helper.validate(report); | ||
})); | ||
} | ||
throw error; |