This repository has been archived by the owner on Aug 1, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
Copy pathpromise_test.js
2332 lines (1988 loc) · 62.9 KB
/
promise_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
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
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/**
* @license
* Copyright The Closure Library Authors.
* SPDX-License-Identifier: Apache-2.0
*/
goog.module('goog.PromiseTest');
goog.setTestOnly();
const GoogPromise = goog.require('goog.Promise');
const MockClock = goog.require('goog.testing.MockClock');
const PropertyReplacer = goog.require('goog.testing.PropertyReplacer');
const TestCase = goog.require('goog.testing.TestCase');
const Thenable = goog.require('goog.Thenable');
const Timer = goog.require('goog.Timer');
const functions = goog.require('goog.functions');
const recordFunction = goog.require('goog.testing.recordFunction');
const testSuite = goog.require('goog.testing.testSuite');
// TODO(brenneman):
// - Add tests for interoperability with native Promises where available.
// - Add tests for long stack traces.
/** @type {boolean} */
const SUPPORTS_STRICT_MODE = (function() {
return this;
})() === undefined;
/**
* @type {boolean}
* @suppress {strictMissingProperties}
* */
const MICROTASKS_EXIST = Promise.toString().indexOf('[native code]') >= 0;
/** @type {!MockClock} */
const mockClock = new MockClock();
/** @type {!PropertyReplacer} */
const stubs = new PropertyReplacer();
let unhandledRejections;
// Simple shared objects used as test values.
const dummy = {
toString: functions.constant('[object dummy]')
};
const sentinel = {
toString: functions.constant('[object sentinel]')
};
/**
* Dummy onfulfilled or onrejected function that should not be called.
* @param {*} result The result passed into the callback.
*/
function shouldNotCall(result) {
fail('This should not have been called (result: ' + String(result) + ')');
}
/** @typedef {function(new:IThenable<?>, function(function(?), function(?)))} */
const IThenableCtor = undefined;
const /** !IThenableCtor */ NativeOrGoogPromise = window.Promise || GoogPromise;
/** @implements {IThenable<?>} */
class CountingThenable {
/** @param {function(function(?), function(?))} immediate */
constructor(immediate) {
/** @type {number} */
this.thenCallCount = 0;
/** @const @private {!GoogPromise<?>} */
this.internalPromise_ = new GoogPromise(immediate);
}
/**
* @param {?} value
* @return {!CountingThenable}
*/
static resolve(value) {
return new CountingThenable((resolve) => resolve(value));
}
/**
* @param {?(function(?): ?)=} onResolve
* @param {?(function(?): ?)=} onReject
* @param {*=} shouldCount
* @return {?}
*/
then(onResolve, onReject, shouldCount) {
if (shouldCount !== CountingThenable) {
this.thenCallCount++;
}
return CountingThenable.resolve(
this.internalPromise_.then(onResolve, onReject));
}
}
/** @implements {IThenable<?>} */
class ThrowingThenable {
/** @param {?} value */
constructor(value) {
/** @const {?} */
this.value = value;
}
/**
* @param {?(function(?): ?)=} onResolve
* @param {?(function(?): ?)=} onReject
* @param {*=} ctx
* @return {?}
*/
then(onResolve, onReject, ctx) {
throw this.value;
}
}
/**
* Return an `IThenable` for `(typeof ctor)` that resolves on the next tick.
*
* @template T
* @param {function(new:T, ...?)} ctor
* @param {?} value
* @return {T}
*/
function fulfillSoon(ctor, value) {
return new ctor((resolve, reject) => {
window.setTimeout(() => resolve(value), 0);
});
}
/**
* Return an `IThenable` for `(typeof ctor)` that rejects on the next tick.
*
* @template T
* @param {function(new:T, ...?)} ctor
* @param {?} value
* @return {T}
*/
function rejectSoon(ctor, value) {
return new ctor((resolve, reject) => {
window.setTimeout(() => reject(value), 0);
});
}
/**
* Return a new `IThenable` chained after `thenable` with a delay of one tick.
*
* @template T
* @param {T} thenable
* @param {function(...?): ?} callback
* @return {T}
*/
function after(thenable, callback) {
const always = () => {
try {
return fulfillSoon(thenable.constructor, callback());
} catch (e) {
return rejectSoon(thenable.constructor, e);
}
};
return thenable.then(always, always, CountingThenable);
}
/**
* Runs the test, passing it a function to call when its promise chain is
* complete, and all test assertions are complete.
* @param {function(function():undefined):undefined} testBody
* @return {!Promise}
*/
function validatePromiseChain(testBody) {
return new Promise((promiseChainComplete) => {
testBody(promiseChainComplete);
});
}
testSuite({
setUpPage() {
TestCase.getActiveTestCase().promiseTimeout = 10000; // 10s
},
setUp() {
unhandledRejections = recordFunction();
GoogPromise.setUnhandledRejectionHandler(unhandledRejections);
},
tearDown() {
// The system should leave no pending unhandled rejections. Advance the mock
// clock (if installed) to catch any rethrows waiting in the queue.
mockClock.tick(Infinity);
mockClock.uninstall();
mockClock.reset();
stubs.reset();
},
testThenIsFulfilled() {
let timesCalled = 0;
const p = new GoogPromise((resolve, reject) => {
resolve(sentinel);
});
p.then((value) => {
timesCalled++;
assertEquals(sentinel, value);
});
assertEquals(
'then() must return before callbacks are invoked.', 0, timesCalled);
return p.then(() => {
assertEquals('onFulfilled must be called exactly once.', 1, timesCalled);
});
},
testThenVoidIsFulfilled() {
let timesCalled = 0;
const p = GoogPromise.resolve(sentinel);
p.thenVoid((value) => {
timesCalled++;
assertEquals(sentinel, value);
});
assertEquals(
'thenVoid() must return before callbacks are invoked.', 0, timesCalled);
return p.then(() => {
assertEquals('onFulfilled must be called exactly once.', 1, timesCalled);
});
},
testThenIsRejected() {
let timesCalled = 0;
const p = GoogPromise.reject(sentinel);
p.then(shouldNotCall, (value) => {
timesCalled++;
assertEquals(sentinel, value);
});
assertEquals(
'then() must return before callbacks are invoked.', 0, timesCalled);
return p.then(shouldNotCall, () => {
assertEquals('onRejected must be called exactly once.', 1, timesCalled);
});
},
testThenVoidIsRejected() {
let timesCalled = 0;
const p = GoogPromise.reject(sentinel);
p.thenVoid(shouldNotCall, (value) => {
timesCalled++;
assertEquals(sentinel, value);
assertEquals('onRejected must be called exactly once.', 1, timesCalled);
});
assertEquals(
'thenVoid() must return before callbacks are invoked.', 0, timesCalled);
return p.then(shouldNotCall, () => {
assertEquals('onRejected must be called exactly once.', 1, timesCalled);
});
},
testThenAsserts() {
const p = GoogPromise.resolve();
let m = assertThrows(() => {
p.then(/** @type {?} */ ({}));
});
assertContains('opt_onFulfilled should be a function.', m.message);
m = assertThrows(() => {
p.then(() => {}, /** @type {?} */ ({}));
});
assertContains('opt_onRejected should be a function.', m.message);
},
testThenVoidAsserts() {
const p = GoogPromise.resolve();
let m = assertThrows(() => {
p.thenVoid(/** @type {?} */ ({}));
});
assertContains('opt_onFulfilled should be a function.', m.message);
m = assertThrows(() => {
p.thenVoid(() => {}, /** @type {?} */ ({}));
});
assertContains('opt_onRejected should be a function.', m.message);
},
testOptionalOnFulfilled() {
return GoogPromise.resolve(sentinel)
.then(null, null)
.then(null, shouldNotCall)
.then((value) => {
assertEquals(sentinel, value);
});
},
testOptionalOnRejected() {
return GoogPromise.reject(sentinel)
.then(null, null)
.then(shouldNotCall)
.then(null, (reason) => {
assertEquals(sentinel, reason);
});
},
testMultipleResolves() {
let timesCalled = 0;
let resolvePromise;
const p = new GoogPromise((resolve, reject) => {
resolvePromise = resolve;
resolve('foo');
resolve('bar');
});
p.then((value) => {
timesCalled++;
assertEquals('onFulfilled must be called exactly once.', 1, timesCalled);
});
// Add one more test for fulfilling after a delay.
return Timer.promise(10).then(() => {
resolvePromise('baz');
assertEquals(1, timesCalled);
});
},
testMultipleRejects() {
let timesCalled = 0;
let rejectPromise;
const p = new GoogPromise((resolve, reject) => {
rejectPromise = reject;
reject('foo');
reject('bar');
});
p.then(shouldNotCall, (value) => {
timesCalled++;
assertEquals('onRejected must be called exactly once.', 1, timesCalled);
});
// Add one more test for rejecting after a delay.
return Timer.promise(10).then(() => {
rejectPromise('baz');
assertEquals(1, timesCalled);
});
},
testAsynchronousThenCalls() {
const timesCalled = [0, 0, 0, 0];
const p = new GoogPromise((resolve, reject) => {
window.setTimeout(() => {
resolve();
}, 30);
});
p.then(() => {
timesCalled[0]++;
assertArrayEquals([1, 0, 0, 0], timesCalled);
});
window.setTimeout(() => {
p.then(() => {
timesCalled[1]++;
assertArrayEquals([1, 1, 0, 0], timesCalled);
});
}, 10);
window.setTimeout(() => {
p.then(() => {
timesCalled[2]++;
assertArrayEquals([1, 1, 1, 0], timesCalled);
});
}, 20);
return Timer.promise(40).then(() => p.then(() => {
timesCalled[3]++;
assertArrayEquals([1, 1, 1, 1], timesCalled);
}));
},
testResolveWithPromise() {
let resolveBlocker;
let hasFulfilled = false;
const blocker = new GoogPromise((resolve, reject) => {
resolveBlocker = resolve;
});
const p = GoogPromise.resolve(blocker);
p.then((value) => {
hasFulfilled = true;
assertEquals(sentinel, value);
}, shouldNotCall);
assertFalse(hasFulfilled);
resolveBlocker(sentinel);
return p.then(() => {
assertTrue(hasFulfilled);
});
},
testResolveWithRejectedPromise() {
let rejectBlocker;
let hasRejected = false;
const blocker = new GoogPromise((resolve, reject) => {
rejectBlocker = reject;
});
const p = GoogPromise.resolve(blocker);
const child = p.then(shouldNotCall, (reason) => {
hasRejected = true;
assertEquals(sentinel, reason);
});
assertFalse(hasRejected);
rejectBlocker(sentinel);
return child.thenCatch(() => {
assertTrue(hasRejected);
});
},
testRejectWithPromise() {
let resolveBlocker;
let hasFulfilled = false;
let hasRejected = false;
const blocker = new GoogPromise((resolve, reject) => {
resolveBlocker = resolve;
});
const p = GoogPromise.reject(blocker);
const child = p.then((value) => {
hasFulfilled = true;
assertEquals(sentinel, value);
}, shouldNotCall);
assertFalse(hasFulfilled);
resolveBlocker(sentinel);
return child.thenCatch(() => {
assertTrue(hasRejected);
});
},
testRejectWithRejectedPromise() {
let rejectBlocker;
let hasRejected = false;
const blocker = new GoogPromise((resolve, reject) => {
rejectBlocker = reject;
});
const p = GoogPromise.reject(blocker);
const child = p.then(shouldNotCall, (reason) => {
hasRejected = true;
assertEquals(sentinel, reason);
});
assertFalse(hasRejected);
rejectBlocker(sentinel);
return child.thenCatch(() => {
assertTrue(hasRejected);
});
},
testResolveAndReject() {
let onFulfilledCalled = false;
let onRejectedCalled = false;
const p = new GoogPromise((resolve, reject) => {
resolve();
reject();
});
p.then(
() => {
onFulfilledCalled = true;
},
() => {
onRejectedCalled = true;
});
return p.then(() => {
assertTrue(onFulfilledCalled);
assertFalse(onRejectedCalled);
});
},
testResolveWithSelfRejects() {
let r;
const p = new GoogPromise((resolve) => {
r = resolve;
});
r(p);
return p.then(shouldNotCall, (e) => {
assertEquals(
/** @type {!Error} */ (e).message,
'Promise cannot resolve to itself');
});
},
testResolveWithObjectStringResolves() {
return GoogPromise.resolve('[object Object]').then((v) => {
assertEquals(v, '[object Object]');
});
},
testRejectAndResolve() {
return new GoogPromise((resolve, reject) => {
reject();
resolve();
})
.then(shouldNotCall, () => true);
},
testThenReturnsBeforeCallbackWithFulfill() {
let thenHasReturned = false;
const p = GoogPromise.resolve();
const child = p.then(() => {
assertTrue(
'Callback must be called only after then() has returned.',
thenHasReturned);
});
thenHasReturned = true;
return child;
},
testThenReturnsBeforeCallbackWithReject() {
let thenHasReturned = false;
const p = GoogPromise.reject();
const child = p.then(shouldNotCall, () => {
assertTrue(
'Callback must be called only after then() has returned.',
thenHasReturned);
});
thenHasReturned = true;
return child;
},
testResolutionOrder() {
const callbacks = [];
return GoogPromise.resolve()
.then(
() => {
callbacks.push(1);
},
shouldNotCall)
.then(
() => {
callbacks.push(2);
},
shouldNotCall)
.then(
() => {
callbacks.push(3);
},
shouldNotCall)
.then(() => {
assertArrayEquals([1, 2, 3], callbacks);
});
},
testResolutionOrderWithThrow() {
const callbacks = [];
const p = GoogPromise.resolve();
p.then(() => {
callbacks.push(1);
}, shouldNotCall);
const child = p.then(() => {
callbacks.push(2);
throw new Error();
}, shouldNotCall);
child.then(shouldNotCall, () => {
// The parent callbacks should be evaluated before the child.
callbacks.push(4);
});
p.then(() => {
callbacks.push(3);
}, shouldNotCall);
return child.then(shouldNotCall, () => {
callbacks.push(5);
assertArrayEquals([1, 2, 3, 4, 5], callbacks);
});
},
testResolutionOrderWithNestedThen() {
const resolver = GoogPromise.withResolver();
const callbacks = [];
const p = GoogPromise.resolve();
p.then(() => {
callbacks.push(1);
p.then(() => {
callbacks.push(3);
resolver.resolve();
});
});
p.then(() => {
callbacks.push(2);
});
return resolver.promise.then(() => {
assertArrayEquals([1, 2, 3], callbacks);
});
},
testRejectionOrder() {
const callbacks = [];
const p = GoogPromise.reject();
p.then(shouldNotCall, () => {
callbacks.push(1);
});
p.then(shouldNotCall, () => {
callbacks.push(2);
});
p.then(shouldNotCall, () => {
callbacks.push(3);
});
return p.then(shouldNotCall, () => {
assertArrayEquals([1, 2, 3], callbacks);
});
},
testRejectionOrderWithThrow() {
const callbacks = [];
const p = GoogPromise.reject();
p.then(shouldNotCall, () => {
callbacks.push(1);
});
p.then(shouldNotCall, () => {
callbacks.push(2);
throw new Error();
});
p.then(shouldNotCall, () => {
callbacks.push(3);
});
return p.then(shouldNotCall, () => {
assertArrayEquals([1, 2, 3], callbacks);
});
},
testRejectionOrderWithNestedThen() {
const resolver = GoogPromise.withResolver();
const callbacks = [];
const p = GoogPromise.reject();
p.then(shouldNotCall, () => {
callbacks.push(1);
p.then(shouldNotCall, () => {
callbacks.push(3);
resolver.resolve();
});
});
p.then(shouldNotCall, () => {
callbacks.push(2);
});
return resolver.promise.then(() => {
assertArrayEquals([1, 2, 3], callbacks);
});
},
testBranching() {
const p = GoogPromise.resolve(2);
const branch1 =
p.then((value) => {
assertEquals('then functions should see the same value', 2, value);
return value / 2;
}).then((value) => {
assertEquals('branch should receive the returned value', 1, value);
});
const branch2 =
p.then((value) => {
assertEquals('then functions should see the same value', 2, value);
throw value + 1;
}).then(shouldNotCall, (reason) => {
assertEquals('branch should receive the thrown value', 3, reason);
});
const branch3 =
p.then((value) => {
assertEquals('then functions should see the same value', 2, value);
return value * 2;
}).then((value) => {
assertEquals('branch should receive the returned value', 4, value);
});
return GoogPromise.all([branch1, branch2, branch3]);
},
testThenReturnsPromise() {
const parent = GoogPromise.resolve();
const child = parent.then();
assertTrue(child instanceof GoogPromise);
assertNotEquals(
'The returned Promise must be different from the input.', parent,
child);
},
testThenVoidReturnsUndefined() {
const parent = GoogPromise.resolve();
const child = parent.thenVoid();
assertUndefined(child);
},
testBlockingPromise() {
const p = GoogPromise.resolve();
let wasFulfilled = false;
let wasRejected = false;
const p2 = p.then(() => new GoogPromise((resolve, reject) => {}));
p2.then(
() => {
wasFulfilled = true;
},
() => {
wasRejected = true;
});
return Timer.promise(10).then(() => {
assertFalse('p2 should be blocked on the returned Promise', wasFulfilled);
assertFalse('p2 should be blocked on the returned Promise', wasRejected);
});
},
testBlockingPromiseFulfilled() {
const blockingPromise = new GoogPromise((resolve, reject) => {
window.setTimeout(() => {
resolve(sentinel);
}, 0);
});
const p = GoogPromise.resolve(dummy);
const p2 = p.then((value) => blockingPromise);
return p2.then((value) => {
assertEquals(sentinel, value);
});
},
testBlockingPromiseRejected() {
const blockingPromise = new GoogPromise((resolve, reject) => {
window.setTimeout(() => {
reject(sentinel);
}, 0);
});
const p = GoogPromise.resolve(blockingPromise);
return p.then(shouldNotCall, (reason) => {
assertEquals(sentinel, reason);
});
},
testBlockingThenableFulfilled() {
const thenable = {
then: function(onFulfill, onReject) {
onFulfill(sentinel);
}
};
return GoogPromise.resolve(thenable).then((reason) => {
assertEquals(sentinel, reason);
});
},
testBlockingThenableRejected() {
const thenable = {
then: function(onFulfill, onReject) {
onReject(sentinel);
}
};
return GoogPromise.resolve(thenable).then(shouldNotCall, (reason) => {
assertEquals(sentinel, reason);
});
},
testBlockingThenableThrows() {
const thenable = {
then: function(onFulfill, onReject) {
throw sentinel;
}
};
return GoogPromise.resolve(thenable).then(shouldNotCall, (reason) => {
assertEquals(sentinel, reason);
});
},
testBlockingThenableMisbehaves() {
const thenable = {
then: function(onFulfill, onReject) {
onFulfill(sentinel);
onFulfill(dummy);
onReject(dummy);
throw dummy;
},
};
return GoogPromise.resolve(thenable).then((value) => {
assertEquals(
'Only the first resolution of the Thenable should have a result.',
sentinel, value);
});
},
testNestingThenables() {
const thenableA = {
then: function(onFulfill, onReject) {
onFulfill(sentinel);
},
};
const thenableB = {
then: function(onFulfill, onReject) {
onFulfill(thenableA);
},
};
const thenableC = {
then: function(onFulfill, onReject) {
onFulfill(thenableB);
},
};
return GoogPromise.resolve(thenableC).then((value) => {
assertEquals(
'Should resolve to the fulfillment value of thenableA', sentinel,
value);
});
},
testNestingThenablesRejected() {
const thenableA = {
then: function(onFulfill, onReject) {
onReject(sentinel);
}
};
const thenableB = {
then: function(onFulfill, onReject) {
onReject(thenableA);
},
};
const thenableC = {
then: function(onFulfill, onReject) {
onReject(thenableB);
},
};
return GoogPromise.reject(thenableC).then(shouldNotCall, (reason) => {
assertEquals(
'Should resolve to rejection reason of thenableA', sentinel, reason);
});
},
testThenCatch() {
return validatePromiseChain((promiseChainComplete) => {
let catchCalled = false;
GoogPromise.reject()
.thenCatch((reason) => {
catchCalled = true;
return sentinel;
})
.then((value) => {
assertTrue(catchCalled);
assertEquals(sentinel, value);
promiseChainComplete();
});
});
},
testThenCatchWithSuccess() {
return validatePromiseChain((promiseChainComplete) => {
let catchCalled = false;
GoogPromise.resolve(sentinel)
.thenCatch((reason) => {
catchCalled = true;
return dummy;
})
.then((value) => {
assertFalse(catchCalled);
assertEquals(sentinel, value);
promiseChainComplete();
});
});
},
testThenCatchThrows() {
return validatePromiseChain((promiseChainComplete) => {
GoogPromise.reject(dummy)
.thenCatch((reason) => {
assertEquals(dummy, reason);
throw sentinel;
})
.then(
() => {
fail('Should have rejected.');
},
(value) => {
assertEquals(sentinel, value);
promiseChainComplete();
});
});
},
testRaceWithEmptyList() {
return GoogPromise.race([]).then((value) => {
assertUndefined(value);
});
},
testRaceWithFulfill() {
const c = fulfillSoon(NativeOrGoogPromise, 'c');
const d = after(c, () => 'd');
const b = after(d, () => 'b');
const a = after(b, () => 'a');
return GoogPromise.race([a, b, c, d])
.then((value) => {
assertEquals('c', value);
// Return the slowest input promise to wait for it to complete.
return a;
})
.then((value) => {
assertEquals(
'The slowest promise should resolve eventually.', 'a', value);
});
},
testRaceWithThenables() {
const c = fulfillSoon(CountingThenable, 'c');
const d = after(c, () => 'd');
const b = after(d, () => 'b');
const a = after(b, () => 'a');
return GoogPromise.race([a, b, c, d])
.then((value) => {
assertEquals('c', value);
// Ensure that the `then` property was only accessed once by
// `goog.Promise.race`.
assertEquals(1, c.thenCallCount);
// Return the slowest input thenable to wait for it to complete.
return a;
})
.then((value) => {
assertEquals(
'The slowest thenable should resolve eventually.', 'a', value);
});
},
testRaceWithBuiltIns() {
const c = fulfillSoon(NativeOrGoogPromise, 'c');
const d = after(c, () => 'd');
const b = after(d, () => 'b');
const a = after(d, () => 'a');
return GoogPromise.race([a, b, c, d])
.then((value) => {
assertEquals('c', value);
// Return the slowest input promise to wait for it to complete.
return a;
})
.then((value) => {
assertEquals(
'The slowest promise should resolve eventually.', 'a', value);
});
},
testRaceWithNonThenable() {
const c = fulfillSoon(GoogPromise, 'c');
const d = after(c, () => 'd');
const b = 'b';
const a = after(d, () => 'a');