-
-
Notifications
You must be signed in to change notification settings - Fork 184
Expand file tree
/
Copy patherror.spec.ts
More file actions
420 lines (386 loc) · 11.4 KB
/
error.spec.ts
File metadata and controls
420 lines (386 loc) · 11.4 KB
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
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
import * as util from "../util";
import * as tstl from "../../src";
test("throwString", () => {
util.testFunction`
throw "Some Error"
`.expectToEqual(new util.ExecutionError("Some Error"));
});
// TODO: Finally does not behave like it should, see #1137
// eslint-disable-next-line jest/no-disabled-tests
test.skip.each([0, 1, 2])("re-throw (%p)", i => {
util.testFunction`
const i: number = ${i};
function foo() {
try {
try {
if (i === 0) { throw "z"; }
} catch (e) {
throw "a";
} finally {
if (i === 1) { throw "b"; }
}
} catch (e) {
throw (e as string).toUpperCase();
} finally {
throw "C";
}
}
let result: string = "x";
try {
foo();
} catch (e) {
result = (e as string)[(e as string).length - 1];
}
return result;
`.expectToMatchJsResult();
});
test("re-throw (no catch var)", () => {
util.testFunction`
let result = "x";
try {
try {
throw "y";
} catch {
throw "z";
}
} catch (e) {
result = (e as string)[(e as string).length - 1];
}
return result;
`.expectToMatchJsResult();
});
test("return from try", () => {
util.testFunction`
function foobar() {
try {
return "foobar";
} catch {
}
}
return foobar();
`.expectToMatchJsResult();
});
test("return nil from try", () => {
util.testFunction`
let x = "unset";
function foobar() {
try {
return;
} catch {
}
x = "set";
}
foobar();
return x;
`.expectToMatchJsResult();
});
test("multi return from try", () => {
const testBuilder = util.testFunction`
function foobar() {
try {
return $multi("foo", "bar");
} catch {
}
}
const [foo, bar] = foobar();
return foo + bar;
`.withLanguageExtensions();
expect(testBuilder.getMainLuaCodeChunk()).not.toMatch("unpack(foobar");
testBuilder.expectToMatchJsResult();
});
test("return from catch", () => {
util.testFunction`
function foobar() {
try {
throw "foobar";
} catch (e) {
return e + " catch";
}
}
return foobar();
`.expectToMatchJsResult();
});
test("return nil from catch", () => {
util.testFunction`
let x = "unset";
function foobar() {
try {
throw "foobar";
} catch (e) {
return;
}
x = "set";
}
foobar();
return x;
`.expectToMatchJsResult();
});
test("multi return from catch", () => {
const testBuilder = util.testFunction`
function foobar(): LuaMultiReturn<[string, string]> {
try {
throw "foobar";
} catch (e) {
return $multi(e.toString(), " catch");
}
}
const [foo, bar] = foobar();
return foo + bar;
`.withLanguageExtensions();
expect(testBuilder.getMainLuaCodeChunk()).not.toMatch("unpack(foobar");
testBuilder.expectToMatchJsResult();
});
test("return from nested try", () => {
util.testFunction`
function foobar() {
try {
try {
return "foobar";
} catch {
}
} catch {
}
}
return foobar();
`.expectToMatchJsResult();
});
test("return from nested catch", () => {
util.testFunction`
function foobar() {
try {
throw "foobar";
} catch (e) {
try {
throw e + " catch1";
} catch (f) {
return f + " catch2";
}
}
}
return foobar();
`.expectToMatchJsResult();
});
test("return from try->finally", () => {
util.testFunction`
let x = "unevaluated";
function evaluate(arg: unknown) {
x = "evaluated";
return arg;
}
function foobar() {
try {
return evaluate("foobar");
} catch {
} finally {
return "finally";
}
}
return foobar() + " " + x;
`.expectToMatchJsResult();
});
test("return from catch->finally", () => {
util.testFunction`
let x = "unevaluated";
function evaluate(arg: unknown) {
x = "evaluated";
return arg;
}
function foobar() {
try {
throw "foobar";
} catch (e) {
return evaluate(e);
} finally {
return "finally";
}
}
return foobar() + " " + x;
`.expectToMatchJsResult();
});
test("multi return from try->finally", () => {
util.testFunction`
let x = "unevaluated";
function evaluate(arg: string) {
x = "evaluated";
return arg;
}
function foobar() {
try {
return $multi(evaluate("foo"), "bar");
} catch {
} finally {
return $multi("final", "ly");
}
}
const [foo, bar] = foobar();
return foo + bar + " " + x;
`
.withLanguageExtensions()
.expectToMatchJsResult();
});
test("multi return from catch->finally", () => {
util.testFunction`
let x = "unevaluated";
function evaluate(arg: string) {
x = "evaluated";
return arg;
}
function foobar() {
try {
throw "foo";
} catch (e) {
return $multi(evaluate(e), "bar");
} finally {
return $multi("final", "ly");
}
}
const [foo, bar] = foobar();
return foo + bar + " " + x;
`
.withLanguageExtensions()
.expectToMatchJsResult();
});
test("return from nested finally", () => {
util.testFunction`
let x = "";
function foobar() {
try {
try {
} finally {
x += "A";
return "foobar";
}
} finally {
x += "B";
return "finally";
}
}
return foobar() + " " + x;
`.expectToMatchJsResult();
});
test.each([
'"error string"',
"42",
"3.141",
"true",
"false",
"undefined",
'{ x: "error object" }',
'() => "error function"',
])("throw and catch %s", error => {
util.testFunction`
try {
throw ${error};
} catch (error) {
if (typeof error == 'function') {
return error();
} else {
return error;
}
}
`.expectToMatchJsResult();
});
const builtinErrors = ["Error", "RangeError", "ReferenceError", "SyntaxError", "TypeError", "URIError"];
test.each([...builtinErrors, ...builtinErrors.map(type => `new ${type}`)])("%s properties", errorType => {
util.testFunction`
const error = ${errorType}();
return { name: error.name, message: error.message, string: error.toString() };
`.expectToMatchJsResult();
});
test.each([...builtinErrors, "CustomError"])("get stack from %s", errorType => {
const stack = util.testFunction`
class CustomError extends Error {
public name = "CustomError";
}
let stack: string | undefined;
function innerFunction() { stack = new ${errorType}().stack; }
function outerFunction() { innerFunction(); }
outerFunction();
return stack;
`.getLuaExecutionResult();
expect(stack).toMatch("innerFunction");
expect(stack).toMatch("outerFunction");
});
test("still works without debug module", () => {
util.testFunction`
try
{
throw new Error("hello, world");
}
catch (e)
{
return e;
}
`
.setLuaHeader("debug = nil")
.expectToEqual({
message: "hello, world",
name: "Error",
stack: undefined,
});
});
// https://github.com/TypeScriptToLua/TypeScriptToLua/issues/1665
test("sourceMapTraceback maps anonymous function locations in .lua files (#1665)", () => {
// Nested IIFEs produce <file.lua:N> anonymous function notation in traceback.
// Old pattern (%S+)%.lua:(%d+) captures "<main" from "<main.lua:4>",
// failing the sourcemap lookup. Fix: ([^%s<]+) excludes "<".
// mapping is copied from the emitted Lua, not invented.
const mapping = `{["5"] = 1,["6"] = 2,["7"] = 3,["8"] = 4,["9"] = 3,["10"] = 2,["11"] = 1}`;
// Test harness executes via luaL_dostring (chunk names are [string "..."]), so we mock a file-based traceback.
const fakeTraceback = [
"stack traceback:",
"\tmain.lua:8: in function <main.lua:7>",
"\tmain.lua:7: in function <main.lua:6>",
"\t[C]: in ?",
].join("\n");
// Inject sourcemap for "main.lua" and mock debug.traceback to return file-based frames.
const header = `
__TS__sourcemap = { ["main.lua"] = ${mapping} };
local __real_tb = debug.traceback
debug.traceback = function() return ${JSON.stringify(fakeTraceback)} end
`;
const builder = util.testFunction`
return (() => {
return (() => {
return (debug.traceback as (this: void) => string)();
})();
})();
`
.setLuaHeader(header)
.setOptions({ sourceMapTraceback: true });
const lua = builder.getMainLuaCodeChunk();
// Sanity check: emitted code registers the same mapping literal we inject above.
expect(lua).toContain(`__TS__SourceMapTraceBack(debug.getinfo(1).short_src, ${mapping});`);
const result = builder.getLuaExecutionResult();
expect(result).toEqual(expect.any(String));
// Both `main.lua:N` and `<main.lua:N>` frames should be rewritten using the sourcemap.
expect(result).not.toContain("main.lua");
// Regular line references
expect(result).toContain("\tmain.ts:4:");
expect(result).toContain("\tmain.ts:3:");
// Anonymous function references must keep <> format
expect(result).toContain("<main.ts:3>");
expect(result).toContain("<main.ts:2>");
});
util.testEachVersion(
"error stacktrace omits constructor and __TS_New",
() => util.testFunction`
const e = new Error();
return e.stack;
`,
{
...util.expectEachVersionExceptJit(builder => {
builder.expectToHaveNoDiagnostics();
const luaResult = builder.getLuaExecutionResult();
// eslint-disable-next-line jest/no-standalone-expect
expect(luaResult.split("\n")).toHaveLength(4);
}),
// 5.0 debug.traceback doesn't support levels
[tstl.LuaTarget.Lua50](builder) {
builder.expectToHaveNoDiagnostics();
const luaResult = builder.getLuaExecutionResult();
// eslint-disable-next-line jest/no-standalone-expect
expect(luaResult).toContain("Level 4");
},
}
);