-
-
Notifications
You must be signed in to change notification settings - Fork 31.6k
src: add cli option to exclude env vars on dr #55697
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -105,6 +105,13 @@ const report = { | |
|
||
nr.setReportOnUncaughtException(trigger); | ||
}, | ||
get excludeEnv() { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Would you mind adding a setter like There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Done |
||
return nr.getExcludeEnv(); | ||
}, | ||
set excludeEnv(b) { | ||
validateBoolean(b, 'excludeEnv'); | ||
nr.setExcludeEnv(b); | ||
}, | ||
}; | ||
|
||
function addSignalHandler(sig) { | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
// Flags: --report-exclude-env | ||
'use strict'; | ||
|
||
// Test producing a report via API call, using the no-hooks/no-signal interface. | ||
require('../common'); | ||
const assert = require('assert'); | ||
const fs = require('fs'); | ||
const path = require('path'); | ||
const helper = require('../common/report'); | ||
const tmpdir = require('../common/tmpdir'); | ||
|
||
tmpdir.refresh(); | ||
process.report.directory = tmpdir.path; | ||
|
||
function validate() { | ||
const reports = helper.findReports(process.pid, tmpdir.path); | ||
assert.strictEqual(reports.length, 1); | ||
helper.validate(reports[0], arguments[0]); | ||
fs.unlinkSync(reports[0]); | ||
return reports[0]; | ||
} | ||
|
||
{ | ||
// Test with no arguments. | ||
process.report.writeReport(); | ||
validate(); | ||
} | ||
|
||
{ | ||
// Test with an error argument. | ||
process.report.writeReport(new Error('test error')); | ||
validate(); | ||
} | ||
|
||
{ | ||
// Test with an error with one line stack | ||
const error = new Error(); | ||
error.stack = 'only one line'; | ||
process.report.writeReport(error); | ||
validate(); | ||
} | ||
|
||
{ | ||
const error = new Error(); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Nit: can you add a |
||
error.foo = 'goo'; | ||
process.report.writeReport(error); | ||
validate([['javascriptStack.errorProperties.foo', 'goo']]); | ||
} | ||
|
||
{ | ||
// Test with a file argument. | ||
const file = process.report.writeReport('custom-name-1.json'); | ||
const absolutePath = tmpdir.resolve(file); | ||
assert.strictEqual(helper.findReports(process.pid, tmpdir.path).length, 0); | ||
assert.strictEqual(file, 'custom-name-1.json'); | ||
helper.validate(absolutePath); | ||
fs.unlinkSync(absolutePath); | ||
} | ||
|
||
{ | ||
// Test with file and error arguments. | ||
const file = process.report.writeReport('custom-name-2.json', | ||
new Error('test error')); | ||
const absolutePath = tmpdir.resolve(file); | ||
assert.strictEqual(helper.findReports(process.pid, tmpdir.path).length, 0); | ||
assert.strictEqual(file, 'custom-name-2.json'); | ||
helper.validate(absolutePath); | ||
fs.unlinkSync(absolutePath); | ||
} | ||
|
||
{ | ||
// Test with a filename option. | ||
process.report.filename = 'custom-name-3.json'; | ||
const file = process.report.writeReport(); | ||
assert.strictEqual(helper.findReports(process.pid, tmpdir.path).length, 0); | ||
const filename = path.join(process.report.directory, 'custom-name-3.json'); | ||
assert.strictEqual(file, process.report.filename); | ||
helper.validate(filename); | ||
fs.unlinkSync(filename); | ||
} |
Uh oh!
There was an error while loading. Please reload this page.