forked from denoland/deno
-
Notifications
You must be signed in to change notification settings - Fork 0
/
error_test.js
215 lines (180 loc) · 5.51 KB
/
error_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
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
import {
assert,
assertEquals,
assertThrows,
loadTestLibrary,
} from "./common.js";
const testError = loadTestLibrary();
const theError = new Error("Some error");
const theTypeError = new TypeError("Some type error");
const theSyntaxError = new SyntaxError("Some syntax error");
const theRangeError = new RangeError("Some type error");
const theReferenceError = new ReferenceError("Some reference error");
const theURIError = new URIError("Some URI error");
const theEvalError = new EvalError("Some eval error");
function assertThrowsWithCode(fn, value) {
let thrown = false;
try {
fn();
} catch (e) {
thrown = true;
assertEquals(e.message, value.message);
assertEquals(e.code, value.code);
} finally {
assert(thrown);
}
}
Deno.test("napi error", function () {
class MyError extends Error {}
const myError = new MyError("Some MyError");
// Test that native error object is correctly classed
assertEquals(testError.checkError(theError), true);
// Test that native type error object is correctly classed
assertEquals(testError.checkError(theTypeError), true);
// Test that native syntax error object is correctly classed
assertEquals(testError.checkError(theSyntaxError), true);
// Test that native range error object is correctly classed
assertEquals(testError.checkError(theRangeError), true);
// Test that native reference error object is correctly classed
assertEquals(testError.checkError(theReferenceError), true);
// Test that native URI error object is correctly classed
assertEquals(testError.checkError(theURIError), true);
// Test that native eval error object is correctly classed
assertEquals(testError.checkError(theEvalError), true);
// Test that class derived from native error is correctly classed
assertEquals(testError.checkError(myError), true);
// Test that non-error object is correctly classed
assertEquals(testError.checkError({}), false);
// Test that non-error primitive is correctly classed
assertEquals(testError.checkError("non-object"), false);
assertThrows(
() => {
testError.throwExistingError();
},
Error,
"existing error",
);
assertThrows(
() => {
testError.throwError();
},
Error,
"error",
);
assertThrows(
() => {
testError.throwRangeError();
},
RangeError,
"range error",
);
assertThrows(
() => {
testError.throwTypeError();
},
TypeError,
"type error",
);
// assertThrows(() => {
// testError.throwSyntaxError();
// }, "SyntaxError: syntax error");
[42, {}, [], Symbol("xyzzy"), true, "ball", undefined, null, NaN]
.forEach((value) => {
let thrown = false;
try {
testError.throwArbitrary(value);
} catch (e) {
thrown = true;
assertEquals(e, value);
} finally {
assert(thrown);
}
});
assertThrowsWithCode(
() => testError.throwErrorCode(),
{
code: "ERR_TEST_CODE",
message: "Error [error]",
},
);
assertThrowsWithCode(
() => testError.throwRangeErrorCode(),
{
code: "ERR_TEST_CODE",
message: "RangeError [range error]",
},
);
assertThrowsWithCode(
() => testError.throwTypeErrorCode(),
{
code: "ERR_TEST_CODE",
message: "TypeError [type error]",
},
);
// assertThrowsWithCode(
// () => testError.throwSyntaxErrorCode(),
// {
// code: "ERR_TEST_CODE",
// message: "SyntaxError [syntax error]",
// },
// );
let error = testError.createError();
assert(
error instanceof Error,
"expected error to be an instance of Error",
);
assertEquals(error.message, "error");
error = testError.createRangeError();
assert(
error instanceof RangeError,
"expected error to be an instance of RangeError",
);
assertEquals(error.message, "range error");
error = testError.createTypeError();
assert(
error instanceof TypeError,
"expected error to be an instance of TypeError",
);
assertEquals(error.message, "type error");
// TODO(bartlomieju): this is experimental API
// error = testError.createSyntaxError();
// assert(
// error instanceof SyntaxError,
// "expected error to be an instance of SyntaxError",
// );
// assertEquals(error.message, "syntax error");
error = testError.createErrorCode();
assert(
error instanceof Error,
"expected error to be an instance of Error",
);
assertEquals(error.code, "ERR_TEST_CODE");
assertEquals(error.message, "Error [error]");
assertEquals(error.name, "Error");
error = testError.createRangeErrorCode();
assert(
error instanceof RangeError,
"expected error to be an instance of RangeError",
);
assertEquals(error.message, "RangeError [range error]");
assertEquals(error.code, "ERR_TEST_CODE");
assertEquals(error.name, "RangeError");
error = testError.createTypeErrorCode();
assert(
error instanceof TypeError,
"expected error to be an instance of TypeError",
);
assertEquals(error.message, "TypeError [type error]");
assertEquals(error.code, "ERR_TEST_CODE");
assertEquals(error.name, "TypeError");
// TODO(bartlomieju): this is experimental API
// error = testError.createSyntaxErrorCode();
// assert(
// error instanceof SyntaxError,
// "expected error to be an instance of SyntaxError",
// );
// assertEquals(error.message, "SyntaxError [syntax error]");
// assertEquals(error.code, "ERR_TEST_CODE");
// assertEquals(error.name, "SyntaxError");
});