@@ -6,10 +6,10 @@ describe('Errors', function() {
6
6
describe ( 'sanitizeErrorRequestData' , function ( ) {
7
7
describe ( 'when passed in error is missing request data and headers' , function ( ) {
8
8
var error = { response : { request : { } } } ;
9
- var sanitizedError = errors . sanitizeErrorRequestData ( error ) ;
9
+ var redactedError = errors . sanitizeErrorRequestData ( error ) ;
10
10
11
11
it ( 'should return error' , function ( ) {
12
- expect ( sanitizedError ) . to . equal ( error ) ;
12
+ expect ( redactedError ) . to . equal ( error ) ;
13
13
} ) ;
14
14
} ) ;
15
15
@@ -25,14 +25,14 @@ describe('Errors', function() {
25
25
}
26
26
}
27
27
} ;
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 ;
30
30
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 ]' ) ;
33
33
} ) ;
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 ]' ) ;
36
36
} ) ;
37
37
it ( 'should return original value for USER_NAME' , function ( ) {
38
38
expect ( sanitizedData . USER_NAME ) . to . equal ( sanitizedData . USER_NAME ) ;
@@ -49,11 +49,11 @@ describe('Errors', function() {
49
49
}
50
50
}
51
51
} ;
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 ;
54
54
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 ]' ) ;
57
57
} ) ;
58
58
} ) ;
59
59
} ) ;
@@ -100,8 +100,8 @@ describe('Errors', function() {
100
100
expect ( sanitizedError . originalError ) . to . eql ( originalError ) ;
101
101
} ) ;
102
102
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 ]' ) ;
105
105
} ) ;
106
106
107
107
it ( 'should have a stack with the message and location the error was created' , function ( ) {
0 commit comments