diff --git a/src/errors.js b/src/errors.js index 861e2fde8..0176c332f 100644 --- a/src/errors.js +++ b/src/errors.js @@ -33,7 +33,7 @@ var sanitizeErrors = function(collection) { Object.keys(collection).forEach(function(key) { if (key.toLowerCase().match('password|secret|authorization')) { - collection[key] = '[SANITIZED]'; + collection[key] = '[REDACTED]'; } }); }; diff --git a/test/auth0-rest-client.tests.js b/test/auth0-rest-client.tests.js index 27cea9d00..3d862359c 100644 --- a/test/auth0-rest-client.tests.js +++ b/test/auth0-rest-client.tests.js @@ -163,7 +163,7 @@ describe('Auth0RestClient', function() { var client = new Auth0RestClient(API_URL + '/some-resource', options, this.providerMock); client.getAll().catch(function(err) { const originalRequestHeader = err.originalError.response.request._header; - expect(originalRequestHeader.authorization).to.equal('[SANITIZED]'); + expect(originalRequestHeader.authorization).to.equal('[REDACTED]'); done(); nock.cleanAll(); }); diff --git a/test/errors.tests.js b/test/errors.tests.js index bd13a48ac..c6d61f5e8 100644 --- a/test/errors.tests.js +++ b/test/errors.tests.js @@ -6,10 +6,10 @@ describe('Errors', function() { describe('sanitizeErrorRequestData', function() { describe('when passed in error is missing request data and headers', function() { var error = { response: { request: {} } }; - var sanitizedError = errors.sanitizeErrorRequestData(error); + var redactedError = errors.sanitizeErrorRequestData(error); it('should return error', function() { - expect(sanitizedError).to.equal(error); + expect(redactedError).to.equal(error); }); }); @@ -25,14 +25,14 @@ describe('Errors', function() { } } }; - const sanitizedError = errors.sanitizeErrorRequestData(error); - const sanitizedData = sanitizedError.response.request._data; + const redactedError = errors.sanitizeErrorRequestData(error); + const sanitizedData = redactedError.response.request._data; - it('should return [SANITIZED] for DATA_SECRET', function() { - expect(sanitizedData.DATA_SECRET).to.equal('[SANITIZED]'); + it('should return [REDACTED] for DATA_SECRET', function() { + expect(sanitizedData.DATA_SECRET).to.equal('[REDACTED]'); }); - it('should return [SANITIZED] for DATA_SECRET', function() { - expect(sanitizedData.DATA_SECRET).to.equal('[SANITIZED]'); + it('should return [REDACTED] for DATA_SECRET', function() { + expect(sanitizedData.DATA_SECRET).to.equal('[REDACTED]'); }); it('should return original value for USER_NAME', function() { expect(sanitizedData.USER_NAME).to.equal(sanitizedData.USER_NAME); @@ -49,11 +49,11 @@ describe('Errors', function() { } } }; - const sanitizedError = errors.sanitizeErrorRequestData(error); - const sanitizedData = sanitizedError.response.request._header; + const redactedError = errors.sanitizeErrorRequestData(error); + const sanitizedData = redactedError.response.request._header; - it('should return [SANITIZED] for authorization', function() { - expect(sanitizedData.authorization).to.equal('[SANITIZED]'); + it('should return [REDACTED] for authorization', function() { + expect(sanitizedData.authorization).to.equal('[REDACTED]'); }); }); }); @@ -100,8 +100,8 @@ describe('Errors', function() { expect(sanitizedError.originalError).to.eql(originalError); }); - it('should sanitize the original error sensitive information', function() { - expect(sanitizedError.originalError.response.request._data.secret).to.eql('[SANITIZED]'); + it('should redact the original error sensitive information', function() { + expect(sanitizedError.originalError.response.request._data.secret).to.eql('[REDACTED]'); }); it('should have a stack with the message and location the error was created', function() {