-
Notifications
You must be signed in to change notification settings - Fork 30.9k
/
Copy pathtest-errors-hide-stack-frames.js
242 lines (202 loc) Β· 4.73 KB
/
test-errors-hide-stack-frames.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
231
232
233
234
235
236
237
238
239
240
241
242
// Flags: --expose-internals
'use strict';
require('../common');
const { hideStackFrames, codes } = require('internal/errors');
const { validateInteger } = require('internal/validators');
const assert = require('assert');
{
// Test that the a built-in error has the correct name and message.
function a() {
b();
}
function b() {
c();
}
const c = hideStackFrames(function() {
throw new Error('test');
});
try {
a();
} catch (e) {
assert.strictEqual(e.name, 'Error');
assert.strictEqual(e.message, 'test');
}
}
{
// Test that validator errors have the correct name and message.
try {
validateInteger('2', 'test');
} catch (e) {
assert.strictEqual(e.name, 'TypeError');
assert.strictEqual(e.message, 'The "test" argument must be of type number. Received type string (\'2\')');
}
}
{
// Test that validator fn is not in the stack trace.
function a(value) {
validateInteger(value, 'test');
}
try {
a('2');
} catch (e) {
assert.strictEqual(Error.stackTraceLimit, 10);
const stack = e.stack.split('\n');
assert.doesNotMatch(stack[1], /validateInteger/);
assert.match(stack[1], /at a/);
}
}
{
// Test that the stack trace is hidden for normal unnamed functions.
function a() {
b();
}
function b() {
c();
}
const c = hideStackFrames(function() {
throw new Error('test');
});
try {
a();
} catch (e) {
assert.strictEqual(Error.stackTraceLimit, 10);
const stack = e.stack.split('\n');
assert.doesNotMatch(stack[1], /at c/);
assert.match(stack[1], /at b/);
assert.strictEqual(Error.stackTraceLimit, 10);
}
}
{
// Test that the stack trace is hidden for normal functions.
function a() {
b();
}
function b() {
c();
}
const c = hideStackFrames(function c() {
throw new Error('test');
});
try {
a();
} catch (e) {
assert.strictEqual(Error.stackTraceLimit, 10);
const stack = e.stack.split('\n');
assert.doesNotMatch(stack[1], /at c/);
assert.match(stack[1], /at b/);
assert.strictEqual(Error.stackTraceLimit, 10);
}
}
{
// Test that the stack trace is hidden for arrow functions.
function a() {
b();
}
function b() {
c();
}
const c = hideStackFrames(() => {
throw new Error('test');
});
try {
a();
} catch (e) {
assert.strictEqual(Error.stackTraceLimit, 10);
const stack = e.stack.split('\n');
assert.doesNotMatch(stack[1], /at c/);
assert.match(stack[1], /at b/);
assert.strictEqual(Error.stackTraceLimit, 10);
}
}
{
// Creating a new Error object without stack trace, then throwing it
// should get a stack trace by hideStackFrames.
function a() {
b();
}
function b() {
c();
}
const c = hideStackFrames(function() {
throw new Error('test');
});
try {
a();
} catch (e) {
assert.strictEqual(Error.stackTraceLimit, 10);
const stack = e.stack.split('\n');
assert.doesNotMatch(stack[1], /at c/);
assert.match(stack[1], /at b/);
assert.strictEqual(Error.stackTraceLimit, 10);
}
}
{
const ERR_ACCESS_DENIED = codes.ERR_ACCESS_DENIED;
// Creating a new Error object without stack trace, then throwing it
// should get a stack trace by hideStackFrames.
function a() {
b();
}
function b() {
c();
}
const c = hideStackFrames(function() {
throw new ERR_ACCESS_DENIED.NoStackError('test');
});
try {
a();
} catch (e) {
assert.strictEqual(Error.stackTraceLimit, 10);
const stack = e.stack.split('\n');
assert.doesNotMatch(stack[1], /at c/);
assert.match(stack[1], /at b/);
assert.strictEqual(Error.stackTraceLimit, 10);
}
}
{
// Creating a new Error object with stack trace, then throwing it
// should get a stack trace by hideStackFrames.
function a() {
b();
}
const b = hideStackFrames(function b() {
c();
});
const c = hideStackFrames(function() {
throw new Error('test');
});
try {
a();
} catch (e) {
assert.strictEqual(Error.stackTraceLimit, 10);
const stack = e.stack.split('\n');
assert.match(stack[1], /at a/);
assert.strictEqual(Error.stackTraceLimit, 10);
}
}
{
// Binding passes the value of this to the wrapped function.
let called = false;
function a() {
b.bind({ key: 'value' })();
}
const b = hideStackFrames(function b() {
assert.strictEqual(this.key, 'value');
called = true;
});
a();
assert.strictEqual(called, true);
}
{
// Binding passes the value of this to the withoutStackTrace function.
let called = false;
function a() {
b.withoutStackTrace.bind({ key: 'value' })();
}
const b = hideStackFrames(function b() {
assert.strictEqual(this.key, 'value');
called = true;
});
a();
assert.strictEqual(called, true);
}