-
Notifications
You must be signed in to change notification settings - Fork 30
/
PromiseTest.res
451 lines (386 loc) · 10.1 KB
/
PromiseTest.res
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
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
open RescriptCore
exception TestError(string)
let fail = msg => {
Exn.raiseError(msg)
}
let equal = (a, b) => {
a == b
}
module Creation = {
let resolveTest = () => {
open Promise
Promise.resolve("test")
->then(str => {
Test.run(__POS_OF__("Should resolve test"), str, equal, "test")
resolve()
})
->ignore
}
let runTests = () => {
resolveTest()
}
}
module ThenChaining = {
// A promise should be able to return a nested
// Promise and also flatten it for another then call
// to the actual value
let testThen = () => {
open Promise
resolve(1)
->then(first => {
resolve(first + 1)
})
->then(value => {
Test.run(__POS_OF__("Should be 2"), value, equal, 2)
resolve()
})
}
// It's not allowed to return a promise<promise<'a>> value
// within a then. This operation will throw an error
let testInvalidThen = () => {
open Promise
resolve(1)
->then(first => {
resolve(resolve(first + 1))
})
->then(p => {
let isPromise = Type.typeof((p: promise<_>)) == #object
Test.run(__POS_OF__("Should not be a promise"), isPromise, equal, false)
resolve()
})
}
let testThenResolve = () => {
open Promise
resolve(1)
->thenResolve(num => {
num + 1
})
->thenResolve(ret => {
Test.run(__POS_OF__("Should be 2"), ret, equal, 2)
})
}
let testInvalidThenResolve = () => {
open Promise
resolve(1)
->thenResolve(num => {
// This is against the law
resolve(num)
})
->then(p => {
let isPromise = Type.typeof((p: promise<_>)) == #object
Test.run(__POS_OF__("Should not be a promise"), isPromise, equal, false)
resolve()
})
}
let runTests = () => {
testThen()->ignore
testInvalidThen()->ignore
testThenResolve()->ignore
testInvalidThenResolve()->ignore
}
}
module Rejection = {
// Should gracefully handle a exn passed via reject()
let testExnRejection = () => {
let cond = "Expect rejection to contain a TestError"
open Promise
TestError("oops")
->reject
->catch(e => {
Test.run(__POS_OF__(cond), e, equal, TestError("oops"))
resolve()
})
->ignore
}
let runTests = () => {
testExnRejection()->ignore
}
}
module Catching = {
let asyncParseFail: unit => promise<string> = %raw(`
function() {
return new Promise((resolve) => {
var result = JSON.parse("{..");
return resolve(result);
})
}
`)
// Should correctly capture an JS error thrown within
// a Promise `then` function
let testExternalPromiseThrow = () => {
open Promise
asyncParseFail()
->then(_ => resolve()) // Since our asyncParse will fail anyways, we convert to promise<unit> for our catch later
->catch(e => {
let success = switch e {
| Exn.Error(err) => Exn.name(err) == Some("SyntaxError")
| _ => false
}
Test.run(__POS_OF__("Should be a parser error with Unexpected token ."), success, equal, true)
resolve()
})
}
// Should correctly capture an exn thrown in a Promise
// `then` function
let testExnThrow = () => {
open Promise
resolve()
->then(_ => {
raise(TestError("Thrown exn"))
})
->catch(e => {
let isTestErr = switch e {
| TestError("Thrown exn") => true
| _ => false
}
Test.run(__POS_OF__("Should be a TestError"), isTestErr, equal, true)
resolve()
})
}
// Should correctly capture a JS error raised with Exn.raiseError
// within a Promise then function
let testRaiseErrorThrow = () => {
open Promise
let causeErr = () => {
Exn.raiseError("Some JS error")
}
resolve()
->then(_ => {
causeErr()
})
->catch(e => {
let isTestErr = switch e {
| Exn.Error(err) => Exn.message(err) == Some("Some JS error")
| _ => false
}
Test.run(__POS_OF__("Should be some JS error"), isTestErr, equal, true)
resolve()
})
}
// Should recover a rejection and use then to
// access the value
let thenAfterCatch = () => {
open Promise
resolve()
->then(_ => {
// NOTE: if then is used, there will be an uncaught
// error
reject(TestError("some rejected value"))
})
->catch(e => {
let s = switch e {
| TestError("some rejected value") => "success"
| _ => "not a test error"
}
resolve(s)
})
->then(msg => {
Test.run(__POS_OF__("Should be success"), msg, equal, "success")
resolve()
})
}
let testCatchFinally = () => {
open Promise
let wasCalled = ref(false)
resolve(5)
->then(_ => {
reject(TestError("test"))
})
->then(v => {
v->resolve
})
->catch(_ => {
resolve()
})
->finally(() => {
wasCalled := true
})
->then(v => {
Test.run(__POS_OF__("value should be unit"), v, equal, ())
Test.run(__POS_OF__("finally should have been called"), wasCalled.contents, equal, true)
resolve()
})
->ignore
}
let testResolveFinally = () => {
open Promise
let wasCalled = ref(false)
resolve(5)
->then(v => {
resolve(v + 5)
})
->finally(() => {
wasCalled := true
})
->then(v => {
Test.run(__POS_OF__("value should be 5"), v, equal, 10)
Test.run(__POS_OF__("finally should have been called"), wasCalled.contents, equal, true)
resolve()
})
->ignore
}
let runTests = () => {
testExternalPromiseThrow()->ignore
testExnThrow()->ignore
testRaiseErrorThrow()->ignore
thenAfterCatch()->ignore
testCatchFinally()->ignore
testResolveFinally()->ignore
}
}
module Concurrently = {
let testParallel = () => {
open Promise
let place = ref(0)
let delayedMsg = (ms, msg) => {
Promise.make((resolve, _) => {
setTimeout(() => {
place := place.contents + 1
resolve((place.contents, msg))
}, ms)->ignore
})
}
let p1 = delayedMsg(1000, "is Anna")
let p2 = delayedMsg(500, "myName")
let p3 = delayedMsg(100, "Hi")
all([p1, p2, p3])->then(arr => {
let exp = [(3, "is Anna"), (2, "myName"), (1, "Hi")]
Test.run(__POS_OF__("Should have correct placing"), arr, equal, exp)
resolve()
})
}
let testRace = () => {
open Promise
let racer = (ms, name) => {
Promise.make((resolve, _) => {
setTimeout(() => {
resolve(name)
}, ms)->ignore
})
}
let promises = [racer(1000, "Turtle"), racer(500, "Hare"), racer(100, "Eagle")]
race(promises)->then(winner => {
Test.run(__POS_OF__("Eagle should win"), winner, equal, "Eagle")
resolve()
})
}
let testParallel2 = () => {
open Promise
let place = ref(0)
let delayedMsg = (ms, msg) => {
Promise.make((resolve, _) => {
setTimeout(() => {
place := place.contents + 1
resolve((place.contents, msg))
}, ms)->ignore
})
}
let p1 = delayedMsg(1000, "is Anna")
let p2 = delayedMsg(500, "myName")
all2((p1, p2))->then(arr => {
let exp = ((2, "is Anna"), (1, "myName"))
Test.run(__POS_OF__("Should have correct placing"), arr, equal, exp)
resolve()
})
}
let testParallel3 = () => {
open Promise
let place = ref(0)
let delayedMsg = (ms, msg) => {
Promise.make((resolve, _) => {
setTimeout(() => {
place := place.contents + 1
resolve((place.contents, msg))
}, ms)->ignore
})
}
let p1 = delayedMsg(1000, "is Anna")
let p2 = delayedMsg(500, "myName")
let p3 = delayedMsg(100, "Hi")
all3((p1, p2, p3))->then(arr => {
let exp = ((3, "is Anna"), (2, "myName"), (1, "Hi"))
Test.run(__POS_OF__("Should have correct placing"), arr, equal, exp)
resolve()
})
}
let testParallel4 = () => {
open Promise
let place = ref(0)
let delayedMsg = (ms, msg) => {
Promise.make((resolve, _) => {
setTimeout(() => {
place := place.contents + 1
resolve((place.contents, msg))
}, ms)->ignore
})
}
let p1 = delayedMsg(1500, "Anna")
let p2 = delayedMsg(1000, "is")
let p3 = delayedMsg(500, "my name")
let p4 = delayedMsg(100, "Hi")
all4((p1, p2, p3, p4))->then(arr => {
let exp = ((4, "Anna"), (3, "is"), (2, "my name"), (1, "Hi"))
Test.run(__POS_OF__("Should have correct placing"), arr, equal, exp)
resolve()
})
}
let testParallel5 = () => {
open Promise
let place = ref(0)
let delayedMsg = (ms, msg) => {
Promise.make((resolve, _) => {
setTimeout(() => {
place := place.contents + 1
resolve((place.contents, msg))
}, ms)->ignore
})
}
let p1 = delayedMsg(1500, "Anna")
let p2 = delayedMsg(1000, "is")
let p3 = delayedMsg(500, "name")
let p4 = delayedMsg(100, "my")
let p5 = delayedMsg(50, "Hi")
all5((p1, p2, p3, p4, p5))->then(arr => {
let exp = ((5, "Anna"), (4, "is"), (3, "name"), (2, "my"), (1, "Hi"))
Test.run(__POS_OF__("Should have correct placing"), arr, equal, exp)
resolve()
})
}
let testParallel6 = () => {
open Promise
let place = ref(0)
let delayedMsg = (ms, msg) => {
Promise.make((resolve, _) => {
setTimeout(() => {
place := place.contents + 1
resolve((place.contents, msg))
}, ms)->ignore
})
}
let p1 = delayedMsg(1500, "Anna")
let p2 = delayedMsg(1000, "is")
let p3 = delayedMsg(500, "name")
let p4 = delayedMsg(100, "my")
let p5 = delayedMsg(50, ", ")
let p6 = delayedMsg(10, "Hi")
all6((p1, p2, p3, p4, p5, p6))->then(arr => {
let exp = ((6, "Anna"), (5, "is"), (4, "name"), (3, "my"), (2, ", "), (1, "Hi"))
Test.run(__POS_OF__("Should have correct placing"), arr, equal, exp)
resolve()
})
}
let runTests = () => {
testParallel()->ignore
testRace()->ignore
testParallel2()->ignore
testParallel3()->ignore
testParallel4()->ignore
testParallel5()->ignore
testParallel6()->ignore
}
}
Creation.runTests()
ThenChaining.runTests()
Rejection.runTests()
Catching.runTests()
Concurrently.runTests()