-
Notifications
You must be signed in to change notification settings - Fork 5.6k
Expand file tree
/
Copy pathperps-controller-init.test.ts
More file actions
979 lines (849 loc) · 36.6 KB
/
Copy pathperps-controller-init.test.ts
File metadata and controls
979 lines (849 loc) · 36.6 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
import {
PerpsController,
type PerpsControllerState,
type PerpsPlatformDependencies,
} from '@metamask/perps-controller';
import {
MetaMetricsEventCategory,
MetaMetricsEventName,
} from '../../../shared/constants/metametrics';
import {
createPerpsInfrastructure,
type InfrastructureDeps,
} from '../controllers/perps/infrastructure';
import { buildControllerInitRequestMock } from './test/utils';
import { PerpsControllerInit } from './perps-controller-init';
import type { PerpsControllerMessenger } from './messengers/perps-controller-messenger';
import type { MessengerClientInitRequest } from './types';
jest.mock('@metamask/perps-controller', () => ({
getDefaultPerpsControllerState: jest.fn().mockReturnValue({
activeProvider: 'hyperliquid',
isTestnet: false,
initializationState: 'uninitialized',
initializationError: null,
initializationAttempts: 0,
accountState: null,
perpsBalances: {},
depositInProgress: false,
lastDepositResult: null,
withdrawInProgress: false,
lastDepositTransactionId: null,
lastWithdrawResult: null,
withdrawalRequests: [],
withdrawalProgress: {
progress: 0,
lastUpdated: 0,
activeWithdrawalId: null,
},
depositRequests: [],
lastError: null,
lastUpdateTimestamp: 0,
isEligible: false,
isFirstTimeUser: { testnet: true, mainnet: true },
hasPlacedFirstOrder: { testnet: false, mainnet: false },
watchlistMarkets: { testnet: [], mainnet: [] },
tradeConfigurations: { testnet: {}, mainnet: {} },
marketFilterPreferences: { optionId: 'volume', direction: 'desc' },
hip3ConfigVersion: 0,
selectedPaymentToken: null,
cachedMarketDataByProvider: {},
cachedUserDataByProvider: {},
}),
PerpsController: jest.fn().mockImplementation(() => ({
state: { initializationState: 'uninitialized' },
init: jest.fn().mockResolvedValue(undefined),
disconnect: jest.fn(),
placeOrder: jest.fn(),
closePosition: jest.fn(),
closePositions: jest.fn(),
editOrder: jest.fn(),
cancelOrder: jest.fn(),
cancelOrders: jest.fn(),
updatePositionTPSL: jest.fn(),
updateMargin: jest.fn(),
flipPosition: jest.fn(),
withdraw: jest.fn(),
validateWithdrawal: jest.fn(),
getWithdrawalRoutes: jest.fn(),
updateWithdrawalStatus: jest.fn(),
updateWithdrawalProgress: jest.fn(),
getWithdrawalProgress: jest.fn(),
depositWithConfirmation: jest.fn(),
getPositions: jest.fn(),
getMarkets: jest.fn(),
getMarketDataWithPrices: jest.fn(),
getOrderFills: jest.fn(),
getOrders: jest.fn(),
getOpenOrders: jest.fn(),
getFunding: jest.fn(),
getAccountState: jest.fn(),
getHistoricalPortfolio: jest.fn(),
fetchHistoricalCandles: jest.fn(),
calculateFees: jest.fn(),
calculateLiquidationPrice: jest.fn(),
getAvailableDexs: jest.fn(),
refreshEligibility: jest.fn(),
startEligibilityMonitoring: jest.fn(),
stopEligibilityMonitoring: jest.fn(),
toggleTestnet: jest.fn(),
saveTradeConfiguration: jest.fn(),
getTradeConfiguration: jest.fn(),
savePendingTradeConfiguration: jest.fn(),
getPendingTradeConfiguration: jest.fn(),
clearPendingTradeConfiguration: jest.fn(),
saveMarketFilterPreferences: jest.fn(),
getMarketFilterPreferences: jest.fn(),
setSelectedPaymentToken: jest.fn(),
resetSelectedPaymentToken: jest.fn(),
markTutorialCompleted: jest.fn(),
markFirstOrderCompleted: jest.fn(),
resetFirstTimeUserState: jest.fn(),
clearPendingTransactionRequests: jest.fn(),
saveOrderBookGrouping: jest.fn(),
getOrderBookGrouping: jest.fn(),
getMaxSlippage: jest.fn(),
setMaxSlippage: jest.fn(),
getActiveProvider: jest.fn().mockReturnValue({
getUserHistory: jest.fn(),
getUserNonFundingLedgerUpdates: jest.fn(),
}),
clearDepositResult: jest.fn(),
clearWithdrawResult: jest.fn(),
getBlockExplorerUrl: jest.fn(),
getCurrentNetwork: jest.fn(),
isFirstTimeUserOnCurrentNetwork: jest.fn(),
getWatchlistMarkets: jest.fn(),
toggleWatchlistMarket: jest.fn(),
isWatchlistMarket: jest.fn(),
reconnect: jest.fn().mockResolvedValue(undefined),
getWebSocketConnectionState: jest.fn().mockReturnValue('connected'),
})),
}));
jest.mock('../controllers/perps/infrastructure', () => ({
createPerpsInfrastructure: jest.fn().mockReturnValue({}),
}));
type InitRequest = jest.Mocked<
MessengerClientInitRequest<PerpsControllerMessenger, undefined>
>;
function getInitRequestMock(): InitRequest {
return {
...buildControllerInitRequestMock(),
controllerMessenger: {
call: jest.fn(),
} as unknown as PerpsControllerMessenger,
initMessenger: undefined as never,
};
}
function initWithApi(request?: InitRequest) {
const result = PerpsControllerInit(request ?? getInitRequestMock());
const { api } = result;
if (!api) {
throw new Error('Expected api to be defined');
}
return { ...result, api };
}
describe('PerpsControllerInit', () => {
const PerpsControllerMock = jest.mocked(PerpsController);
beforeEach(() => {
jest.clearAllMocks();
delete process.env.MM_PERPS_BLOCKED_REGIONS;
delete process.env.MM_PERPS_HL_BUILDER_ADDRESS_MAINNET;
delete process.env.MM_PERPS_HL_BUILDER_ADDRESS_TESTNET;
});
describe('controller instantiation', () => {
it('returns a controller instance and api', () => {
const request = getInitRequestMock();
const result = PerpsControllerInit(request);
expect(result.messengerClient).toBeDefined();
expect(result.api).toBeDefined();
});
it('creates PerpsController with correct arguments', () => {
const request = getInitRequestMock();
PerpsControllerInit(request);
expect(PerpsControllerMock).toHaveBeenCalledWith({
messenger: request.controllerMessenger,
state: undefined,
infrastructure: expect.any(Object),
clientConfig: {
fallbackHip3Enabled: true,
fallbackHip3AllowlistMarkets: ['xyz:*'],
fallbackBlockedRegions: [],
},
deferEligibilityCheck: true,
});
});
/**
* Data-layer guard: the UI categorization filter (Stocks/Commodities/Forex)
* intentionally does NOT re-check the HIP-3 allowlist and trusts the
* controller to limit which HIP-3 markets reach the UI. If this fallback
* is ever weakened (e.g. set to []), markets from non-allowlisted DEXes
* could surface in the UI before LaunchDarkly responds. Lock it in here.
*
* See ui/pages/perps/market-list/index.tsx :: filterByType.
*/
it('always wires a non-empty fallbackHip3AllowlistMarkets so the controller can gate HIP-3 markets before LD loads', () => {
const request = getInitRequestMock();
PerpsControllerInit(request);
const constructorCall = PerpsControllerMock.mock.calls[0][0];
const { clientConfig } = constructorCall;
expect(clientConfig).toBeDefined();
if (!clientConfig) {
return;
}
expect(clientConfig.fallbackHip3Enabled).toBe(true);
expect(clientConfig.fallbackHip3AllowlistMarkets).toEqual(['xyz:*']);
expect(clientConfig.fallbackHip3AllowlistMarkets).not.toEqual([]);
expect(clientConfig.fallbackHip3AllowlistMarkets).not.toBeUndefined();
});
it('passes deferEligibilityCheck true when onboarding is not complete', () => {
const request = getInitRequestMock();
request.persistedState.OnboardingController = {
completedOnboarding: false,
} as never;
PerpsControllerInit(request);
const constructorCall = PerpsControllerMock.mock.calls[0][0];
expect(constructorCall.deferEligibilityCheck).toBe(true);
});
it('passes deferEligibilityCheck true when onboarding is complete', () => {
const request = getInitRequestMock();
request.persistedState.OnboardingController = {
completedOnboarding: true,
} as never;
PerpsControllerInit(request);
const constructorCall = PerpsControllerMock.mock.calls[0][0];
expect(constructorCall.deferEligibilityCheck).toBe(true);
});
it('passes deferEligibilityCheck true when basic functionality is off', () => {
const request = getInitRequestMock();
request.persistedState.OnboardingController = {
completedOnboarding: true,
} as never;
request.persistedState.PreferencesController = {
useExternalServices: false,
} as never;
PerpsControllerInit(request);
const constructorCall = PerpsControllerMock.mock.calls[0][0];
expect(constructorCall.deferEligibilityCheck).toBe(true);
});
it('passes deferEligibilityCheck false when basic functionality is on and onboarding complete', () => {
const request = getInitRequestMock();
request.persistedState.OnboardingController = {
completedOnboarding: true,
} as never;
request.persistedState.PreferencesController = {
useExternalServices: true,
} as never;
PerpsControllerInit(request);
const constructorCall = PerpsControllerMock.mock.calls[0][0];
expect(constructorCall.deferEligibilityCheck).toBe(false);
});
it('defers eligibility check when PreferencesController is undefined (conservative: assume opt-out)', () => {
const request = getInitRequestMock();
request.persistedState.OnboardingController = {
completedOnboarding: true,
} as never;
expect(request.persistedState.PreferencesController).toBeUndefined();
PerpsControllerInit(request);
const constructorCall = PerpsControllerMock.mock.calls[0][0];
expect(constructorCall.deferEligibilityCheck).toBe(true);
});
it('passes persisted state directly to the controller', () => {
const request = getInitRequestMock();
const persistedState: Partial<PerpsControllerState> = {
isTestnet: true,
activeProvider: 'hyperliquid',
};
request.persistedState.PerpsController = persistedState;
PerpsControllerInit(request);
const constructorCall = PerpsControllerMock.mock.calls[0][0];
expect(constructorCall.state).toBe(persistedState);
});
it('calls createPerpsInfrastructure with trackEvent', () => {
PerpsControllerInit(getInitRequestMock());
expect(createPerpsInfrastructure).toHaveBeenCalledWith({
trackEvent: expect.any(Function),
getStorageItem: expect.any(Function),
setStorageItem: expect.any(Function),
removeStorageItem: expect.any(Function),
isDisconnecting: expect.any(Function),
getPerpsDiscountForAccount: expect.any(Function),
});
});
it('getPerpsDiscountForAccount from createPerpsInfrastructure delegates to RewardsController:getPerpsDiscountForAccount', async () => {
const call = jest.fn().mockResolvedValue(5000);
const request = getInitRequestMock();
request.controllerMessenger = {
call,
} as unknown as PerpsControllerMessenger;
let capturedDeps: InfrastructureDeps | undefined;
jest
.mocked(createPerpsInfrastructure)
.mockImplementationOnce((deps: InfrastructureDeps) => {
capturedDeps = deps;
return {} as PerpsPlatformDependencies;
});
PerpsControllerInit(request);
expect(capturedDeps).toBeDefined();
const deps = capturedDeps as InfrastructureDeps;
const result = await deps.getPerpsDiscountForAccount(
'eip155:42161:0xabc',
10,
);
expect(result).toBe(5000);
expect(call).toHaveBeenCalledWith(
'RewardsController:getPerpsDiscountForAccount',
'eip155:42161:0xabc',
10,
);
});
it('trackEvent from createPerpsInfrastructure delegates to MetaMetricsController:trackEvent', () => {
const call = jest.fn();
const request = getInitRequestMock();
request.controllerMessenger = {
call,
} as unknown as PerpsControllerMessenger;
jest
.mocked(createPerpsInfrastructure)
.mockImplementationOnce((deps: InfrastructureDeps) => {
deps.trackEvent({
event: MetaMetricsEventName.PerpsScreenViewed,
category: MetaMetricsEventCategory.Perps,
properties: {},
});
return {} as PerpsPlatformDependencies;
});
PerpsControllerInit(request);
expect(call).toHaveBeenCalledWith(
'MetaMetricsController:trackEvent',
expect.objectContaining({
event: MetaMetricsEventName.PerpsScreenViewed,
category: MetaMetricsEventCategory.Perps,
}),
);
});
it('storage helpers from createPerpsInfrastructure delegate to StorageService', async () => {
const call = jest.fn().mockResolvedValue({ result: 'cached-value' });
const request = getInitRequestMock();
request.controllerMessenger = {
call,
} as unknown as PerpsControllerMessenger;
let capturedDeps: InfrastructureDeps | undefined;
jest
.mocked(createPerpsInfrastructure)
.mockImplementationOnce((deps: InfrastructureDeps) => {
capturedDeps = deps;
return {} as PerpsPlatformDependencies;
});
PerpsControllerInit(request);
expect(capturedDeps).toBeDefined();
const deps = capturedDeps as InfrastructureDeps;
await deps.getStorageItem('diskCache:PERPS_DISK_CACHE_MARKETS');
await deps.setStorageItem(
'diskCache:PERPS_DISK_CACHE_MARKETS',
'cached-value',
);
await deps.removeStorageItem('diskCache:PERPS_DISK_CACHE_MARKETS');
expect(call).toHaveBeenNthCalledWith(
1,
'StorageService:getItem',
'PerpsController',
'diskCache:PERPS_DISK_CACHE_MARKETS',
);
expect(call).toHaveBeenNthCalledWith(
2,
'StorageService:setItem',
'PerpsController',
'diskCache:PERPS_DISK_CACHE_MARKETS',
'cached-value',
);
expect(call).toHaveBeenNthCalledWith(
3,
'StorageService:removeItem',
'PerpsController',
'diskCache:PERPS_DISK_CACHE_MARKETS',
);
});
});
describe('getFallbackBlockedRegions', () => {
it('parses MM_PERPS_BLOCKED_REGIONS env var', () => {
process.env.MM_PERPS_BLOCKED_REGIONS = 'US,CA-ON,GB';
PerpsControllerInit(getInitRequestMock());
const constructorCall = PerpsControllerMock.mock.calls[0][0];
expect(constructorCall.clientConfig?.fallbackBlockedRegions).toEqual([
'US',
'CA-ON',
'GB',
]);
});
it('returns empty array when env var is not set', () => {
PerpsControllerInit(getInitRequestMock());
const constructorCall = PerpsControllerMock.mock.calls[0][0];
expect(constructorCall.clientConfig?.fallbackBlockedRegions).toEqual([]);
});
it('trims whitespace from region codes', () => {
process.env.MM_PERPS_BLOCKED_REGIONS = ' US , GB , BE ';
PerpsControllerInit(getInitRequestMock());
const constructorCall = PerpsControllerMock.mock.calls[0][0];
expect(constructorCall.clientConfig?.fallbackBlockedRegions).toEqual([
'US',
'GB',
'BE',
]);
});
it('filters empty strings from region codes', () => {
process.env.MM_PERPS_BLOCKED_REGIONS = 'US,,GB,';
PerpsControllerInit(getInitRequestMock());
const constructorCall = PerpsControllerMock.mock.calls[0][0];
expect(constructorCall.clientConfig?.fallbackBlockedRegions).toEqual([
'US',
'GB',
]);
});
});
describe('getHyperLiquidBuilderAddresses', () => {
it('returns undefined when no env vars are set', () => {
PerpsControllerInit(getInitRequestMock());
const constructorCall = PerpsControllerMock.mock.calls[0][0];
expect(
constructorCall.clientConfig?.providerCredentials?.hyperliquid,
).toBeUndefined();
});
it('passes mainnet builder address from env var', () => {
process.env.MM_PERPS_HL_BUILDER_ADDRESS_MAINNET = '0xabc123';
PerpsControllerInit(getInitRequestMock());
const constructorCall = PerpsControllerMock.mock.calls[0][0];
expect(
constructorCall.clientConfig?.providerCredentials?.hyperliquid,
).toEqual({
builderAddressMainnet: '0xabc123',
});
});
it('passes testnet builder address from env var', () => {
process.env.MM_PERPS_HL_BUILDER_ADDRESS_TESTNET = '0xdef456';
PerpsControllerInit(getInitRequestMock());
const constructorCall = PerpsControllerMock.mock.calls[0][0];
expect(
constructorCall.clientConfig?.providerCredentials?.hyperliquid,
).toEqual({
builderAddressTestnet: '0xdef456',
});
});
it('passes both builder addresses when both env vars are set', () => {
process.env.MM_PERPS_HL_BUILDER_ADDRESS_MAINNET = '0xabc123';
process.env.MM_PERPS_HL_BUILDER_ADDRESS_TESTNET = '0xdef456';
PerpsControllerInit(getInitRequestMock());
const constructorCall = PerpsControllerMock.mock.calls[0][0];
expect(
constructorCall.clientConfig?.providerCredentials?.hyperliquid,
).toEqual({
builderAddressMainnet: '0xabc123',
builderAddressTestnet: '0xdef456',
});
});
it('trims whitespace from builder addresses', () => {
process.env.MM_PERPS_HL_BUILDER_ADDRESS_MAINNET = ' 0xabc123 ';
process.env.MM_PERPS_HL_BUILDER_ADDRESS_TESTNET = ' 0xdef456 ';
PerpsControllerInit(getInitRequestMock());
const constructorCall = PerpsControllerMock.mock.calls[0][0];
expect(
constructorCall.clientConfig?.providerCredentials?.hyperliquid,
).toEqual({
builderAddressMainnet: '0xabc123',
builderAddressTestnet: '0xdef456',
});
});
it('omits whitespace-only builder addresses so package defaults still apply', () => {
process.env.MM_PERPS_HL_BUILDER_ADDRESS_MAINNET = ' ';
process.env.MM_PERPS_HL_BUILDER_ADDRESS_TESTNET = '\t';
PerpsControllerInit(getInitRequestMock());
const constructorCall = PerpsControllerMock.mock.calls[0][0];
expect(
constructorCall.clientConfig?.providerCredentials?.hyperliquid,
).toBeUndefined();
});
});
describe('api method delegation', () => {
const apiToController: [string, string][] = [
['perpsInit', 'init'],
['perpsDisconnect', 'disconnect'],
['perpsPlaceOrder', 'placeOrder'],
['perpsClosePosition', 'closePosition'],
['perpsClosePositions', 'closePositions'],
['perpsEditOrder', 'editOrder'],
['perpsCancelOrder', 'cancelOrder'],
['perpsCancelOrders', 'cancelOrders'],
['perpsUpdatePositionTPSL', 'updatePositionTPSL'],
['perpsUpdateMargin', 'updateMargin'],
['perpsFlipPosition', 'flipPosition'],
['perpsWithdraw', 'withdraw'],
['perpsValidateWithdrawal', 'validateWithdrawal'],
['perpsGetWithdrawalRoutes', 'getWithdrawalRoutes'],
['perpsUpdateWithdrawalStatus', 'updateWithdrawalStatus'],
['perpsUpdateWithdrawalProgress', 'updateWithdrawalProgress'],
['perpsGetWithdrawalProgress', 'getWithdrawalProgress'],
['perpsGetPositions', 'getPositions'],
['perpsGetMarkets', 'getMarkets'],
['perpsGetMarketDataWithPrices', 'getMarketDataWithPrices'],
['perpsGetOrderFills', 'getOrderFills'],
['perpsGetOrders', 'getOrders'],
['perpsGetOpenOrders', 'getOpenOrders'],
['perpsGetFunding', 'getFunding'],
['perpsGetAccountState', 'getAccountState'],
['perpsGetHistoricalPortfolio', 'getHistoricalPortfolio'],
['perpsFetchHistoricalCandles', 'fetchHistoricalCandles'],
['perpsCalculateFees', 'calculateFees'],
['perpsCalculateLiquidationPrice', 'calculateLiquidationPrice'],
['perpsGetAvailableDexs', 'getAvailableDexs'],
['perpsRefreshEligibility', 'refreshEligibility'],
['perpsStartEligibilityMonitoring', 'startEligibilityMonitoring'],
['perpsStopEligibilityMonitoring', 'stopEligibilityMonitoring'],
['perpsToggleTestnet', 'toggleTestnet'],
['perpsSaveTradeConfiguration', 'saveTradeConfiguration'],
['perpsGetTradeConfiguration', 'getTradeConfiguration'],
['perpsSavePendingTradeConfiguration', 'savePendingTradeConfiguration'],
['perpsGetPendingTradeConfiguration', 'getPendingTradeConfiguration'],
['perpsClearPendingTradeConfiguration', 'clearPendingTradeConfiguration'],
['perpsSaveMarketFilterPreferences', 'saveMarketFilterPreferences'],
['perpsGetMarketFilterPreferences', 'getMarketFilterPreferences'],
['perpsSetSelectedPaymentToken', 'setSelectedPaymentToken'],
['perpsResetSelectedPaymentToken', 'resetSelectedPaymentToken'],
['perpsMarkTutorialCompleted', 'markTutorialCompleted'],
['perpsMarkFirstOrderCompleted', 'markFirstOrderCompleted'],
['perpsResetFirstTimeUserState', 'resetFirstTimeUserState'],
[
'perpsClearPendingTransactionRequests',
'clearPendingTransactionRequests',
],
['perpsSaveOrderBookGrouping', 'saveOrderBookGrouping'],
['perpsGetOrderBookGrouping', 'getOrderBookGrouping'],
['perpsGetMaxSlippage', 'getMaxSlippage'],
['perpsSetMaxSlippage', 'setMaxSlippage'],
['perpsClearDepositResult', 'clearDepositResult'],
['perpsClearWithdrawResult', 'clearWithdrawResult'],
['perpsGetBlockExplorerUrl', 'getBlockExplorerUrl'],
['perpsGetCurrentNetwork', 'getCurrentNetwork'],
[
'perpsIsFirstTimeUserOnCurrentNetwork',
'isFirstTimeUserOnCurrentNetwork',
],
['perpsGetWatchlistMarkets', 'getWatchlistMarkets'],
['perpsToggleWatchlistMarket', 'toggleWatchlistMarket'],
['perpsIsWatchlistMarket', 'isWatchlistMarket'],
];
for (const [apiMethod, controllerMethod] of apiToController) {
it(`${apiMethod} delegates to messengerClient.${controllerMethod}`, async () => {
const { api, messengerClient } = initWithApi();
await (api as Record<string, CallableFunction>)[apiMethod]();
expect(
(messengerClient as unknown as Record<string, jest.Mock>)[
controllerMethod
],
).toHaveBeenCalled();
});
}
it('perpsDepositWithConfirmation returns lastDepositTransactionId', async () => {
const { api, messengerClient } = initWithApi();
(
messengerClient.state as unknown as Record<string, string>
).lastDepositTransactionId = 'tx-123';
const result = await api.perpsDepositWithConfirmation(
...([] as unknown as Parameters<
typeof messengerClient.depositWithConfirmation
>),
);
expect(messengerClient.depositWithConfirmation).toHaveBeenCalled();
expect(result).toBe('tx-123');
});
it('perpsGetUserHistory calls provider.getUserHistory', async () => {
const { api, messengerClient } = initWithApi();
const params = { startTime: 0 };
await api.perpsGetUserHistory(params);
expect(
messengerClient.getActiveProvider().getUserHistory,
).toHaveBeenCalledWith(params);
});
it('perpsGetUserNonFundingLedgerUpdates calls provider.getUserNonFundingLedgerUpdates', async () => {
const { api, messengerClient } = initWithApi();
const params = { startTime: 0 };
await api.perpsGetUserNonFundingLedgerUpdates(params);
expect(
messengerClient.getActiveProvider().getUserNonFundingLedgerUpdates,
).toHaveBeenCalledWith(params);
});
});
describe('withAutoInit recovery', () => {
it('retries after CLIENT_NOT_INITIALIZED and succeeds', async () => {
const { api, messengerClient } = initWithApi();
const getPositions = messengerClient.getPositions as jest.Mock;
getPositions
.mockRejectedValueOnce(new Error('CLIENT_NOT_INITIALIZED'))
.mockResolvedValueOnce([{ symbol: 'ETH' }]);
const result = await api.perpsGetPositions();
expect(messengerClient.init).toHaveBeenCalledTimes(1);
expect(getPositions).toHaveBeenCalledTimes(2);
expect(result).toEqual([{ symbol: 'ETH' }]);
});
it('retries after CLIENT_REINITIALIZING and succeeds', async () => {
const { api, messengerClient } = initWithApi();
const getMarkets = messengerClient.getMarkets as jest.Mock;
getMarkets
.mockRejectedValueOnce(new Error('CLIENT_REINITIALIZING'))
.mockResolvedValueOnce([{ market: 'BTC' }]);
const result = await api.perpsGetMarkets();
expect(messengerClient.init).toHaveBeenCalledTimes(1);
expect(getMarkets).toHaveBeenCalledTimes(2);
expect(result).toEqual([{ market: 'BTC' }]);
});
it('does not retry for unrelated errors', async () => {
const { api, messengerClient } = initWithApi();
const getPositions = messengerClient.getPositions as jest.Mock;
getPositions.mockRejectedValueOnce(new Error('NETWORK_ERROR'));
await expect(api.perpsGetPositions()).rejects.toThrow('NETWORK_ERROR');
expect(messengerClient.init).not.toHaveBeenCalled();
expect(getPositions).toHaveBeenCalledTimes(1);
});
it('does not wrap lifecycle methods (perpsInit)', async () => {
const { api, messengerClient } = initWithApi();
const init = messengerClient.init as jest.Mock;
init.mockRejectedValueOnce(new Error('CLIENT_NOT_INITIALIZED'));
// perpsInit should NOT auto-retry — it IS the init
await expect(api.perpsInit()).rejects.toThrow('CLIENT_NOT_INITIALIZED');
expect(init).toHaveBeenCalledTimes(1);
});
it('does not wrap preference methods (perpsSaveTradeConfiguration)', async () => {
const { api, messengerClient } = initWithApi();
const save = messengerClient.saveTradeConfiguration as jest.Mock;
save.mockRejectedValueOnce(new Error('CLIENT_NOT_INITIALIZED'));
// Preferences are state-only — should NOT auto-retry
await expect(
api.perpsSaveTradeConfiguration(
...([] as unknown as Parameters<
typeof messengerClient.saveTradeConfiguration
>),
),
).rejects.toThrow('CLIENT_NOT_INITIALIZED');
expect(messengerClient.init).not.toHaveBeenCalled();
});
it('recovers provider passthrough (perpsGetUserHistory)', async () => {
const { api, messengerClient } = initWithApi();
const getUserHistory = messengerClient.getActiveProvider()
.getUserHistory as jest.Mock;
getUserHistory
.mockRejectedValueOnce(new Error('CLIENT_NOT_INITIALIZED'))
.mockResolvedValueOnce([{ id: 'h1' }]);
const result = await api.perpsGetUserHistory({ startTime: 0 });
expect(messengerClient.init).toHaveBeenCalledTimes(1);
expect(result).toEqual([{ id: 'h1' }]);
});
it('recovers trading mutations (perpsPlaceOrder)', async () => {
const { api, messengerClient } = initWithApi();
const placeOrder = messengerClient.placeOrder as jest.Mock;
placeOrder
.mockRejectedValueOnce(new Error('CLIENT_NOT_INITIALIZED'))
.mockResolvedValueOnce({ orderId: '123' });
const result = await api.perpsPlaceOrder(
...([] as unknown as Parameters<typeof messengerClient.placeOrder>),
);
expect(messengerClient.init).toHaveBeenCalledTimes(1);
expect(placeOrder).toHaveBeenCalledTimes(2);
expect(result).toEqual({ orderId: '123' });
});
describe('benign disconnect-race recovery', () => {
function makeTerminatedByUserError() {
const cause = Object.assign(
new Error('Error when reconnecting WebSocket: TERMINATED_BY_USER'),
{ name: 'ReconnectingWebSocketError', code: 'TERMINATED_BY_USER' },
);
return Object.assign(
new Error('Failed to establish WebSocket connection'),
{ name: 'WebSocketRequestError', cause },
);
}
function makeConnectionClosedError() {
return Object.assign(new Error('WebSocket connection closed'), {
name: 'WebSocketRequestError',
});
}
describe('read methods retry on benign disconnect errors', () => {
it('retries perpsGetPositions after TERMINATED_BY_USER and succeeds', async () => {
const { api, messengerClient } = initWithApi();
const getPositions = messengerClient.getPositions as jest.Mock;
getPositions
.mockRejectedValueOnce(makeTerminatedByUserError())
.mockResolvedValueOnce([{ symbol: 'ETH' }]);
const result = await api.perpsGetPositions();
expect(messengerClient.init).toHaveBeenCalledTimes(1);
expect(getPositions).toHaveBeenCalledTimes(2);
expect(result).toEqual([{ symbol: 'ETH' }]);
});
it('retries perpsGetUserHistory (provider passthrough) after TERMINATED_BY_USER', async () => {
const { api, messengerClient } = initWithApi();
const getUserHistory = messengerClient.getActiveProvider()
.getUserHistory as jest.Mock;
getUserHistory
.mockRejectedValueOnce(makeTerminatedByUserError())
.mockResolvedValueOnce([{ id: 'h1' }]);
const result = await api.perpsGetUserHistory({ startTime: 0 });
expect(messengerClient.init).toHaveBeenCalledTimes(1);
expect(result).toEqual([{ id: 'h1' }]);
});
it('retries perpsGetPositions after WebSocket connection closed and succeeds', async () => {
const { api, messengerClient } = initWithApi();
const getPositions = messengerClient.getPositions as jest.Mock;
getPositions
.mockRejectedValueOnce(makeConnectionClosedError())
.mockResolvedValueOnce([{ symbol: 'BTC' }]);
const result = await api.perpsGetPositions();
expect(messengerClient.init).toHaveBeenCalledTimes(1);
expect(getPositions).toHaveBeenCalledTimes(2);
expect(result).toEqual([{ symbol: 'BTC' }]);
});
it('retries perpsGetUserHistory after WebSocket connection closed and succeeds', async () => {
const { api, messengerClient } = initWithApi();
const getUserHistory = messengerClient.getActiveProvider()
.getUserHistory as jest.Mock;
getUserHistory
.mockRejectedValueOnce(makeConnectionClosedError())
.mockResolvedValueOnce([{ id: 'h2' }]);
const result = await api.perpsGetUserHistory({ startTime: 0 });
expect(messengerClient.init).toHaveBeenCalledTimes(1);
expect(result).toEqual([{ id: 'h2' }]);
});
it('does not retry when the cause code is not TERMINATED_BY_USER', async () => {
const { api, messengerClient } = initWithApi();
const getPositions = messengerClient.getPositions as jest.Mock;
const cause = Object.assign(
new Error('Error when reconnecting WebSocket: UNKNOWN_ERROR'),
{ name: 'ReconnectingWebSocketError', code: 'UNKNOWN_ERROR' },
);
const wsError = Object.assign(
new Error('Failed to establish WebSocket connection'),
{ name: 'WebSocketRequestError', cause },
);
getPositions.mockRejectedValueOnce(wsError);
await expect(api.perpsGetPositions()).rejects.toThrow(
'Failed to establish WebSocket connection',
);
expect(messengerClient.init).not.toHaveBeenCalled();
expect(getPositions).toHaveBeenCalledTimes(1);
});
it('does not retry for a WebSocketRequestError with a different message', async () => {
const { api, messengerClient } = initWithApi();
const getPositions = messengerClient.getPositions as jest.Mock;
const wsError = Object.assign(
new Error('Failed to close WebSocket connection'),
{ name: 'WebSocketRequestError' },
);
getPositions.mockRejectedValueOnce(wsError);
await expect(api.perpsGetPositions()).rejects.toThrow(
'Failed to close WebSocket connection',
);
expect(messengerClient.init).not.toHaveBeenCalled();
expect(getPositions).toHaveBeenCalledTimes(1);
});
});
describe('write methods do not retry on benign disconnect errors', () => {
// [apiMethod, controllerMethod] pairs for all guarded mutations
const writeMethods: [string, string][] = [
['perpsPlaceOrder', 'placeOrder'],
['perpsClosePosition', 'closePosition'],
['perpsClosePositions', 'closePositions'],
['perpsEditOrder', 'editOrder'],
['perpsCancelOrder', 'cancelOrder'],
['perpsCancelOrders', 'cancelOrders'],
['perpsUpdatePositionTPSL', 'updatePositionTPSL'],
['perpsUpdateMargin', 'updateMargin'],
['perpsFlipPosition', 'flipPosition'],
['perpsWithdraw', 'withdraw'],
['perpsUpdateWithdrawalStatus', 'updateWithdrawalStatus'],
['perpsUpdateWithdrawalProgress', 'updateWithdrawalProgress'],
];
for (const [apiMethod, controllerMethod] of writeMethods) {
it(`${apiMethod} surfaces "WebSocket connection closed" without retry`, async () => {
const { api, messengerClient } = initWithApi();
const fn = (
messengerClient as unknown as Record<string, jest.Mock>
)[controllerMethod];
fn.mockRejectedValueOnce(makeConnectionClosedError());
await expect(
(api as Record<string, CallableFunction>)[apiMethod](),
).rejects.toThrow('WebSocket connection closed');
expect(messengerClient.init).not.toHaveBeenCalled();
expect(fn).toHaveBeenCalledTimes(1);
});
it(`${apiMethod} surfaces TERMINATED_BY_USER without retry`, async () => {
const { api, messengerClient } = initWithApi();
const fn = (
messengerClient as unknown as Record<string, jest.Mock>
)[controllerMethod];
fn.mockRejectedValueOnce(makeTerminatedByUserError());
await expect(
(api as Record<string, CallableFunction>)[apiMethod](),
).rejects.toThrow();
expect(messengerClient.init).not.toHaveBeenCalled();
expect(fn).toHaveBeenCalledTimes(1);
});
it(`${apiMethod} still retries on CLIENT_NOT_INITIALIZED (pre-send)`, async () => {
const { api, messengerClient } = initWithApi();
const fn = (
messengerClient as unknown as Record<string, jest.Mock>
)[controllerMethod];
fn.mockRejectedValueOnce(
new Error('CLIENT_NOT_INITIALIZED'),
).mockResolvedValueOnce(undefined);
await (api as Record<string, CallableFunction>)[apiMethod]();
expect(messengerClient.init).toHaveBeenCalledTimes(1);
expect(fn).toHaveBeenCalledTimes(2);
});
}
it('perpsDepositWithConfirmation surfaces "WebSocket connection closed" without retry', async () => {
const { api, messengerClient } = initWithApi();
(
messengerClient.depositWithConfirmation as jest.Mock
).mockRejectedValueOnce(makeConnectionClosedError());
await expect(
api.perpsDepositWithConfirmation(
...([] as unknown as Parameters<
typeof messengerClient.depositWithConfirmation
>),
),
).rejects.toThrow('WebSocket connection closed');
expect(messengerClient.init).not.toHaveBeenCalled();
});
it('perpsDepositWithConfirmation surfaces TERMINATED_BY_USER without retry', async () => {
const { api, messengerClient } = initWithApi();
(
messengerClient.depositWithConfirmation as jest.Mock
).mockRejectedValueOnce(makeTerminatedByUserError());
await expect(
api.perpsDepositWithConfirmation(
...([] as unknown as Parameters<
typeof messengerClient.depositWithConfirmation
>),
),
).rejects.toThrow();
expect(messengerClient.init).not.toHaveBeenCalled();
});
it('perpsDepositWithConfirmation still retries on CLIENT_NOT_INITIALIZED (pre-send)', async () => {
const { api, messengerClient } = initWithApi();
(
messengerClient.state as unknown as Record<string, string>
).lastDepositTransactionId = 'tx-retry';
(messengerClient.depositWithConfirmation as jest.Mock)
.mockRejectedValueOnce(new Error('CLIENT_NOT_INITIALIZED'))
.mockResolvedValueOnce(undefined);
const result = await api.perpsDepositWithConfirmation(
...([] as unknown as Parameters<
typeof messengerClient.depositWithConfirmation
>),
);
expect(messengerClient.init).toHaveBeenCalledTimes(1);
expect(messengerClient.depositWithConfirmation).toHaveBeenCalledTimes(
2,
);
expect(result).toBe('tx-retry');
});
});
});
});
});