-
Notifications
You must be signed in to change notification settings - Fork 63
/
Copy pathTransactionsTracker.test.ts
1733 lines (1586 loc) · 67.9 KB
/
TransactionsTracker.test.ts
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
/* eslint-disable space-in-parens */
/* eslint-disable no-multi-spaces */
/* eslint-disable prettier/prettier */
import { Cardano, ChainHistoryProvider, TransactionsByAddressesArgs } from '@cardano-sdk/core';
import {
FailedTx,
OutgoingTx,
PAGE_SIZE,
TransactionFailure,
TxInFlight,
createAddressTransactionsProvider,
createTransactionsTracker,
newTransactions$
} from '../../src';
import {
InMemoryInFlightTransactionsStore,
InMemorySignedTransactionsStore,
InMemoryTransactionsStore,
WalletStores
} from '../../src/persistence';
import { NEVER, bufferCount, firstValueFrom, map, of } from 'rxjs';
import { RetryBackoffConfig } from 'backoff-rxjs';
import { WitnessedTx } from '@cardano-sdk/key-management';
import { createTestScheduler, mockProviders } from '@cardano-sdk/util-dev';
import { dummyCbor, toOutgoingTx, toSignedTx } from '../util';
import { dummyLogger } from 'ts-log';
import delay from 'delay';
const {
generateTxAlonzo,
mockChainHistoryProvider,
queryTransactionsResult,
queryTransactionsResult2,
filterAndPaginateTransactions
} = mockProviders;
const updateTransactionsBlockNo = (transactions: Cardano.HydratedTx[], blockNo = Cardano.BlockNo(10_050)) =>
transactions.map((tx, index) => ({
...tx,
blockHeader: { ...tx.blockHeader, blockNo, slot: Cardano.Slot(blockNo * 100) },
index
}));
const generateRandomLetters = (length: number) => {
let result = '';
const characters = '0123456789abcdef';
const charactersLength = characters.length;
for (let i = 0; i < length; ++i) {
const randomIndex = Math.floor(Math.random() * charactersLength);
result += characters.charAt(randomIndex);
}
return result;
};
const updateTransactionIds = (transactions: Cardano.HydratedTx[]) =>
transactions.map((tx) => ({
...tx,
id: Cardano.TransactionId(`${generateRandomLetters(64)}`)
}));
describe('TransactionsTracker', () => {
const logger = dummyLogger;
const historicalTransactionsFetchLimit = 3;
describe('newTransactions$', () => {
it('considers transactions from 1st emission as old and emits only new transactions', () => {
createTestScheduler().run(({ hot, expectObservable }) => {
const history$ = hot('a-b', {
a: [{ id: Cardano.TransactionId('0000000000000000000000000000000000000000000000000000000000000000') }],
b: [
{ id: Cardano.TransactionId('0000000000000000000000000000000000000000000000000000000000000000') },
{ id: Cardano.TransactionId('0000000000000000000000000000000000000000000000000000000000000001') }
]
});
expectObservable(newTransactions$(history$)).toBe('--b', {
b: { id: Cardano.TransactionId('0000000000000000000000000000000000000000000000000000000000000001') }
});
});
});
});
describe('createAddressTransactionsProvider', () => {
let store: InMemoryTransactionsStore;
let chainHistoryProvider: mockProviders.ChainHistoryProviderStub;
const tipBlockHeight$ = of(Cardano.BlockNo(300));
const retryBackoffConfig = { initialInterval: 1 }; // not relevant
const addresses = [queryTransactionsResult.pageResults[0].body.inputs[0].address!];
beforeEach(() => {
chainHistoryProvider = mockChainHistoryProvider();
store = new InMemoryTransactionsStore();
store.setAll = jest.fn().mockImplementation(store.setAll.bind(store));
});
it('emits empty array if store is empty and ChainHistoryProvider does not return any transactions', async () => {
chainHistoryProvider.transactionsByAddresses = jest
.fn()
.mockImplementation(() => delay(50).then(() => ({ pageResults: [], totalResultCount: 0 })));
const provider$ = createAddressTransactionsProvider({
addresses$: of(addresses),
chainHistoryProvider,
historicalTransactionsFetchLimit,
logger,
retryBackoffConfig,
store,
tipBlockHeight$
}).transactionsSource$;
expect(await firstValueFrom(provider$)).toEqual([]);
expect(store.setAll).toBeCalledTimes(0);
});
it('if store is empty, stores and emits last {historicalTransactionsFetchLimit} transactions resolved by ChainHistoryProvider', async () => {
const lowerHistoricalTransactionsFetchLimit = 2;
chainHistoryProvider.transactionsByAddresses = jest.fn().mockImplementation(() =>
delay(50).then(() => ({
...queryTransactionsResult2,
pageResults: [...queryTransactionsResult2.pageResults]
}))
);
const provider$ = createAddressTransactionsProvider({
addresses$: of(addresses),
chainHistoryProvider,
historicalTransactionsFetchLimit: lowerHistoricalTransactionsFetchLimit,
logger,
retryBackoffConfig,
store,
tipBlockHeight$
}).transactionsSource$;
const lastHistoricalTransactionsFetchLimitTransactions = queryTransactionsResult2.pageResults.slice(
-1 * lowerHistoricalTransactionsFetchLimit
);
expect(await firstValueFrom(provider$)).toEqual(lastHistoricalTransactionsFetchLimitTransactions);
expect(store.setAll).toBeCalledTimes(1);
expect(store.setAll).toBeCalledWith(lastHistoricalTransactionsFetchLimitTransactions);
});
it('emits configured number of latest historical transactions', async () => {
const totalTxsCount = PAGE_SIZE + 5;
const allTransactions = generateTxAlonzo(totalTxsCount);
chainHistoryProvider.transactionsByAddresses = jest
.fn()
.mockImplementation((args: TransactionsByAddressesArgs) =>
filterAndPaginateTransactions(allTransactions, args)
);
const provider$ = createAddressTransactionsProvider({
addresses$: of(addresses),
chainHistoryProvider,
historicalTransactionsFetchLimit,
logger,
retryBackoffConfig,
store,
tipBlockHeight$
}).transactionsSource$;
const transactionsHistory = await firstValueFrom(provider$);
expect(transactionsHistory.length).toEqual(historicalTransactionsFetchLimit);
const latestHistoricalTransactions = allTransactions.slice(
allTransactions.length - historicalTransactionsFetchLimit
);
expect(transactionsHistory).toEqual(latestHistoricalTransactions);
expect(store.setAll).toBeCalledWith(latestHistoricalTransactions);
});
it('emits existing transactions from store, then transactions resolved by ChainHistoryProvider', async () => {
await firstValueFrom(store.setAll([queryTransactionsResult.pageResults[0]]));
const provider$ = createAddressTransactionsProvider({
addresses$: of(addresses),
chainHistoryProvider,
historicalTransactionsFetchLimit,
logger,
retryBackoffConfig,
store,
tipBlockHeight$
}).transactionsSource$;
expect(await firstValueFrom(provider$.pipe(bufferCount(2)))).toEqual([
[queryTransactionsResult.pageResults[0]],
[...queryTransactionsResult.pageResults]
]);
expect(store.setAll).toBeCalledTimes(2);
expect(chainHistoryProvider.transactionsByAddresses).toBeCalledTimes(1);
expect(chainHistoryProvider.transactionsByAddresses).toBeCalledWith({
addresses,
blockRange: { lowerBound: queryTransactionsResult.pageResults[0].blockHeader.blockNo },
pagination: { limit: 25, startAt: 0 }
});
});
it('emits shortened tx history when tx was rolled back, but no new tx was added', async () => {
const [txId1, txId2] = queryTransactionsResult.pageResults;
// Two stored transactions: [1, 2]
await firstValueFrom(store.setAll([txId1, txId2]));
// ChainHistory is shorter by 1 tx: [1]
chainHistoryProvider.transactionsByAddresses = jest
.fn()
// the mismatch will pop the single transaction found in the stored transactions
.mockImplementationOnce(() => delay(50).then(() => ({ pageResults: [], totalResultCount: 0 })))
// intersection is found, chain is shortened
.mockImplementationOnce(() => delay(50).then(() => ({ pageResults: [txId1], totalResultCount: 1 })));
const { transactionsSource$: provider$, rollback$ } = createAddressTransactionsProvider({
addresses$: of(addresses),
chainHistoryProvider,
historicalTransactionsFetchLimit,
logger,
retryBackoffConfig,
store,
tipBlockHeight$
});
const rollbacks: Cardano.HydratedTx[] = [];
rollback$.subscribe((tx) => rollbacks.push(tx));
expect(await firstValueFrom(provider$.pipe(bufferCount(2)))).toEqual([
[txId1, txId2], // from store
[txId1] // shortened chain
]);
expect(rollbacks).toEqual([txId2]);
expect(store.setAll).toBeCalledTimes(2);
expect(store.setAll).nthCalledWith(2, [txId1]);
expect(chainHistoryProvider.transactionsByAddresses).toBeCalledTimes(2);
});
it('rolls back one transaction, then finds intersection', async () => {
const [txId1, txId2] = queryTransactionsResult.pageResults;
const [txId3] = queryTransactionsResult2.pageResults.slice(-1);
// Two stored transactions: [1, 2]
await firstValueFrom(store.setAll([txId1, txId2]));
// ChainHistory has one common and one different: [1, 3]
chainHistoryProvider.transactionsByAddresses = jest
.fn()
// the mismatch will pop the single transaction found in the stored transactions
.mockImplementationOnce(() => delay(50).then(() => ({ pageResults: [txId3], totalResultCount: 1 })))
// intersection is found, and stored history is populated with the new transaction
.mockImplementationOnce(() => delay(50).then(() => ({ pageResults: [txId1, txId3], totalResultCount: 2 })));
const { transactionsSource$: provider$, rollback$ } = createAddressTransactionsProvider({
addresses$: of(addresses),
chainHistoryProvider,
historicalTransactionsFetchLimit,
logger,
retryBackoffConfig,
store,
tipBlockHeight$
});
const rollbacks: Cardano.HydratedTx[] = [];
rollback$.subscribe((tx) => rollbacks.push(tx));
expect(await firstValueFrom(provider$.pipe(bufferCount(2)))).toEqual([
[txId1, txId2], // from store
[txId1, txId3] // store + chain history
]);
expect(rollbacks).toEqual([txId2]);
expect(store.setAll).toBeCalledTimes(2);
expect(chainHistoryProvider.transactionsByAddresses).toBeCalledTimes(2);
expect(chainHistoryProvider.transactionsByAddresses).nthCalledWith(1, {
addresses,
blockRange: { lowerBound: txId2.blockHeader.blockNo },
pagination: { limit: 25, startAt: 0 }
});
expect(chainHistoryProvider.transactionsByAddresses).nthCalledWith(2, {
addresses,
blockRange: { lowerBound: txId1.blockHeader.blockNo },
pagination: { limit: 25, startAt: 0 }
});
});
it('queries ChainHistoryProvider again with blockRange lower bound from a previous transaction on rollback', async () => {
await firstValueFrom(store.setAll(queryTransactionsResult.pageResults));
chainHistoryProvider.transactionsByAddresses = jest
.fn()
.mockImplementationOnce(() => delay(50).then(() => ({ pageResults: [], totalResultCount: 0 })))
.mockImplementationOnce(() => delay(50).then(() => ({ pageResults: [], totalResultCount: 0 })))
.mockImplementationOnce(() =>
delay(50).then(() => ({ pageResults: [queryTransactionsResult.pageResults[0]], totalResultCount: 1 }))
);
const { transactionsSource$: provider$, rollback$ } = createAddressTransactionsProvider({
addresses$: of(addresses),
chainHistoryProvider,
historicalTransactionsFetchLimit,
logger,
retryBackoffConfig,
store,
tipBlockHeight$
});
const rollbacks: Cardano.HydratedTx[] = [];
rollback$.subscribe((tx) => rollbacks.push(tx));
expect(await firstValueFrom(provider$.pipe(bufferCount(2)))).toEqual([
queryTransactionsResult.pageResults, // from store
[queryTransactionsResult.pageResults[0]] // store + chain history
]);
expect(rollbacks).toEqual([queryTransactionsResult.pageResults[1], queryTransactionsResult.pageResults[0]]);
expect(store.setAll).toBeCalledTimes(2);
expect(chainHistoryProvider.transactionsByAddresses).toBeCalledTimes(3);
expect(chainHistoryProvider.transactionsByAddresses).nthCalledWith(1, {
addresses,
blockRange: { lowerBound: queryTransactionsResult.pageResults[1].blockHeader.blockNo },
pagination: { limit: 25, startAt: 0 }
});
expect(chainHistoryProvider.transactionsByAddresses).nthCalledWith(2, {
addresses,
blockRange: { lowerBound: queryTransactionsResult.pageResults[0].blockHeader.blockNo },
pagination: { limit: 25, startAt: 0 }
});
expect(chainHistoryProvider.transactionsByAddresses).nthCalledWith(3, {
addresses,
pagination: { limit: historicalTransactionsFetchLimit, order: 'desc', startAt: 0 }
});
});
describe('distinct transaction sets in latest stored block vs new blocks', () => {
// Notation: <a b c> is a block with 3 transactions
// [a b c] is an array of 3 transactions
// latestStoredBlock <1 2 3>
// newBlock <4 5 6>
// rollback$ [3 2 1] - transactions need to be retried
// store&emit [4 5 6]
it('rolls back all transactions on completely disjoin sets', async () => {
const [txId1, txId2, txId3] = updateTransactionsBlockNo(queryTransactionsResult2.pageResults);
const [txId4, txId5, txId6] = updateTransactionIds([txId1, txId2, txId3]);
await firstValueFrom(store.setAll([txId1, txId2, txId3]));
chainHistoryProvider.transactionsByAddresses = jest.fn().mockImplementation(() => ({
pageResults: [txId4, txId5, txId6],
totalResultCount: 3
}));
const { transactionsSource$: provider$, rollback$ } = createAddressTransactionsProvider({
addresses$: of(addresses),
chainHistoryProvider,
historicalTransactionsFetchLimit,
logger,
retryBackoffConfig,
store,
tipBlockHeight$
});
const rollbacks: Cardano.HydratedTx[] = [];
rollback$.subscribe((tx) => rollbacks.push(tx));
expect(await firstValueFrom(provider$.pipe(bufferCount(2)))).toEqual([
[txId1, txId2, txId3], // from store
[txId4, txId5, txId6] // chain history
]);
expect(rollbacks).toEqual([txId3, txId2, txId1]);
expect(store.setAll).toBeCalledTimes(2);
});
// latestStoredBlock <1 2>
// newBlock <1 2 3>
// rollback$ none
// store&emit [1,2,3]
it('stores new transactions when new block is superset', async () => {
const [txId1, txId2] = updateTransactionsBlockNo(queryTransactionsResult2.pageResults, Cardano.BlockNo(10_050));
const [txId1OtherBlock, txId2OtherBlock, txId3] = updateTransactionsBlockNo(
queryTransactionsResult2.pageResults,
Cardano.BlockNo(10_051)
);
txId1.blockHeader.slot = Cardano.Slot(10_050);
txId2.blockHeader.slot = Cardano.Slot(10_051);
txId3.blockHeader.slot = Cardano.Slot(10_052);
txId1OtherBlock.blockHeader.slot = Cardano.Slot(10_050);
txId2OtherBlock.blockHeader.slot = Cardano.Slot(10_051);
await firstValueFrom(store.setAll([txId1, txId2]));
chainHistoryProvider.transactionsByAddresses = jest.fn().mockImplementation(() => ({
pageResults: [txId1OtherBlock, txId2OtherBlock, txId3],
totalResultCount: 3
}));
const { transactionsSource$: provider$, rollback$ } = createAddressTransactionsProvider({
addresses$: of(addresses),
chainHistoryProvider,
historicalTransactionsFetchLimit,
logger,
retryBackoffConfig,
store,
tipBlockHeight$
});
const rollbacks: Cardano.HydratedTx[] = [];
rollback$.subscribe((tx) => rollbacks.push(tx));
expect(await firstValueFrom(provider$.pipe(bufferCount(2)))).toEqual([
[txId1, txId2], // from store
[txId1, txId2, txId3] // chain history
]);
expect(rollbacks.length).toBe(0);
expect(store.setAll).toBeCalledTimes(2);
expect(store.setAll).nthCalledWith(2, [txId1, txId2, txId3]);
});
it('ignores duplicate transactions', async () => {
// eslint-disable-next-line max-len
const [txId1, txId2, txId3] = updateTransactionsBlockNo(
queryTransactionsResult2.pageResults,
Cardano.BlockNo(10_050)
);
txId1.blockHeader.slot = Cardano.Slot(10_050);
txId2.blockHeader.slot = Cardano.Slot(10_051);
txId3.blockHeader.slot = Cardano.Slot(10_052);
txId1.id = Cardano.TransactionId(generateRandomLetters(64));
txId2.id = Cardano.TransactionId(generateRandomLetters(64));
txId3.id = Cardano.TransactionId(generateRandomLetters(64));
await firstValueFrom(store.setAll([txId1, txId1, txId2]));
chainHistoryProvider.transactionsByAddresses = jest.fn().mockImplementation(() => ({
pageResults: [txId1, txId2, txId2, txId3, txId3, txId3],
totalResultCount: 3
}));
const { transactionsSource$: provider$, rollback$ } = createAddressTransactionsProvider({
addresses$: of(addresses),
chainHistoryProvider,
historicalTransactionsFetchLimit,
logger,
retryBackoffConfig,
store,
tipBlockHeight$
});
const rollbacks: Cardano.HydratedTx[] = [];
rollback$.subscribe((tx) => rollbacks.push(tx));
expect(await firstValueFrom(provider$.pipe(bufferCount(2)))).toEqual([
[txId1, txId1, txId2], // from store
[txId1, txId2, txId3] // chain history (fixes stored duplicates)
]);
expect(rollbacks.length).toBe(0);
expect(store.setAll).toBeCalledTimes(2);
expect(store.setAll).nthCalledWith(2, [txId1, txId2, txId3]);
});
// latestStoredBlock <1 2 3>
// newBlock <1 2>
// rollback$ 3
// store&emit [1,2]
it('rollback some transactions when new block is subset', async () => {
const [txId1, txId2, txId3] = updateTransactionsBlockNo(
queryTransactionsResult2.pageResults,
Cardano.BlockNo(10_050)
);
txId1.blockHeader.slot = Cardano.Slot(10_050);
txId2.blockHeader.slot = Cardano.Slot(10_051);
txId3.blockHeader.slot = Cardano.Slot(10_052);
const [txId1OtherBlock, txId2OtherBlock] = updateTransactionsBlockNo([txId1, txId2], Cardano.BlockNo(10_051));
txId1OtherBlock.blockHeader.slot = Cardano.Slot(10_051);
txId2OtherBlock.blockHeader.slot = Cardano.Slot(10_052);
await firstValueFrom(store.setAll([txId1, txId2, txId3]));
chainHistoryProvider.transactionsByAddresses = jest.fn().mockImplementation(() => ({
pageResults: [txId1OtherBlock, txId2OtherBlock],
totalResultCount: 2
}));
const { transactionsSource$: provider$, rollback$ } = createAddressTransactionsProvider({
addresses$: of(addresses),
chainHistoryProvider,
historicalTransactionsFetchLimit,
logger,
retryBackoffConfig,
store,
tipBlockHeight$
});
const rollbacks: Cardano.HydratedTx[] = [];
rollback$.subscribe((tx) => rollbacks.push(tx));
expect(await firstValueFrom(provider$.pipe(bufferCount(2)))).toEqual([
[txId1, txId2, txId3], // from store
[txId1OtherBlock, txId2OtherBlock] // chain history
]);
expect(rollbacks).toEqual([txId3]);
expect(store.setAll).toBeCalledTimes(2);
expect(store.setAll).nthCalledWith(2, [txId1OtherBlock, txId2OtherBlock]);
});
// latestStoredBlock <1 2>
// newBlocks <3> <1> <2>
// rollback$ none - transactions are on chain
// store&emit [3 1 2] - re-emit all as they might have a different blockNo
// Noop - produces the same result in the tx history
it('detects when latest block transactions are found in among new blocks', async () => {
const [txId1, txId2, txId3] = updateTransactionsBlockNo(
queryTransactionsResult2.pageResults,
Cardano.BlockNo(10_000)
);
const [txId3OtherBlock] = updateTransactionsBlockNo([txId3], Cardano.BlockNo(10_100));
const [txId1OtherBlock] = updateTransactionsBlockNo([txId1], Cardano.BlockNo(10_200));
const [txId2OtherBlock] = updateTransactionsBlockNo([txId2], Cardano.BlockNo(10_300));
await firstValueFrom(store.setAll([txId1, txId2, txId3]));
chainHistoryProvider.transactionsByAddresses = jest
.fn()
.mockImplementationOnce(() => ({
// asc
pageResults: [txId3OtherBlock, txId1OtherBlock, txId2OtherBlock],
totalResultCount: 3
}))
// detects a rollback and reverts all local transactions (all in the same block)
// fetches from scratch - provider is called with 'desc' order
.mockImplementationOnce(() => ({
pageResults: [txId2OtherBlock, txId1OtherBlock, txId3OtherBlock],
totalResultCount: 3
}));
const { transactionsSource$: provider$, rollback$ } = createAddressTransactionsProvider({
addresses$: of(addresses),
chainHistoryProvider,
historicalTransactionsFetchLimit,
logger,
retryBackoffConfig,
store,
tipBlockHeight$
});
const rollbacks: Cardano.HydratedTx[] = [];
rollback$.subscribe((tx) => rollbacks.push(tx));
expect(await firstValueFrom(provider$.pipe(bufferCount(2)))).toEqual([
[txId1, txId2, txId3], // from store
[txId3OtherBlock, txId1OtherBlock, txId2OtherBlock] // chain history
]);
expect(rollbacks.length).toBe(0);
expect(store.setAll).toBeCalledTimes(2);
expect(store.setAll).nthCalledWith(2, [txId3OtherBlock, txId1OtherBlock, txId2OtherBlock]);
});
// latestStoredBlock <1 2>
// newBlock <3 2 1>
// rollback$ none - transactions are on chain
// store&emit [3 2 1]
it('reversed order transactions plus new tx are re-emitted, but not considered rollbacks', async () => {
const [txId1, txId2, txId3] = updateTransactionsBlockNo(
queryTransactionsResult2.pageResults,
Cardano.BlockNo(10_000)
);
const [txId1OtherBlock, txId2OtherBlock, txId3OtherBlock] = updateTransactionsBlockNo(
[txId1, txId2, txId3],
Cardano.BlockNo(10_100)
);
await firstValueFrom(store.setAll([txId1, txId2]));
chainHistoryProvider.transactionsByAddresses = jest
.fn()
.mockImplementation((args: TransactionsByAddressesArgs) =>
filterAndPaginateTransactions([txId1OtherBlock, txId2OtherBlock, txId3OtherBlock], args)
);
const { transactionsSource$: provider$, rollback$ } = createAddressTransactionsProvider({
addresses$: of(addresses),
chainHistoryProvider,
historicalTransactionsFetchLimit,
logger,
retryBackoffConfig,
store,
tipBlockHeight$
});
const rollbacks: Cardano.HydratedTx[] = [];
rollback$.subscribe((tx) => rollbacks.push(tx));
expect(await firstValueFrom(provider$.pipe(bufferCount(2)))).toEqual([
[txId1, txId2], // from store
[txId1OtherBlock, txId2OtherBlock, txId3OtherBlock] // chain history
]);
expect(rollbacks.length).toBe(0);
expect(store.setAll).toBeCalledTimes(2);
expect(store.setAll).nthCalledWith(2, [txId1OtherBlock, txId2OtherBlock, txId3OtherBlock]);
});
it('process transactions in the right order (sorted by slot ASC) regardless of transaction order in the backend response', async () => {
const [txId1, txId2, txId3] = updateTransactionsBlockNo(
queryTransactionsResult2.pageResults,
Cardano.BlockNo(10_000)
);
txId1.blockHeader.slot = Cardano.Slot(10_000);
txId2.blockHeader.slot = Cardano.Slot(10_001);
txId3.blockHeader.slot = Cardano.Slot(10_002);
await firstValueFrom(store.setAll([txId1, txId2, txId3]));
chainHistoryProvider.transactionsByAddresses = jest.fn().mockImplementation(() => ({
pageResults: [txId3, txId2, txId1],
totalResultCount: 3
}));
const { transactionsSource$: provider$, rollback$ } = createAddressTransactionsProvider({
addresses$: of(addresses),
chainHistoryProvider,
historicalTransactionsFetchLimit,
logger,
retryBackoffConfig,
store,
tipBlockHeight$
});
const rollbacks: Cardano.HydratedTx[] = [];
rollback$.subscribe((tx) => rollbacks.push(tx));
expect(await firstValueFrom(provider$.pipe(bufferCount(1)))).toEqual([
[txId1, txId2, txId3] // chain history
]);
expect(rollbacks.length).toBe(0);
expect(store.setAll).toBeCalledTimes(1);
expect(store.setAll).nthCalledWith(1, [txId1, txId2, txId3]);
});
// latestStoredBlock <1 2 3>
// newBlock <1 2 3>
// rollback$ none
// store&emit none
it('does not emit when newBlock transactions are identical to stored transactions', async () => {
const [txId1, txId2, txId3] = updateTransactionsBlockNo(
queryTransactionsResult2.pageResults,
Cardano.BlockNo(10_000)
);
await firstValueFrom(store.setAll([txId1, txId2, txId3]));
chainHistoryProvider.transactionsByAddresses = jest.fn().mockImplementation(() => ({
pageResults: [txId1, txId2, txId3],
totalResultCount: 3
}));
const { transactionsSource$: provider$, rollback$ } = createAddressTransactionsProvider({
addresses$: of(addresses),
chainHistoryProvider,
historicalTransactionsFetchLimit,
logger,
retryBackoffConfig,
store,
tipBlockHeight$
});
const rollbacks: Cardano.HydratedTx[] = [];
rollback$.subscribe((tx) => rollbacks.push(tx));
expect(await firstValueFrom(provider$.pipe(bufferCount(1)))).toEqual([
[txId1, txId2, txId3] // from store
]);
expect(rollbacks.length).toBe(0);
expect(store.setAll).toBeCalledTimes(1);
expect(store.setAll).nthCalledWith(1, [txId1, txId2, txId3]);
});
});
});
describe('createTransactionsTracker', () => {
// these variables are not relevant for tests, because
// they're using mock transactionsSource$
let retryBackoffConfig: RetryBackoffConfig;
let chainHistoryProvider: ChainHistoryProvider;
let transactionsStore: WalletStores['transactions'];
let inFlightTransactionsStore: WalletStores['inFlightTransactions'];
let signedTransactionsStore: WalletStores['signedTransactions'];
const myAddress = queryTransactionsResult.pageResults[0].body.inputs[0].address;
const addresses$ = of([myAddress!]);
beforeEach(() => {
transactionsStore = new InMemoryTransactionsStore();
inFlightTransactionsStore = new InMemoryInFlightTransactionsStore();
signedTransactionsStore = new InMemorySignedTransactionsStore();
});
it('observable properties behave correctly on successful transaction', async () => {
const preExistingTx = queryTransactionsResult2.pageResults[2];
const submittedTx = queryTransactionsResult.pageResults[0];
const outgoingTx = toOutgoingTx(submittedTx);
const incomingTx = queryTransactionsResult.pageResults[1];
createTestScheduler().run(({ hot, expectObservable }) => {
const failedToSubmit$ = hot<FailedTx>('----|');
const tip$ = hot<Cardano.Tip>('----|');
const submitting$ = hot('-a--|', { a: outgoingTx });
const pending$ = hot('--a-|', { a: outgoingTx });
const signed$ = hot<WitnessedTx>('----|');
const transactionsSource$ = hot<Cardano.HydratedTx[]>('a-bc|', {
a: [preExistingTx],
b: [incomingTx],
c: [incomingTx, submittedTx]
});
const onChainSubscription = '--^--'; // regression: subscribing after submitting$ emits
const transactionsTracker = createTransactionsTracker(
{
addresses$,
chainHistoryProvider,
historicalTransactionsFetchLimit,
inFlightTransactionsStore,
logger,
newTransactions: {
failedToSubmit$,
pending$,
signed$,
submitting$
},
retryBackoffConfig,
signedTransactionsStore,
tip$,
transactionsHistoryStore: transactionsStore
},
{
rollback$: NEVER,
transactionsSource$
}
);
expectObservable(transactionsTracker.outgoing.submitting$).toBe('-a--|', { a: outgoingTx });
expectObservable(transactionsTracker.outgoing.pending$).toBe('--a-|', { a: outgoingTx });
expectObservable(transactionsTracker.outgoing.onChain$, onChainSubscription).toBe('---a|', {
a: { slot: submittedTx.blockHeader.slot, ...outgoingTx }
});
expectObservable(transactionsTracker.outgoing.inFlight$).toBe('ab-c|', {
a: [],
b: [outgoingTx],
c: []
});
expectObservable(transactionsTracker.outgoing.failed$).toBe('----|');
expectObservable(transactionsTracker.history$).toBe('a-bc|', {
a: [preExistingTx],
b: [incomingTx],
c: [submittedTx, incomingTx]
});
expectObservable(transactionsTracker.new$).toBe('--bc|', {
b: incomingTx,
c: submittedTx
});
});
});
it('emits at all relevant observable properties on timed out transaction', async () => {
const tx = queryTransactionsResult.pageResults[0];
const outgoingTx = toOutgoingTx(tx);
createTestScheduler().run(({ hot, expectObservable }) => {
const tip1 = { slot: Cardano.Slot(tx.body.validityInterval!.invalidHereafter! - 1) } as Cardano.Tip;
const tip2 = { slot: Cardano.Slot(tx.body.validityInterval!.invalidHereafter! + 1) } as Cardano.Tip;
const failedToSubmit$ = hot<FailedTx>('-----|');
const tip$ = hot<Cardano.Tip>('--ab-|', { a: tip1, b: tip2 });
const submitting$ = hot('-a---|', { a: outgoingTx });
const pending$ = hot('--a--|', { a: outgoingTx });
const signed$ = hot<WitnessedTx>('----|', {});
const transactionsSource$ = hot<Cardano.HydratedTx[]>('-----|');
const failedSubscription = '--^---'; // regression: subscribing after submitting$ emits
const transactionsTracker = createTransactionsTracker(
{
addresses$,
chainHistoryProvider,
historicalTransactionsFetchLimit,
inFlightTransactionsStore,
logger,
newTransactions: {
failedToSubmit$,
pending$,
signed$,
submitting$
},
retryBackoffConfig,
signedTransactionsStore,
tip$,
transactionsHistoryStore: transactionsStore
},
{
rollback$: NEVER,
transactionsSource$
}
);
expectObservable(transactionsTracker.outgoing.submitting$).toBe('-a---|', { a: outgoingTx });
expectObservable(transactionsTracker.outgoing.pending$).toBe('--a--|', { a: outgoingTx });
expectObservable(transactionsTracker.outgoing.inFlight$).toBe('abcd-|', {
a: [],
b: [outgoingTx],
c: [{ submittedAt: tip1.slot, ...outgoingTx }],
d: []
});
expectObservable(transactionsTracker.outgoing.onChain$).toBe('-----|');
expectObservable(transactionsTracker.outgoing.failed$, failedSubscription).toBe('---a-|', {
a: { reason: TransactionFailure.Timeout, ...outgoingTx }
});
});
});
it(`resubmitting (emitting at pending$) a tx that was already on-chain or failed does not re-add the tx to inFlight$;
rollback of a transaction of which an output was used in a pending transaction interprets transaction as failed`, async () => {
const tx = queryTransactionsResult.pageResults[0];
const outgoingTx = toOutgoingTx(tx);
createTestScheduler().run(({ cold, hot, expectObservable }) => {
const tip1 = { slot: Cardano.Slot(tx.body.validityInterval!.invalidHereafter! - 1) } as Cardano.Tip;
const failedToSubmit$ = hot<FailedTx>('-----|');
const tip$ = cold('a', { a: tip1 });
const submitting$ = hot('-a---|', { a: outgoingTx });
const pending$ = hot('--a-a|', { a: outgoingTx }); // second emission must not re-add it to inFlight$
const rollback$ = hot('---a-|', { a: { id: tx.body.inputs[0].txId } as Cardano.HydratedTx });
const signed$ = hot<WitnessedTx>('----|', {});
const transactionsSource$ = hot<Cardano.HydratedTx[]>('-----|');
const transactionsTracker = createTransactionsTracker(
{
addresses$,
chainHistoryProvider,
historicalTransactionsFetchLimit,
inFlightTransactionsStore,
logger,
newTransactions: {
failedToSubmit$,
pending$,
signed$,
submitting$
},
retryBackoffConfig,
signedTransactionsStore,
tip$,
transactionsHistoryStore: transactionsStore
},
{
rollback$,
transactionsSource$
}
);
expectObservable(transactionsTracker.outgoing.submitting$).toBe('-a---|', { a: outgoingTx });
expectObservable(transactionsTracker.outgoing.pending$).toBe('--a-a|', { a: outgoingTx });
expectObservable(transactionsTracker.outgoing.failed$.pipe(map((err) => err.reason))).toBe('---a-|', {
a: TransactionFailure.InvalidTransaction
});
expectObservable(transactionsTracker.outgoing.inFlight$).toBe('abcd-|', {
a: [],
b: [outgoingTx],
c: [{ submittedAt: tip1.slot, ...outgoingTx }],
d: []
});
expectObservable(transactionsTracker.outgoing.onChain$).toBe('-----|');
});
});
it('emits phase 2 validation on-chain transactions as failed$', async () => {
const outgoingTx = toOutgoingTx(queryTransactionsResult.pageResults[0]);
const phase2FailedTx: Cardano.HydratedTx = {
...queryTransactionsResult.pageResults[0],
inputSource: Cardano.InputSource.collaterals
};
createTestScheduler().run(({ cold, hot, expectObservable }) => {
const tip$ = hot<Cardano.Tip>('-----|');
const submitting$ = cold('-a---|', { a: outgoingTx });
const pending$ = cold('--a--|', { a: outgoingTx });
const transactionsSource$ = cold<Cardano.HydratedTx[]>('a--b-|', { a: [], b: [phase2FailedTx] });
const failedToSubmit$ = hot<FailedTx>('-----|');
const signed$ = hot<WitnessedTx>('----|', {});
const transactionsTracker = createTransactionsTracker(
{
addresses$,
chainHistoryProvider,
historicalTransactionsFetchLimit,
inFlightTransactionsStore,
logger,
newTransactions: {
failedToSubmit$,
pending$,
signed$,
submitting$
},
retryBackoffConfig,
signedTransactionsStore,
tip$,
transactionsHistoryStore: transactionsStore
},
{
rollback$: NEVER,
transactionsSource$
}
);
expectObservable(transactionsTracker.outgoing.submitting$).toBe('-a---|', { a: outgoingTx });
expectObservable(transactionsTracker.outgoing.pending$).toBe('--a--|', { a: outgoingTx });
expectObservable(transactionsTracker.outgoing.inFlight$).toBe('ab-c-|', { a: [], b: [outgoingTx], c: [] });
expectObservable(transactionsTracker.outgoing.onChain$).toBe('-----|');
expectObservable(transactionsTracker.outgoing.failed$).toBe('---a-|', {
a: { reason: TransactionFailure.Phase2Validation, ...outgoingTx }
});
});
});
// TODO: Will be useful for LW-12394 investigation
it('emits timeout for transactions outside of the validity interval as failed$', async () => {
const outgoingTx = toOutgoingTx(queryTransactionsResult.pageResults[0]);
createTestScheduler().run(({ cold, hot, expectObservable }) => {
const tip$ = hot<Cardano.Tip>('-a---|', {
a: {
blockNo: Cardano.BlockNo(1),
hash: '' as Cardano.BlockId,
slot: Cardano.Slot(outgoingTx.body.validityInterval!.invalidHereafter! * 2)
}
});
const failedTx = { ...outgoingTx, id: 'x' as Cardano.TransactionId };
const submitting$ = cold('-a---|', { a: failedTx });
const pending$ = cold('-----|', { a: failedTx });
const transactionsSource$ = cold<Cardano.HydratedTx[]>('a--b-|', { a: [], b: [queryTransactionsResult.pageResults[0]] });
const failedToSubmit$ = hot<FailedTx>('-----|', { a: { ...failedTx, reason: TransactionFailure.FailedToSubmit } });
const signed$ = hot<WitnessedTx>('----|', {});
const transactionsTracker = createTransactionsTracker(
{
addresses$,
chainHistoryProvider,
historicalTransactionsFetchLimit,
inFlightTransactionsStore,
logger,
newTransactions: {
failedToSubmit$,
pending$,
signed$,
submitting$
},
retryBackoffConfig,
signedTransactionsStore,
tip$,
transactionsHistoryStore: transactionsStore
},
{
rollback$: NEVER,
transactionsSource$
}
);
expectObservable(transactionsTracker.outgoing.submitting$).toBe('-a---|', { a: failedTx });
expectObservable(transactionsTracker.outgoing.pending$).toBe('-----|');
expectObservable(transactionsTracker.outgoing.inFlight$).toBe('a(bc)|', { a: [], b: [failedTx], c: [] });
expectObservable(transactionsTracker.outgoing.onChain$).toBe('-----|', { a: [failedTx] });
expectObservable(transactionsTracker.outgoing.failed$).toBe('-a---|', {
a: { reason: TransactionFailure.Timeout, ...failedTx }
});
});
});
it('emits at all relevant observable properties on transaction that failed to submit and merges reemit failures', async () => {
const outgoingTx = toOutgoingTx(queryTransactionsResult.pageResults[0]);
const outgoingTxReemit = toOutgoingTx(queryTransactionsResult.pageResults[1]);
createTestScheduler().run(({ cold, hot, expectObservable }) => {
const tip$ = hot<Cardano.Tip>('----|');
const submitting$ = cold('-a--|', { a: outgoingTx });
const pending$ = cold('--a-|', { a: outgoingTx });
const transactionsSource$ = cold<Cardano.HydratedTx[]>('----|');
const failedToSubmit$ = hot<FailedTx>('---a|', {
a: { reason: TransactionFailure.FailedToSubmit, ...outgoingTx }
});
const failedFromReemitter$ = cold<FailedTx>('-a|', {
a: { reason: TransactionFailure.Timeout, ...outgoingTxReemit }
});
const signed$ = hot<WitnessedTx>('----|', {});
const transactionsTracker = createTransactionsTracker(
{
addresses$,
chainHistoryProvider,
failedFromReemitter$,
historicalTransactionsFetchLimit,
inFlightTransactionsStore,
logger,
newTransactions: {
failedToSubmit$,
pending$,
signed$,
submitting$
},
retryBackoffConfig,
signedTransactionsStore,
tip$,
transactionsHistoryStore: transactionsStore
},
{
rollback$: NEVER,
transactionsSource$
}
);