Remove newlines from group IDs

pull/1/head
Daniel Gasienica 7 years ago
parent ae7d6aa900
commit 5c8f734e67

@ -73,7 +73,7 @@ exports.redactGroupIds = text => {
return text.replace(
GROUP_ID_PATTERN,
(match, before, id, after) =>
`${before}${REDACTION_PLACEHOLDER}${id.slice(-3)}${after}`
`${before}${REDACTION_PLACEHOLDER}${removeNewlines(id).slice(-3)}${after}`
);
};
@ -86,3 +86,5 @@ exports.redactAll = compose(
exports.redactGroupIds,
exports.redactPhoneNumbers
);
const removeNewlines = text => text.replace(/\r?\n|\r/g, '');

@ -33,6 +33,18 @@ describe('Privacy', () => {
'and group([REDACTED]hij)';
assert.equal(actual, expected);
});
it('should remove newlines from redacted group IDs', () => {
const text =
'This is a log line with two group IDs: group(12345678\n9)\n' +
'and group(abc\ndefghij)';
const actual = Privacy.redactGroupIds(text);
const expected =
'This is a log line with two group IDs: group([REDACTED]789)\n' +
'and group([REDACTED]hij)';
assert.equal(actual, expected);
});
});
describe('redactAll', () => {

Loading…
Cancel
Save