-
-
Notifications
You must be signed in to change notification settings - Fork 809
/
Copy pathtest.js
230 lines (173 loc) · 4.72 KB
/
test.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
'use strict';
// MODULES //
var tape = require( 'tape' );
var copy = require( '@stdlib/utils/copy' );
var reviveError = require( './../lib' );
// FUNCTIONS //
function setup( type, name, msg, stack ) {
var json = {};
json.type = type || 'Error';
json.name = name || 'Error';
json.message = msg || '';
json.stack = stack || 'boop';
return json;
}
// TESTS //
tape( 'main export is a function', function test( t ) {
t.ok( true, __filename );
t.equal( typeof reviveError, 'function', 'main export is a function' );
t.end();
});
tape( 'values which are not recognized as serialized error objects are unaffected', function test( t ) {
var expected;
var actual;
expected = {
'beep': 'boop'
};
actual = JSON.parse( '{"beep":"boop"}', reviveError );
t.deepEqual( actual, expected, 'deep equal' );
// Null edge case:
actual = JSON.parse( 'null', reviveError );
t.equal( actual, null, 'equals null' );
t.end();
});
tape( 'an object must have a recognized "type" field in order to be revived', function test( t ) {
var expected;
var actual;
var json;
json = setup();
json.type = 'Boop';
expected = copy( json );
actual = JSON.parse( JSON.stringify( json ), reviveError );
t.deepEqual( actual, expected, 'deep equal' );
t.end();
});
tape( 'an object must have a "message" field in order to be revived', function test( t ) {
var expected;
var actual;
var json;
json = setup();
delete json.message;
expected = copy( json );
actual = JSON.parse( JSON.stringify( json ), reviveError );
t.deepEqual( actual, expected, 'deep equal' );
t.end();
});
tape( 'the function will revive a JSON-serialized error object', function test( t ) {
var expected;
var actual;
var types;
var ctors;
var json;
var msgs;
var i;
types = [
'Error',
'TypeError',
'SyntaxError',
'URIError',
'ReferenceError',
'EvalError',
'RangeError'
];
msgs = [
'a',
'b',
'c',
'd',
'e',
'f',
'g'
];
ctors = [
Error,
TypeError,
SyntaxError,
URIError,
ReferenceError,
EvalError,
RangeError
];
for ( i = 0; i < types.length; i++ ) {
json = setup( types[ i ], types[ i ], msgs[i], 'boop'+i );
expected = new ctors[ i ]( msgs[i] );
expected.stack = 'boop' + i;
actual = JSON.parse( JSON.stringify( json ), reviveError );
t.ok( actual instanceof ctors[ i ], 'instance of type ' + types[i] );
t.equal( actual.message, expected.message, 'equal messages' );
t.equal( actual.stack, expected.stack, 'equal stacks' );
}
t.end();
});
tape( 'non-standard error properties are bound to the revived error instance', function test( t ) {
var json;
var err;
json = setup();
json.beep = 'boop';
json.arr = [1, 2, 3, [4, 5]];
err = JSON.parse( JSON.stringify( json ), reviveError );
t.equal( err.beep, json.beep, 'shallow properties' );
t.notEqual( err.arr, json.arr, 'separate instances' );
t.deepEqual( err.arr, json.arr, 'deep equal' );
t.end();
});
tape( 'if a serialized error object lacks a "stack" field or has a "stack" field and lacks a stack trace, the returned error will not have an associated stack trace', function test( t ) {
var json;
var err;
// Missing stack field...
json = setup();
delete json.stack;
err = JSON.parse( JSON.stringify( json ), reviveError );
t.ok( err.stack === '' || err.stack === void 0, 'returned error does not have a stack trace' );
// Stack field is empty or null...
json = setup();
json.stack = null;
err = JSON.parse( JSON.stringify( json ), reviveError );
t.ok( err.stack === '' || err.stack === void 0, 'returned error does not have a stack trace' );
t.end();
});
tape( 'the function will revive deeply nested serialized error objects', function test( t ) {
var expected;
var actual;
var ctors;
var json;
var arrs;
var msgs;
var i;
arrs = [
setup( 'Error', 'Error', 'beep' ),
setup( 'TypeError', 'TypeError', 'boop' )
];
ctors = [
Error,
TypeError
];
msgs = [
'beep',
'boop'
];
actual = JSON.parse( JSON.stringify( arrs ), reviveError );
for ( i = 0; i < arrs.length; i++ ) {
expected = new ctors[ i ]( msgs[i] );
expected.stack = 'boop';
t.ok( actual[i] instanceof ctors[i], 'instance of ' + ctors[ i ] );
t.equal( actual[i].message, expected.message, 'equal messages' );
t.equal( actual[i].stack, expected.stack, 'equal stacks' );
}
json = {
'beep': {
'boop': setup( 'RangeError', 'RangeError', 'bap' )
}
};
expected = {
'beep': {
'boop': new RangeError( 'bap' )
}
};
expected.beep.boop.stack = 'boop';
actual = JSON.parse( JSON.stringify( json ), reviveError );
t.ok( actual.beep.boop instanceof RangeError, 'instance of RangeError' );
t.equal( actual.beep.boop.message, expected.beep.boop.message, 'equal messages' );
t.equal( actual.beep.boop.stack, expected.beep.boop.stack, 'equal stacks' );
t.end();
});