-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgen.test.ts
More file actions
339 lines (286 loc) Β· 9.48 KB
/
gen.test.ts
File metadata and controls
339 lines (286 loc) Β· 9.48 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
import { describe, expect, it } from "bun:test"
import { CancellationError, Panic, TimeoutError } from "../errors"
import { driveGen } from "../gen"
class UserNotFound extends Error {}
class ProjectNotFound extends Error {}
describe("driveGen", () => {
it("returns sync success value when all yielded values are sync", () => {
const result = driveGen(function* (use) {
const a = yield* use(20)
const b = yield* use(22)
return a + b
})
expect(result).toBe(42)
})
it("short-circuits sync execution on yielded Error", () => {
let didRunAfterError = false
const maybeUser = new UserNotFound("missing") as number | UserNotFound
const result = driveGen(function* (use) {
const user = yield* use(maybeUser)
void user
didRunAfterError = true
return 42
})
expect(result).toBeInstanceOf(UserNotFound)
expect(didRunAfterError).toBe(false)
})
it("awaits yielded promises and returns async success", async () => {
const result = await driveGen(function* (use) {
const a = yield* use(Promise.resolve(20))
if (a > 20) {
return new Error("boom")
}
const b = yield* use(Promise.resolve(22))
return a + b
})
expect(result).toBe(42)
})
it("short-circuits async execution on resolved Error", async () => {
let didRunAfterError = false
const maybeProject = Promise.resolve(new ProjectNotFound("missing") as number | ProjectNotFound)
const result = await driveGen(function* (use) {
const project = yield* use(maybeProject)
void project
didRunAfterError = true
return 42
})
expect(result).toBeInstanceOf(ProjectNotFound)
expect(didRunAfterError).toBe(false)
})
it("rejects with the original reason when a yielded promise rejects", async () => {
try {
await driveGen(function* (use) {
const value = yield* use(Promise.reject<unknown>(new Error("boom")))
return value
})
expect.unreachable("should have thrown")
} catch (error) {
expect(error).toBeInstanceOf(Error)
expect((error as Error).message).toBe("boom")
}
})
it("preserves TimeoutError from a rejected yielded promise", async () => {
const timeout = new TimeoutError("timed out")
try {
await driveGen(function* (use) {
const value = yield* use(Promise.reject<unknown>(timeout))
return value
})
expect.unreachable("should have thrown")
} catch (error) {
expect(error).toBe(timeout)
}
})
it("runs finally blocks when the first yielded promise rejects", async () => {
let finalized = false
try {
await driveGen(function* (use) {
try {
yield* use(Promise.reject<unknown>(new Error("boom")))
} finally {
finalized = true
}
})
expect.unreachable("should have thrown")
} catch (error) {
expect(error).toBeInstanceOf(Error)
expect((error as Error).message).toBe("boom")
}
expect(finalized).toBe(true)
})
it("lets the generator catch a rejected yielded promise and recover", async () => {
const result = await driveGen(function* (use) {
try {
yield* use(Promise.reject<unknown>(new Error("boom")))
} catch (error) {
expect(error).toBeInstanceOf(Error)
expect((error as Error).message).toBe("boom")
return 42
}
return 0
})
expect(result).toBe(42)
})
it("throws the original error when factory throws", () => {
try {
driveGen(() => {
throw new Error("factory failed")
})
expect.unreachable("should have thrown")
} catch (error) {
expect(error).toBeInstanceOf(Error)
expect((error as Error).message).toBe("factory failed")
}
})
it("preserves Panic when factory throws a control error", () => {
const panic = new Panic("FLOW_NO_EXIT")
try {
driveGen(() => {
throw panic
})
expect.unreachable("should have thrown")
} catch (error) {
expect(error).toBe(panic)
}
})
it("throws the original error when generator body throws after yield", () => {
try {
driveGen(function* (use) {
void (yield* use(1))
throw new Error("generator failed")
})
expect.unreachable("should have thrown")
} catch (error) {
expect(error).toBeInstanceOf(Error)
expect((error as Error).message).toBe("generator failed")
}
})
it("preserves Panic when generator body throws after a sync yield", () => {
const panic = new Panic("FLOW_NO_EXIT")
try {
driveGen<number, number | Panic>(function* (use) {
void (yield* use(1))
throw panic
})
expect.unreachable("should have thrown")
} catch (error) {
expect(error).toBe(panic)
}
})
it("returns explicit error values without throwing", () => {
const result = driveGen(function* (use) {
void (yield* use(1))
return new ProjectNotFound("from return")
})
expect(result).toBeInstanceOf(ProjectNotFound)
expect(result.message).toBe("from return")
})
it("returns explicit async error values without throwing", async () => {
const result = driveGen(function* (use) {
const value = yield* use(Promise.resolve(1))
void value
return Promise.resolve(new ProjectNotFound("async return"))
})
const resolved = await result
expect(resolved).toBeInstanceOf(ProjectNotFound)
expect(resolved.message).toBe("async return")
})
it("throws raw non-Error values without wrapping", () => {
try {
driveGen(() => {
throw "string error"
})
expect.unreachable("should have thrown")
} catch (error) {
expect(error).toBe("string error")
}
})
it("rejects with the original error when the generator throws after entering async path", async () => {
try {
await driveGen(function* (use) {
void (yield* use(Promise.resolve(1)))
throw new Error("async throw")
})
expect.unreachable("should have thrown")
} catch (error) {
expect(error).toBeInstanceOf(Error)
expect((error as Error).message).toBe("async throw")
}
})
it("preserves CancellationError when generator throws after entering async path", async () => {
const cancellation = new CancellationError("cancelled")
try {
await driveGen<Promise<number>, Promise<number | CancellationError>>(function* (use) {
void (yield* use(Promise.resolve(1)))
throw cancellation
})
expect.unreachable("should have thrown")
} catch (error) {
expect(error).toBe(cancellation)
}
})
it("rejects with the original error when the final returned promise rejects", async () => {
try {
await driveGen(function* (use) {
void (yield* use(Promise.resolve(1)))
return Promise.reject(new Error("final reject"))
})
expect.unreachable("should have thrown")
} catch (error) {
expect(error).toBeInstanceOf(Error)
expect((error as Error).message).toBe("final reject")
}
})
it("preserves TimeoutError from a rejected final returned promise in async path", async () => {
const timeout = new TimeoutError("timed out")
try {
await driveGen<Promise<number>, Promise<number | TimeoutError>>(function* (use) {
void (yield* use(Promise.resolve(1)))
return Promise.reject(timeout)
})
expect.unreachable("should have thrown")
} catch (error) {
expect(error).toBe(timeout)
}
})
it("rejects with the original reason when a later async yield rejects", async () => {
try {
await driveGen(function* (use) {
void (yield* use(Promise.resolve(1)))
const value = yield* use(Promise.reject<unknown>(new Error("second reject")))
return value
})
expect.unreachable("should have thrown")
} catch (error) {
expect(error).toBeInstanceOf(Error)
expect((error as Error).message).toBe("second reject")
}
})
it("runs finally blocks when a later async yield rejects", async () => {
let finalized = false
try {
await driveGen(function* (use) {
void (yield* use(Promise.resolve(1)))
try {
yield* use(Promise.reject<unknown>(new Error("second reject")))
} finally {
finalized = true
}
})
expect.unreachable("should have thrown")
} catch (error) {
expect(error).toBeInstanceOf(Error)
expect((error as Error).message).toBe("second reject")
}
expect(finalized).toBe(true)
})
it("handles sync yield after entering async path", async () => {
const result = await driveGen(function* (use) {
const a = yield* use(Promise.resolve(10))
const b = yield* use(32 as number)
return a + b
})
expect(result).toBe(42)
})
it("short-circuits on sync Error yielded after entering async path", async () => {
let didRunAfterError = false
const result = await driveGen(function* (use) {
void (yield* use(Promise.resolve(1)))
const value = yield* use(new UserNotFound("sync error in async") as number | UserNotFound)
void value
didRunAfterError = true
return 42
})
expect(result).toBeInstanceOf(UserNotFound)
expect(didRunAfterError).toBe(false)
})
it("resolves sync yields with a promise return value", async () => {
const result = driveGen(function* (use) {
const a = yield* use(20)
const b = yield* use(22)
return Promise.resolve(a + b)
})
expect(result).toBeInstanceOf(Promise)
expect(await result).toBe(42)
})
})