-
-
Notifications
You must be signed in to change notification settings - Fork 184
Expand file tree
/
Copy pathusing.spec.ts
More file actions
235 lines (195 loc) · 6.15 KB
/
using.spec.ts
File metadata and controls
235 lines (195 loc) · 6.15 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
import { LuaLibImportKind } from "../../src";
import * as util from "../util";
const usingTestLib = `
export const logs: string[] = [];
function loggedDisposable(id: string): Disposable {
logs.push(\`Creating \${id}\`);
return {
[Symbol.dispose]() {
logs.push(\`Disposing \${id}\`);
}
}
}`;
test("using disposes object at end of function", () => {
util.testModule`
function func() {
using a = loggedDisposable("a");
using b = loggedDisposable("b");
logs.push("function content");
}
func();
`
.setTsHeader(usingTestLib)
.expectToEqual({ logs: ["Creating a", "Creating b", "function content", "Disposing b", "Disposing a"] });
});
test("handles multi-variable declarations", () => {
util.testModule`
function func() {
using a = loggedDisposable("a"), b = loggedDisposable("b");
logs.push("function content");
}
func();
`
.setTsHeader(usingTestLib)
.expectToEqual({ logs: ["Creating a", "Creating b", "function content", "Disposing b", "Disposing a"] });
});
test("using disposes object at end of nested block", () => {
util.testModule`
function func() {
using a = loggedDisposable("a");
{
using b = loggedDisposable("b");
logs.push("nested block");
}
logs.push("function content");
}
func();
`
.setTsHeader(usingTestLib)
.expectToEqual({
logs: ["Creating a", "Creating b", "nested block", "Disposing b", "function content", "Disposing a"],
});
});
test("using does not affect function return value", () => {
util.testModule`
function func() {
using a = loggedDisposable("a");
using b = loggedDisposable("b");
logs.push("function content");
return "success";
}
export const result = func();
`
.setTsHeader(usingTestLib)
.expectToEqual({
result: "success",
logs: ["Creating a", "Creating b", "function content", "Disposing b", "Disposing a"],
});
});
test("using disposes even when error happens", () => {
util.testModule`
function func() {
using a = loggedDisposable("a");
using b = loggedDisposable("b");
throw "test-induced exception";
}
try
{
func();
}
catch (e)
{
logs.push(\`caught exception: \${e}\`);
}
`
.setTsHeader(usingTestLib)
.expectToEqual({
logs: [
"Creating a",
"Creating b",
"Disposing b",
"Disposing a",
"caught exception: test-induced exception",
],
});
});
test("await using disposes object with await at end of function", () => {
util.testModule`
let disposeAsync;
function loggedAsyncDisposable(id: string): AsyncDisposable {
logs.push(\`Creating \${id}\`);
return {
[Symbol.asyncDispose]() {
logs.push(\`Disposing async \${id}\`);
return new Promise(resolve => {
disposeAsync = () => {
logs.push(\`Disposed \${id}\`);
resolve();
};
});
}
}
}
async function func() {
await using a = loggedAsyncDisposable("a");
logs.push("function content");
return "function result";
}
const p = func().then(r => logs.push("promise resolved", r));
logs.push("function returned");
disposeAsync();
`
.setTsHeader(usingTestLib)
.setOptions({ luaLibImport: LuaLibImportKind.Inline })
.expectToEqual({
logs: [
"Creating a",
"function content",
"Disposing async a",
"function returned",
"Disposed a",
"promise resolved",
"function result",
],
});
});
test("await using can handle non-async disposables", () => {
util.testModule`
async function func() {
await using a = loggedDisposable("a");
logs.push("function content");
}
func();
`
.setTsHeader(usingTestLib)
.expectToEqual({ logs: ["Creating a", "function content", "Disposing a"] });
});
// https://github.com/TypeScriptToLua/TypeScriptToLua/issues/1571
test("await using no extra diagnostics (#1571)", () => {
util.testModule`
async function getResource(): Promise<AsyncDisposable> {
return {
[Symbol.asyncDispose]: async () => {}
};
}
async function someOtherAsync() {}
async function main() {
await using resource = await getResource();
await someOtherAsync();
}
`.expectToHaveNoDiagnostics();
});
// https://github.com/TypeScriptToLua/TypeScriptToLua/issues/1584
test("works with disposable classes (#1584)", () => {
util.testFunction`
const log = [];
class Scoped {
action(): void {
log.push("action")
}
[Symbol.dispose]() {
log.push("cleanup")
}
}
function TestScoped(): void {
using s = new Scoped();
s.action();
}
TestScoped();
return log;
`.expectToEqual(["action", "cleanup"]);
});
// https://github.com/TypeScriptToLua/TypeScriptToLua/issues/1632
test("works on root level (#1632)", () => {
util.testModule`
export let disposed = false;
class A {
[Symbol.dispose] = function (this: A) {
disposed = true;
}
}
using a = new A();
`.expectToEqual({
disposed: true,
});
});