This repository was archived by the owner on Oct 16, 2025. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 82
Expand file tree
/
Copy pathSubscribeBlockTracker.test.ts
More file actions
3271 lines (2891 loc) · 113 KB
/
SubscribeBlockTracker.test.ts
File metadata and controls
3271 lines (2891 loc) · 113 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
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
import { SubscribeBlockTracker } from '.';
import buildDeferred from '../tests/buildDeferred';
import EMPTY_FUNCTION from '../tests/emptyFunction';
import recordCallsToSetTimeout from '../tests/recordCallsToSetTimeout';
import { withSubscribeBlockTracker } from '../tests/withBlockTracker';
interface Sync {
oldBlock: string;
newBlock: string;
}
const METHODS_TO_ADD_LISTENER = ['on', 'addListener'] as const;
const METHODS_TO_REMOVE_LISTENER = ['off', 'removeListener'] as const;
const METHODS_TO_GET_LATEST_BLOCK = [
'getLatestBlock',
'checkForLatestBlock',
] as const;
const originalSetTimeout = setTimeout;
describe('SubscribeBlockTracker', () => {
describe('constructor', () => {
it('should throw if given no options', () => {
expect(() => new SubscribeBlockTracker()).toThrow(
'SubscribeBlockTracker - no provider specified.',
);
});
it('should throw if given options but not given a provider', () => {
expect(() => new SubscribeBlockTracker({})).toThrow(
'SubscribeBlockTracker - no provider specified.',
);
});
it('should return a block tracker that is not running', async () => {
recordCallsToSetTimeout();
await withSubscribeBlockTracker(({ blockTracker }) => {
expect(blockTracker.isRunning()).toBe(false);
});
});
});
describe('destroy', () => {
it('should stop the block tracker if any "latest" and "sync" events were added previously', async () => {
recordCallsToSetTimeout();
await withSubscribeBlockTracker(async ({ blockTracker }) => {
blockTracker.on('latest', EMPTY_FUNCTION);
await new Promise<void>((resolve) => {
blockTracker.on('sync', resolve);
});
expect(blockTracker.isRunning()).toBe(true);
await blockTracker.destroy();
expect(blockTracker.isRunning()).toBe(false);
});
});
it('should not start a timer to clear the current block number if called after removing all listeners but before enough time passes that the cache would have been cleared', async () => {
const setTimeoutRecorder = recordCallsToSetTimeout();
const blockResetDuration = 500;
await withSubscribeBlockTracker(
{
blockTracker: {
blockResetDuration,
},
provider: {
stubs: [
{
methodName: 'eth_blockNumber',
result: '0x0',
},
],
},
},
async ({ blockTracker }) => {
blockTracker.on('latest', EMPTY_FUNCTION);
await new Promise((resolve) => {
blockTracker.on('sync', resolve);
});
expect(blockTracker.getCurrentBlock()).toBe('0x0');
blockTracker.removeAllListeners();
expect(setTimeoutRecorder.calls).not.toHaveLength(0);
await blockTracker.destroy();
expect(setTimeoutRecorder.calls).toHaveLength(0);
await new Promise((resolve) =>
originalSetTimeout(resolve, blockResetDuration),
);
expect(blockTracker.getCurrentBlock()).toBe('0x0');
},
);
});
it('should only clear the current block number if enough time passes after all "latest" and "sync" events are removed', async () => {
const setTimeoutRecorder = recordCallsToSetTimeout();
await withSubscribeBlockTracker(
{
provider: {
stubs: [
{
methodName: 'eth_blockNumber',
result: '0x0',
},
],
},
},
async ({ blockTracker }) => {
blockTracker.on('latest', EMPTY_FUNCTION);
await new Promise((resolve) => {
blockTracker.on('sync', resolve);
});
expect(blockTracker.getCurrentBlock()).toBe('0x0');
blockTracker.removeAllListeners();
await setTimeoutRecorder.next();
await blockTracker.destroy();
expect(blockTracker.getCurrentBlock()).toBeNull();
},
);
});
});
METHODS_TO_GET_LATEST_BLOCK.forEach((methodToGetLatestBlock) => {
describe(`${methodToGetLatestBlock}`, () => {
it('should start the block tracker immediately after being called', async () => {
recordCallsToSetTimeout();
await withSubscribeBlockTracker(async ({ blockTracker }) => {
const promiseToGetLatestBlock =
blockTracker[methodToGetLatestBlock]();
expect(blockTracker.isRunning()).toBe(true);
// We have to wait for the promise to resolve after the assertion
// because by the time this promise resolves, the block tracker isn't
// running anymore
await promiseToGetLatestBlock;
});
});
it('should stop the block tracker automatically after its promise is fulfilled', async () => {
recordCallsToSetTimeout();
await withSubscribeBlockTracker(async ({ blockTracker }) => {
await blockTracker[methodToGetLatestBlock]();
expect(blockTracker.isRunning()).toBe(false);
});
});
it('should resolve all returned promises when a new block is available', async () => {
recordCallsToSetTimeout();
await withSubscribeBlockTracker(
{
provider: {
stubs: [
{
methodName: 'eth_blockNumber',
result: '0x1',
},
],
},
},
async ({ blockTracker }) => {
const promises = [
blockTracker.getLatestBlock(),
blockTracker.getLatestBlock(),
];
expect(await Promise.all(promises)).toStrictEqual(['0x1', '0x1']);
},
);
});
it('should reject the returned promise if the block tracker is destroyed in the meantime', async () => {
await withSubscribeBlockTracker(async ({ blockTracker }) => {
const promiseToGetLatestBlock =
blockTracker[methodToGetLatestBlock]();
await blockTracker.destroy();
await expect(promiseToGetLatestBlock).rejects.toThrow(
'Block tracker destroyed',
);
expect(blockTracker.isRunning()).toBe(false);
});
});
it('should fetch the latest block number', async () => {
recordCallsToSetTimeout();
await withSubscribeBlockTracker(
{
provider: {
stubs: [
{
methodName: 'eth_blockNumber',
result: '0x0',
},
],
},
},
async ({ blockTracker }) => {
const latestBlockNumber = await blockTracker[
methodToGetLatestBlock
]();
expect(latestBlockNumber).toBe('0x0');
},
);
});
it('should not ask for a new block number while the current block number is cached', async () => {
recordCallsToSetTimeout();
await withSubscribeBlockTracker(async ({ provider, blockTracker }) => {
const requestSpy = jest.spyOn(provider, 'request');
await blockTracker[methodToGetLatestBlock]();
await blockTracker[methodToGetLatestBlock]();
const requestsForLatestBlock = requestSpy.mock.calls.filter(
(args) => {
return args[0].method === 'eth_blockNumber';
},
);
expect(requestsForLatestBlock).toHaveLength(1);
});
});
it('should ask for a new block number after the cached one is cleared', async () => {
const setTimeoutRecorder = recordCallsToSetTimeout();
const blockTrackerOptions = {
pollingInterval: 100,
blockResetDuration: 200,
};
await withSubscribeBlockTracker(
{
provider: {
stubs: [
{
methodName: 'eth_blockNumber',
result: '0x0',
},
{
methodName: 'eth_subscribe',
result: '0x0',
},
{
methodName: 'eth_unsubscribe',
result: true,
},
{
methodName: 'eth_blockNumber',
result: '0x1',
},
{
methodName: 'eth_subscribe',
result: '0x1',
},
{
methodName: 'eth_unsubscribe',
result: true,
},
],
},
blockTracker: blockTrackerOptions,
},
async ({ provider, blockTracker }) => {
const requestSpy = jest.spyOn(provider, 'request');
await blockTracker[methodToGetLatestBlock]();
// For PollingBlockTracker, there are possibly multiple
// `setTimeout`s in play at this point. For SubscribeBlockTracker
// that is not the case, as it does not poll, but there is no harm
// in doing this.
await setTimeoutRecorder.nextMatchingDuration(
blockTrackerOptions.blockResetDuration,
);
await blockTracker[methodToGetLatestBlock]();
const requestsForLatestBlock = requestSpy.mock.calls.filter(
(args) => {
return args[0].method === 'eth_blockNumber';
},
);
expect(requestsForLatestBlock).toHaveLength(2);
},
);
});
METHODS_TO_ADD_LISTENER.forEach((methodToAddListener) => {
it(`should emit the "error" event (added via \`${methodToAddListener}\`) and should reject if, while making the request for the latest block number, the provider throws an Error`, async () => {
recordCallsToSetTimeout({ numAutomaticCalls: 1 });
const thrownError = new Error('boom');
await withSubscribeBlockTracker(
{
provider: {
stubs: [
{
methodName: 'eth_blockNumber',
implementation: () => {
throw thrownError;
},
},
],
},
},
async ({ blockTracker }) => {
const listener = jest.fn();
blockTracker[methodToAddListener]('error', listener);
const promiseForLatestBlock =
blockTracker[methodToGetLatestBlock]();
await expect(promiseForLatestBlock).rejects.toThrow(thrownError);
expect(listener).toHaveBeenCalledWith(thrownError);
},
);
});
it(`should emit the "error" event (added via \`${methodToAddListener}\`) and should reject if, while making the request for the latest block number, the provider throws a string`, async () => {
recordCallsToSetTimeout({ numAutomaticCalls: 1 });
const thrownString = 'boom';
await withSubscribeBlockTracker(
{
provider: {
stubs: [
{
methodName: 'eth_blockNumber',
implementation: () => {
throw thrownString;
},
},
],
},
},
async ({ blockTracker }) => {
const listener = jest.fn();
blockTracker[methodToAddListener]('error', listener);
const promiseForLatestBlock =
blockTracker[methodToGetLatestBlock]();
await expect(promiseForLatestBlock).rejects.toBe(thrownString);
expect(listener).toHaveBeenCalledWith(thrownString);
},
);
});
it(`should emit the "error" event (added via \`${methodToAddListener}\`) and should reject if, while making the request for the latest block number, the provider rejects with an error`, async () => {
recordCallsToSetTimeout({ numAutomaticCalls: 1 });
await withSubscribeBlockTracker(
{
provider: {
stubs: [
{
methodName: 'eth_blockNumber',
error: 'boom',
},
],
},
},
async ({ blockTracker }) => {
const listener = jest.fn();
blockTracker[methodToAddListener]('error', listener);
const promiseForLatestBlock =
blockTracker[methodToGetLatestBlock]();
await expect(promiseForLatestBlock).rejects.toThrow('boom');
expect(listener).toHaveBeenCalledWith(new Error('boom'));
},
);
});
it(`should emit the "error" event (added via \`${methodToAddListener}\`) and should reject if, while making the request to subscribe, the provider throws an Error`, async () => {
recordCallsToSetTimeout({ numAutomaticCalls: 1 });
const thrownError = new Error('boom');
await withSubscribeBlockTracker(
{
provider: {
stubs: [
{
methodName: 'eth_subscribe',
implementation: () => {
throw thrownError;
},
},
],
},
},
async ({ blockTracker }) => {
const listener = jest.fn();
blockTracker[methodToAddListener]('error', listener);
const promiseForLatestBlock =
blockTracker[methodToGetLatestBlock]();
await expect(promiseForLatestBlock).rejects.toThrow(thrownError);
expect(listener).toHaveBeenCalledWith(thrownError);
},
);
});
it(`should emit the "error" event (added via \`${methodToAddListener}\`) and should reject if, while making the request to subscribe, the provider throws a string`, async () => {
recordCallsToSetTimeout({ numAutomaticCalls: 1 });
const thrownString = 'boom';
await withSubscribeBlockTracker(
{
provider: {
stubs: [
{
methodName: 'eth_subscribe',
implementation: () => {
throw thrownString;
},
},
],
},
},
async ({ blockTracker }) => {
const listener = jest.fn();
blockTracker[methodToAddListener]('error', listener);
const promiseForLatestBlock =
blockTracker[methodToGetLatestBlock]();
await expect(promiseForLatestBlock).rejects.toBe(thrownString);
expect(listener).toHaveBeenCalledWith(thrownString);
},
);
});
it(`should emit the "error" event (added via \`${methodToAddListener}\`) and should reject if, while making the request to subscribe, the provider rejects with an error`, async () => {
recordCallsToSetTimeout({ numAutomaticCalls: 1 });
await withSubscribeBlockTracker(
{
provider: {
stubs: [
{
methodName: 'eth_subscribe',
error: 'boom',
},
],
},
},
async ({ blockTracker }) => {
const listener = jest.fn();
blockTracker[methodToAddListener]('error', listener);
const promiseForLatestBlock =
blockTracker[methodToGetLatestBlock]();
await expect(promiseForLatestBlock).rejects.toThrow('boom');
expect(listener).toHaveBeenCalledWith(new Error('boom'));
},
);
});
it(`should emit the "error" event (added via \`${methodToAddListener}\`) if, while making the request to unsubscribe, the provider throws an Error`, async () => {
recordCallsToSetTimeout({ numAutomaticCalls: 1 });
const thrownError = new Error('boom');
await withSubscribeBlockTracker(
{
provider: {
stubs: [
{
methodName: 'eth_unsubscribe',
implementation: () => {
throw thrownError;
},
},
],
},
},
async ({ blockTracker }) => {
const promiseForCaughtError = new Promise<any>((resolve) => {
blockTracker[methodToAddListener]('error', resolve);
});
await blockTracker[methodToGetLatestBlock]();
const caughtError = await promiseForCaughtError;
expect(caughtError).toBe(thrownError);
},
);
});
it(`should emit the "error" event (added via \`${methodToAddListener}\`) if, while making the request to unsubscribe, the provider throws a string`, async () => {
recordCallsToSetTimeout({ numAutomaticCalls: 1 });
const thrownString = 'boom';
await withSubscribeBlockTracker(
{
provider: {
stubs: [
{
methodName: 'eth_unsubscribe',
implementation: () => {
throw thrownString;
},
},
],
},
},
async ({ blockTracker }) => {
const promiseForCaughtError = new Promise<any>((resolve) => {
blockTracker[methodToAddListener]('error', resolve);
});
await blockTracker[methodToGetLatestBlock]();
const caughtError = await promiseForCaughtError;
expect(caughtError).toBe(thrownString);
},
);
});
it(`should emit the "error" event (added via \`${methodToAddListener}\`) if, while making the request to unsubscribe, the provider rejects with an error`, async () => {
recordCallsToSetTimeout({ numAutomaticCalls: 1 });
await withSubscribeBlockTracker(
{
provider: {
stubs: [
{
methodName: 'eth_unsubscribe',
error: 'boom',
},
],
},
},
async ({ blockTracker }) => {
const promiseForCaughtError = new Promise<any>((resolve) => {
blockTracker[methodToAddListener]('error', resolve);
});
await blockTracker[methodToGetLatestBlock]();
const caughtError = await promiseForCaughtError;
expect(caughtError.message).toBe('boom');
},
);
});
});
it('should update the current block number', async () => {
recordCallsToSetTimeout();
await withSubscribeBlockTracker(
{
provider: {
stubs: [
{
methodName: 'eth_blockNumber',
result: '0x0',
},
],
},
},
async ({ blockTracker }) => {
await blockTracker[methodToGetLatestBlock]();
const currentBlockNumber = blockTracker.getCurrentBlock();
expect(currentBlockNumber).toBe('0x0');
},
);
});
it('should clear the current block number some time after being called', async () => {
const setTimeoutRecorder = recordCallsToSetTimeout();
const blockTrackerOptions = {
pollingInterval: 100,
blockResetDuration: 200,
};
await withSubscribeBlockTracker(
{
provider: {
stubs: [
{
methodName: 'eth_blockNumber',
result: '0x0',
},
],
},
blockTracker: blockTrackerOptions,
},
async ({ blockTracker }) => {
await blockTracker[methodToGetLatestBlock]();
const currentBlockNumber = blockTracker.getCurrentBlock();
expect(currentBlockNumber).toBe('0x0');
// For PollingBlockTracker, there are possibly multiple
// `setTimeout`s in play at this point. For SubscribeBlockTracker
// that is not the case, as it does not poll, but there is no harm
// in doing this.
await setTimeoutRecorder.nextMatchingDuration(
blockTrackerOptions.blockResetDuration,
);
expect(blockTracker.getCurrentBlock()).toBeNull();
},
);
});
});
});
METHODS_TO_ADD_LISTENER.forEach((methodToAddListener) => {
describe(`${methodToAddListener}`, () => {
describe('"latest"', () => {
it('should start the block tracker', async () => {
recordCallsToSetTimeout();
await withSubscribeBlockTracker(({ blockTracker }) => {
blockTracker[methodToAddListener]('latest', EMPTY_FUNCTION);
expect(blockTracker.isRunning()).toBe(true);
});
});
it('should emit "latest" soon after being listened to', async () => {
recordCallsToSetTimeout();
await withSubscribeBlockTracker(
{
provider: {
stubs: [
{
methodName: 'eth_blockNumber',
result: '0x0',
},
],
},
},
async ({ blockTracker }) => {
const latestBlockNumber = await new Promise<string>((resolve) => {
blockTracker[methodToAddListener]('latest', resolve);
});
expect(latestBlockNumber).toBe('0x0');
},
);
});
it('should update the current block number', async () => {
recordCallsToSetTimeout();
await withSubscribeBlockTracker(
{
provider: {
stubs: [
{
methodName: 'eth_blockNumber',
result: '0x0',
},
],
},
},
async ({ blockTracker }) => {
await new Promise((resolve) => {
blockTracker[methodToAddListener]('latest', resolve);
});
const currentBlockNumber = blockTracker.getCurrentBlock();
expect(currentBlockNumber).toBe('0x0');
},
);
});
it('should not emit "latest" if the subscription id of an incoming message does not match the created subscription id', async () => {
recordCallsToSetTimeout();
await withSubscribeBlockTracker(
{
provider: {
stubs: [
{
methodName: 'eth_blockNumber',
result: '0x0',
},
{
methodName: 'eth_subscribe',
result: '0x64',
},
],
},
},
async ({ provider, blockTracker }) => {
const receivedBlockNumbers: string[] = [];
await new Promise<void>((resolve) => {
blockTracker.on('_started', () => {
provider.emit('data', null, {
method: 'eth_subscription',
params: {
subscription: '0x1',
result: {
number: '0x1',
},
},
});
resolve();
});
blockTracker[methodToAddListener](
'latest',
(blockNumber: string) => {
receivedBlockNumbers.push(blockNumber);
},
);
});
expect(receivedBlockNumbers).toStrictEqual(['0x0']);
},
);
});
it('should not emit "latest" if the incoming message has no params', async () => {
recordCallsToSetTimeout();
await withSubscribeBlockTracker(
{
provider: {
stubs: [
{
methodName: 'eth_blockNumber',
result: '0x0',
},
{
methodName: 'eth_subscribe',
result: '0x64',
},
],
},
},
async ({ provider, blockTracker }) => {
const receivedBlockNumbers: string[] = [];
await new Promise<void>((resolve) => {
blockTracker.on('_started', () => {
provider.emit('data', null, {
method: 'eth_subscription',
});
resolve();
});
blockTracker[methodToAddListener](
'latest',
(blockNumber: string) => {
receivedBlockNumbers.push(blockNumber);
},
);
});
expect(receivedBlockNumbers).toStrictEqual(['0x0']);
},
);
});
it('should re-throw any error out of band that occurs in the listener', async () => {
await withSubscribeBlockTracker(async ({ blockTracker }) => {
const thrownError = new Error('boom');
const promiseForCaughtError = new Promise<unknown>((resolve) => {
recordCallsToSetTimeout({
numAutomaticCalls: 1,
interceptCallback: (callback, stopPassingThroughCalls) => {
return async () => {
try {
await callback();
} catch (error: unknown) {
resolve(error);
stopPassingThroughCalls();
}
};
},
});
});
blockTracker[methodToAddListener]('latest', () => {
throw thrownError;
});
const caughtError = await promiseForCaughtError;
expect(caughtError).toBe(thrownError);
});
});
it(`should emit the "error" event and should not emit "latest" if, while making the request for the latest block number, the provider throws an Error`, async () => {
recordCallsToSetTimeout({ numAutomaticCalls: 1 });
await withSubscribeBlockTracker(
{
provider: {
stubs: [
{
methodName: 'eth_blockNumber',
implementation: () => {
throw new Error('boom');
},
},
],
},
},
async ({ blockTracker }) => {
const promiseForCaughtError = new Promise<any>((resolve) => {
blockTracker[methodToAddListener]('error', resolve);
});
const promiseForLatestBlock = new Promise((resolve) => {
blockTracker[methodToAddListener]('latest', resolve);
});
const caughtError = await promiseForCaughtError;
expect(caughtError.message).toBe('boom');
await expect(promiseForLatestBlock).toNeverResolve();
},
);
});
it(`should emit the "error" event and should not emit "latest" if, while making the request for the latest block number, the provider throws a string`, async () => {
recordCallsToSetTimeout({ numAutomaticCalls: 1 });
await withSubscribeBlockTracker(
{
provider: {
stubs: [
{
methodName: 'eth_blockNumber',
implementation: () => {
throw 'boom';
},
},
],
},
},
async ({ blockTracker }) => {
const promiseForCaughtError = new Promise<any>((resolve) => {
blockTracker[methodToAddListener]('error', resolve);
});
const promiseForLatestBlock = new Promise((resolve) => {
blockTracker[methodToAddListener]('latest', resolve);
});
const caughtError = await promiseForCaughtError;
expect(caughtError).toBe('boom');
await expect(promiseForLatestBlock).toNeverResolve();
},
);
});
it(`should emit the "error" event and should not emit "latest" if, while making the request for the latest block number, the provider rejects with an error`, async () => {
recordCallsToSetTimeout({ numAutomaticCalls: 1 });
await withSubscribeBlockTracker(
{
provider: {
stubs: [
{
methodName: 'eth_blockNumber',
error: 'boom',
},
{
methodName: 'eth_subscribe',
result: '0x64',
},
],
},
},
async ({ blockTracker }) => {
const promiseForCaughtError = new Promise<any>((resolve) => {
blockTracker[methodToAddListener]('error', resolve);
});
const promiseForLatestBlock = new Promise((resolve) => {
blockTracker[methodToAddListener]('latest', resolve);
});
const caughtError = await promiseForCaughtError;
expect(caughtError.message).toBe('boom');
await expect(promiseForLatestBlock).toNeverResolve();
},
);
});
it(`should emit the "error" event and should not emit "latest" if, while making the request to subscribe, the provider throws an Error`, async () => {
recordCallsToSetTimeout({ numAutomaticCalls: 1 });
await withSubscribeBlockTracker(
{
provider: {
stubs: [
{
methodName: 'eth_subscribe',
implementation: () => {
throw new Error('boom');
},
},
],
},
},
async ({ blockTracker }) => {
const promiseForCaughtError = new Promise<any>((resolve) => {
blockTracker[methodToAddListener]('error', resolve);
});
const promiseForLatestBlock = new Promise((resolve) => {
blockTracker[methodToAddListener]('latest', resolve);
});
const caughtError = await promiseForCaughtError;
expect(caughtError.message).toBe('boom');
await expect(promiseForLatestBlock).toNeverResolve();
},
);
});
it(`should emit the "error" event and should not emit "latest" if, while making the request to subscribe, the provider throws a string`, async () => {
recordCallsToSetTimeout({ numAutomaticCalls: 1 });
await withSubscribeBlockTracker(
{
provider: {
stubs: [
{
methodName: 'eth_subscribe',
implementation: () => {
throw 'boom';
},
},
],
},
},
async ({ blockTracker }) => {
const promiseForCaughtError = new Promise<any>((resolve) => {
blockTracker[methodToAddListener]('error', resolve);
});
const promiseForLatestBlock = new Promise((resolve) => {
blockTracker[methodToAddListener]('latest', resolve);
});
const caughtError = await promiseForCaughtError;
expect(caughtError).toBe('boom');
await expect(promiseForLatestBlock).toNeverResolve();
},
);
});
it(`should emit the "error" event and should not emit "latest" if, while making the request to subscribe, the provider rejects with an error`, async () => {
recordCallsToSetTimeout({ numAutomaticCalls: 1 });
await withSubscribeBlockTracker(
{
provider: {
stubs: [
{
methodName: 'eth_subscribe',
error: 'boom',
},
],
},
},
async ({ blockTracker }) => {
const promiseForCaughtError = new Promise<any>((resolve) => {
blockTracker[methodToAddListener]('error', resolve);
});
const promiseForLatestBlock = new Promise((resolve) => {
blockTracker[methodToAddListener]('latest', resolve);
});
const caughtError = await promiseForCaughtError;
expect(caughtError.message).toBe('boom');
await expect(promiseForLatestBlock).toNeverResolve();
},
);
});
describe.each([
['not initialized with `usePastBlocks`', {}],
['initialized with `usePastBlocks: false`', { usePastBlocks: false }],
] as const)(
'after a block number is cached if the block tracker was %s',
(_description, blockTrackerOptions) => {
it('should emit "latest" if the published block number is greater than the current block number', async () => {
recordCallsToSetTimeout();
await withSubscribeBlockTracker(
{
provider: {
stubs: [
{
methodName: 'eth_blockNumber',
result: '0x0',
},