Skip to content

Commit bde5148

Browse files
authored
Merge pull request #515 from auth0/change-term
Use [REDACTED] instead of [SANITIZED] when cleaning errors
2 parents 34c5f80 + 4cb50e2 commit bde5148

File tree

3 files changed

+16
-16
lines changed

3 files changed

+16
-16
lines changed

src/errors.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ var sanitizeErrors = function(collection) {
3333

3434
Object.keys(collection).forEach(function(key) {
3535
if (key.toLowerCase().match('password|secret|authorization')) {
36-
collection[key] = '[SANITIZED]';
36+
collection[key] = '[REDACTED]';
3737
}
3838
});
3939
};

test/auth0-rest-client.tests.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ describe('Auth0RestClient', function() {
163163
var client = new Auth0RestClient(API_URL + '/some-resource', options, this.providerMock);
164164
client.getAll().catch(function(err) {
165165
const originalRequestHeader = err.originalError.response.request._header;
166-
expect(originalRequestHeader.authorization).to.equal('[SANITIZED]');
166+
expect(originalRequestHeader.authorization).to.equal('[REDACTED]');
167167
done();
168168
nock.cleanAll();
169169
});

test/errors.tests.js

+14-14
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ describe('Errors', function() {
66
describe('sanitizeErrorRequestData', function() {
77
describe('when passed in error is missing request data and headers', function() {
88
var error = { response: { request: {} } };
9-
var sanitizedError = errors.sanitizeErrorRequestData(error);
9+
var redactedError = errors.sanitizeErrorRequestData(error);
1010

1111
it('should return error', function() {
12-
expect(sanitizedError).to.equal(error);
12+
expect(redactedError).to.equal(error);
1313
});
1414
});
1515

@@ -25,14 +25,14 @@ describe('Errors', function() {
2525
}
2626
}
2727
};
28-
const sanitizedError = errors.sanitizeErrorRequestData(error);
29-
const sanitizedData = sanitizedError.response.request._data;
28+
const redactedError = errors.sanitizeErrorRequestData(error);
29+
const sanitizedData = redactedError.response.request._data;
3030

31-
it('should return [SANITIZED] for DATA_SECRET', function() {
32-
expect(sanitizedData.DATA_SECRET).to.equal('[SANITIZED]');
31+
it('should return [REDACTED] for DATA_SECRET', function() {
32+
expect(sanitizedData.DATA_SECRET).to.equal('[REDACTED]');
3333
});
34-
it('should return [SANITIZED] for DATA_SECRET', function() {
35-
expect(sanitizedData.DATA_SECRET).to.equal('[SANITIZED]');
34+
it('should return [REDACTED] for DATA_SECRET', function() {
35+
expect(sanitizedData.DATA_SECRET).to.equal('[REDACTED]');
3636
});
3737
it('should return original value for USER_NAME', function() {
3838
expect(sanitizedData.USER_NAME).to.equal(sanitizedData.USER_NAME);
@@ -49,11 +49,11 @@ describe('Errors', function() {
4949
}
5050
}
5151
};
52-
const sanitizedError = errors.sanitizeErrorRequestData(error);
53-
const sanitizedData = sanitizedError.response.request._header;
52+
const redactedError = errors.sanitizeErrorRequestData(error);
53+
const sanitizedData = redactedError.response.request._header;
5454

55-
it('should return [SANITIZED] for authorization', function() {
56-
expect(sanitizedData.authorization).to.equal('[SANITIZED]');
55+
it('should return [REDACTED] for authorization', function() {
56+
expect(sanitizedData.authorization).to.equal('[REDACTED]');
5757
});
5858
});
5959
});
@@ -100,8 +100,8 @@ describe('Errors', function() {
100100
expect(sanitizedError.originalError).to.eql(originalError);
101101
});
102102

103-
it('should sanitize the original error sensitive information', function() {
104-
expect(sanitizedError.originalError.response.request._data.secret).to.eql('[SANITIZED]');
103+
it('should redact the original error sensitive information', function() {
104+
expect(sanitizedError.originalError.response.request._data.secret).to.eql('[REDACTED]');
105105
});
106106

107107
it('should have a stack with the message and location the error was created', function() {

0 commit comments

Comments
 (0)