-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Expand file tree
/
Copy pathPerpsClosePositionView.test.tsx
More file actions
3402 lines (2964 loc) · 101 KB
/
Copy pathPerpsClosePositionView.test.tsx
File metadata and controls
3402 lines (2964 loc) · 101 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 { act, fireEvent, render, waitFor } from '@testing-library/react-native';
import {
PERPS_EVENT_PROPERTY,
PERPS_EVENT_VALUE,
ORDER_SLIPPAGE_CONFIG,
} from '@metamask/perps-controller';
import { MetaMetricsEvents } from '../../../../../core/Analytics';
import React from 'react';
import { Text, TouchableOpacity, View } from 'react-native';
import {
PerpsAmountDisplaySelectorsIDs,
PerpsClosePositionViewSelectorsIDs,
PerpsLimitPriceBottomSheetSelectorsIDs,
PerpsOrderHeaderSelectorsIDs,
PerpsOrderTypeBottomSheetSelectorsIDs,
} from '../../Perps.testIds';
import { strings } from '../../../../../../locales/i18n';
import renderWithProvider from '../../../../../util/test/renderWithProvider';
import {
defaultMinimumOrderAmountMock,
defaultPerpsClosePositionMock,
defaultPerpsClosePositionValidationMock,
defaultPerpsEventTrackingMock,
defaultPerpsLivePricesMock,
defaultPerpsTopOfBookMock,
defaultPerpsOrderFeesMock,
defaultPerpsPositionMock,
defaultPerpsRewardsMock,
} from '../../__mocks__/perpsHooksMocks';
import { createPerpsStateMock } from '../../__mocks__/perpsStateMock';
import PerpsClosePositionView from './PerpsClosePositionView';
// Mock navigation
const mockGoBack = jest.fn();
jest.mock('@react-navigation/native', () => ({
...jest.requireActual('@react-navigation/native'),
useNavigation: jest.fn(),
useRoute: jest.fn(),
}));
// Mock React Native Linking specifically for this test to prevent NavigationContainer errors
jest.mock('react-native/Libraries/Linking/Linking', () => ({
addEventListener: jest.fn(),
removeEventListener: jest.fn(),
openURL: jest.fn(),
canOpenURL: jest.fn().mockResolvedValue(true),
getInitialURL: jest.fn().mockResolvedValue(''),
sendIntent: jest.fn(),
}));
// Mock hooks
jest.mock('../../hooks', () => ({
useMinimumOrderAmount: jest.fn(),
usePerpsOrderFees: jest.fn(),
usePerpsClosePositionValidation: jest.fn(),
usePerpsClosePosition: jest.fn(),
usePerpsMarketData: jest.fn(),
usePerpsToasts: jest.fn(),
usePerpsRewards: jest.fn(),
}));
jest.mock('../../hooks/stream', () => ({
usePerpsLivePositions: jest.fn(),
usePerpsLivePrices: jest.fn(),
usePerpsTopOfBook: jest.fn(),
}));
jest.mock('../../hooks/usePerpsEventTracking', () => ({
usePerpsEventTracking: jest.fn(),
}));
jest.mock('../../selectors/featureFlags', () => ({
...jest.requireActual('../../selectors/featureFlags'),
selectPerpsClosePositionLimitOrderEnabledFlag: jest.fn(() => false),
}));
jest.mock('../../../../hooks/useAnalytics/useAnalytics');
// Only mock components that would cause issues in tests
// Following best practice: "Use mocks only when necessary"
jest.mock('../../../../Base/Keypad', () => 'Keypad');
jest.mock('../../components/PerpsSlider/PerpsSlider', () => ({
__esModule: true,
default: 'PerpsSlider',
}));
// Mock PerpsAmountDisplay to allow triggering onPress but keep it simple
jest.mock('../../components/PerpsAmountDisplay');
// Value the limit-price bottom sheet stub confirms with. Tests set this before
// pressing the confirm button so the real onConfirm wiring runs with a price.
let mockLimitPriceConfirmValue = '0';
// Lightweight stub so tests can confirm a limit price through the real
// onConfirm wiring without depending on the real BottomSheet internals.
jest.mock('../../components/PerpsLimitPriceBottomSheet', () => {
const ReactActual = jest.requireActual('react');
const { TouchableOpacity } = jest.requireActual('react-native');
const { PerpsLimitPriceBottomSheetSelectorsIDs: SelectorsIDs } =
jest.requireActual('../../Perps.testIds');
return {
__esModule: true,
default: ({
isVisible,
onConfirm,
}: {
isVisible?: boolean;
onConfirm: (price: string) => void;
}) =>
isVisible
? ReactActual.createElement(TouchableOpacity, {
testID: SelectorsIDs.CONFIRM_BUTTON,
onPress: () => onConfirm(mockLimitPriceConfirmValue),
})
: null,
};
});
// Lightweight stub so tests can exercise the order-type selection wiring
// without depending on the real BottomSheet internals.
jest.mock('../../components/PerpsOrderTypeBottomSheet', () => {
const ReactActual = jest.requireActual('react');
const { TouchableOpacity } = jest.requireActual('react-native');
const { PerpsOrderTypeBottomSheetSelectorsIDs: SelectorsIDs } =
jest.requireActual('../../Perps.testIds');
return {
__esModule: true,
default: ({
isVisible,
onSelect,
}: {
isVisible?: boolean;
onSelect: (type: 'market' | 'limit') => void;
}) =>
isVisible
? ReactActual.createElement(
ReactActual.Fragment,
null,
ReactActual.createElement(TouchableOpacity, {
testID: SelectorsIDs.MARKET_OPTION,
onPress: () => onSelect('market'),
}),
ReactActual.createElement(TouchableOpacity, {
testID: SelectorsIDs.LIMIT_OPTION,
onPress: () => onSelect('limit'),
}),
)
: null,
};
});
jest.mock('../../components/PerpsBottomSheetTooltip', () => ({
__esModule: true,
default: 'PerpsBottomSheetTooltip',
}));
jest.mock('../../../Rewards/components/RewardsVipBadge/RewardsVipBadge', () => {
const MockReact = jest.requireActual('react');
const { View: MockView } = jest.requireActual('react-native');
return {
__esModule: true,
default: () =>
MockReact.createElement(MockView, { testID: 'rewards-vip-badge' }),
};
});
const STATE_MOCK = createPerpsStateMock();
// Default mock for usePerpsToasts
const defaultPerpsToastsMock = {
showToast: jest.fn(),
PerpsToastOptions: {
positionManagement: {
closePosition: {
limitClose: {
partial: {
switchToMarketOrderMissingLimitPrice: {},
},
},
},
},
},
};
// Mock PerpsAmountDisplay implementation
jest.mocked(jest.requireMock('../../components/PerpsAmountDisplay')).default =
({ onPress, label }: { onPress?: () => void; label?: string }) =>
React.createElement(
TouchableOpacity,
{
onPress,
testID: 'perps-amount-display',
},
React.createElement(Text, null, label || 'Amount Display'),
);
describe('PerpsClosePositionView', () => {
const useNavigationMock = jest.mocked(
jest.requireMock('@react-navigation/native').useNavigation,
);
const useRouteMock = jest.mocked(
jest.requireMock('@react-navigation/native').useRoute,
);
const usePerpsLivePositionsMock = jest.mocked(
jest.requireMock('../../hooks/stream').usePerpsLivePositions,
);
const usePerpsLivePricesMock = jest.mocked(
jest.requireMock('../../hooks/stream').usePerpsLivePrices,
);
const usePerpsTopOfBookMock = jest.mocked(
jest.requireMock('../../hooks/stream').usePerpsTopOfBook,
);
const usePerpsOrderFeesMock = jest.mocked(
jest.requireMock('../../hooks').usePerpsOrderFees,
);
const usePerpsClosePositionValidationMock = jest.mocked(
jest.requireMock('../../hooks').usePerpsClosePositionValidation,
);
const usePerpsClosePositionMock = jest.mocked(
jest.requireMock('../../hooks').usePerpsClosePosition,
);
const usePerpsEventTrackingMock = jest.mocked(
jest.requireMock('../../hooks/usePerpsEventTracking').usePerpsEventTracking,
);
const useMinimumOrderAmountMock = jest.mocked(
jest.requireMock('../../hooks').useMinimumOrderAmount,
);
const usePerpsMarketDataMock = jest.mocked(
jest.requireMock('../../hooks').usePerpsMarketData,
);
const usePerpsToastsMock = jest.mocked(
jest.requireMock('../../hooks').usePerpsToasts,
);
const usePerpsRewardsMock = jest.mocked(
jest.requireMock('../../hooks').usePerpsRewards,
);
beforeEach(() => {
jest.clearAllMocks();
mockLimitPriceConfirmValue = '0';
// Setup navigation mocks
useNavigationMock.mockReturnValue({
goBack: mockGoBack,
addListener: jest.fn(() => jest.fn()),
});
// Setup default route params
useRouteMock.mockReturnValue({
params: {
position: defaultPerpsPositionMock,
},
});
// Setup hook mocks with default values
usePerpsLivePositionsMock.mockReturnValue({
positions: [defaultPerpsPositionMock],
isInitialLoading: false,
});
usePerpsLivePricesMock.mockReturnValue(defaultPerpsLivePricesMock);
usePerpsTopOfBookMock.mockReturnValue(defaultPerpsTopOfBookMock);
usePerpsOrderFeesMock.mockReturnValue(defaultPerpsOrderFeesMock);
usePerpsClosePositionValidationMock.mockReturnValue(
defaultPerpsClosePositionValidationMock,
);
usePerpsClosePositionMock.mockReturnValue(defaultPerpsClosePositionMock);
usePerpsEventTrackingMock.mockImplementation(
(options?: {
eventName?: string;
properties?: Record<string, unknown>;
}) => {
// If options are provided (declarative API), call track immediately to simulate useEffect
if (options?.eventName) {
defaultPerpsEventTrackingMock.track(
options.eventName,
options.properties || {},
);
}
// Always return the track function for imperative usage
return defaultPerpsEventTrackingMock;
},
);
// usePerpsScreenTracking mock removed - migrated to usePerpsMeasurement
useMinimumOrderAmountMock.mockReturnValue(defaultMinimumOrderAmountMock);
usePerpsMarketDataMock.mockReturnValue({
marketData: { szDecimals: 4 },
isLoading: false,
error: null,
});
// Setup usePerpsToasts mock
usePerpsToastsMock.mockReturnValue(defaultPerpsToastsMock);
// Setup usePerpsRewards mock
usePerpsRewardsMock.mockReturnValue(defaultPerpsRewardsMock);
});
afterEach(() => {
jest.clearAllMocks();
});
describe('Component Rendering', () => {
it('renders close position view with correct title', () => {
// Arrange & Act
const { getAllByText } = renderWithProvider(
<PerpsClosePositionView />,
{
state: STATE_MOCK,
},
true,
);
// Assert
const closePositionElements = getAllByText(
strings('perps.close_position.title'),
);
expect(closePositionElements.length).toBeGreaterThan(0);
});
it('displays position information correctly', () => {
// Arrange & Act
const { queryByTestId } = renderWithProvider(
<PerpsClosePositionView />,
{
state: STATE_MOCK,
},
true,
);
// Assert - Component renders without error
expect(
queryByTestId(
PerpsClosePositionViewSelectorsIDs.CLOSE_POSITION_CONFIRM_BUTTON,
),
).toBeDefined();
});
it('displays order details section', () => {
// Arrange & Act
const { getByText } = renderWithProvider(
<PerpsClosePositionView />,
{
state: STATE_MOCK,
},
true,
);
// Assert
expect(getByText(strings('perps.close_position.margin'))).toBeDefined();
expect(getByText(strings('perps.close_position.fees'))).toBeDefined();
expect(
getByText(strings('perps.close_position.you_receive')),
).toBeDefined();
});
});
describe('User Interactions', () => {
it('calls handleClosePosition when confirm button is pressed', async () => {
// Arrange
const handleClosePosition = jest.fn();
usePerpsClosePositionMock.mockReturnValue({
handleClosePosition,
isClosing: false,
});
const { getByTestId } = renderWithProvider(
<PerpsClosePositionView />,
{
state: STATE_MOCK,
},
true,
);
// Act
const confirmButton = getByTestId(
PerpsClosePositionViewSelectorsIDs.CLOSE_POSITION_CONFIRM_BUTTON,
);
fireEvent.press(confirmButton);
// Assert
await waitFor(() => {
expect(handleClosePosition).toHaveBeenCalled();
});
});
it('disables confirm button when closing is in progress', () => {
// Arrange
usePerpsClosePositionMock.mockReturnValue({
handleClosePosition: jest.fn(),
isClosing: true,
});
const { getByTestId } = renderWithProvider(
<PerpsClosePositionView />,
{
state: STATE_MOCK,
},
true,
);
// Act
const confirmButton = getByTestId(
PerpsClosePositionViewSelectorsIDs.CLOSE_POSITION_CONFIRM_BUTTON,
);
// Assert
expect(
confirmButton.props.disabled ||
confirmButton.props.accessibilityState?.disabled,
).toBe(true);
});
it('shows loading state on confirm button when closing', () => {
// Arrange
usePerpsClosePositionMock.mockReturnValue({
handleClosePosition: jest.fn(),
isClosing: true,
});
const { getByTestId } = renderWithProvider(
<PerpsClosePositionView />,
{
state: STATE_MOCK,
},
true,
);
// Assert - Button should be disabled and show closing text when loading
const confirmButton = getByTestId(
PerpsClosePositionViewSelectorsIDs.CLOSE_POSITION_CONFIRM_BUTTON,
);
expect(confirmButton).toBeDisabled();
expect(confirmButton.props.accessibilityState.busy).toBe(true);
});
});
describe('Validation', () => {
it('displays validation errors when present', () => {
// Arrange
const validationWithErrors = {
isValid: false,
errors: [
strings('perps.order.validation.minimum_amount', {
amount: '$10',
}),
],
warnings: [],
};
usePerpsClosePositionValidationMock.mockReturnValue(validationWithErrors);
// Act
const { getByText } = renderWithProvider(
<PerpsClosePositionView />,
{
state: STATE_MOCK,
},
true,
);
// Assert
expect(
getByText(
strings('perps.order.validation.minimum_amount', {
amount: '$10',
}),
),
).toBeDefined();
});
it('disables confirm button when validation fails', () => {
// Arrange
usePerpsClosePositionValidationMock.mockReturnValue({
isValid: false,
errors: ['Invalid amount'],
warnings: [],
});
const { getByTestId } = renderWithProvider(
<PerpsClosePositionView />,
{
state: STATE_MOCK,
},
true,
);
// Act
const confirmButton = getByTestId(
PerpsClosePositionViewSelectorsIDs.CLOSE_POSITION_CONFIRM_BUTTON,
);
// Assert
expect(
confirmButton.props.disabled ||
confirmButton.props.accessibilityState?.disabled,
).toBe(true);
});
});
describe('Fee Calculations', () => {
it('calculates and displays correct fees', () => {
// Arrange
const mockFees = {
totalFee: 10.5,
metamaskFeeRate: 0.5,
protocolFeeRate: 0.5,
};
usePerpsOrderFeesMock.mockReturnValue(mockFees);
// Act
const { getByText } = renderWithProvider(
<PerpsClosePositionView />,
{
state: STATE_MOCK,
},
true,
);
// Assert
expect(getByText(/10\.5/)).toBeDefined();
});
it('updates fees when close percentage changes', async () => {
// Arrange
renderWithProvider(
<PerpsClosePositionView />,
{
state: STATE_MOCK,
},
true,
);
// Act - Update the close percentage
// This would normally be done through slider interaction
// but we're testing the fee calculation logic
// Assert
expect(usePerpsOrderFeesMock).toHaveBeenCalled();
});
// Test that receiveAmount uses marginUsed directly (which already includes PnL)
it('calculates receive amount including P&L at effective price', () => {
// Arrange
const mockPosition = {
...defaultPerpsPositionMock,
entryPrice: '100', // Entry at $100
marginUsed: '1200', // $1200 (includes $1000 initial + $200 unrealized PnL)
unrealizedPnl: '200', // Current unrealized P&L from HyperLiquid
size: '1', // 1 token long position
};
const mockFees = {
totalFee: 50, // $50 fees
metamaskFeeRate: 0.5,
protocolFeeRate: 0.5,
};
// Set current price to $150 for reference
usePerpsLivePricesMock.mockReturnValue({
ETH: { price: '150' }, // Current price $150
});
useRouteMock.mockReturnValue({
params: { position: mockPosition },
});
usePerpsOrderFeesMock.mockReturnValue(mockFees);
usePerpsLivePositionsMock.mockReturnValue({
positions: [mockPosition],
isInitialLoading: false,
});
// Act
const { getByText } = renderWithProvider(
<PerpsClosePositionView />,
{
state: STATE_MOCK,
},
true,
);
// Assert - receiveAmount = marginUsed - fees
// HyperLiquid's marginUsed already includes PnL
// receiveAmount = 1200 - 50 = 1150
const receiveText = getByText(
strings('perps.close_position.you_receive'),
);
expect(receiveText).toBeDefined();
// PRICE_RANGES_MINIMAL_VIEW: Fixed 2 decimals, trailing zeros removed
expect(getByText('$1,150')).toBeDefined();
});
it('calculates receive amount correctly for partial close percentages', () => {
// Arrange
const mockPosition = {
...defaultPerpsPositionMock,
entryPrice: '100', // Entry at $100
marginUsed: '1700', // $1700 (includes $2000 initial - $300 unrealized loss)
unrealizedPnl: '-300', // Current unrealized loss from HyperLiquid
size: '2', // 2 tokens long
};
const mockFees = {
totalFee: 25, // $25 fees for 100% close
metamaskFeeRate: 0.5,
protocolFeeRate: 0.5,
};
// Set current price lower than entry for loss scenario
usePerpsLivePricesMock.mockReturnValue({
ETH: { price: '75' }, // Current price $75 < entry $100 = loss
});
useRouteMock.mockReturnValue({
params: { position: mockPosition },
});
usePerpsOrderFeesMock.mockReturnValue(mockFees);
usePerpsLivePositionsMock.mockReturnValue({
positions: [mockPosition],
isInitialLoading: false,
});
// Act
const { getByText } = renderWithProvider(
<PerpsClosePositionView />,
{
state: STATE_MOCK,
},
true,
);
// For 100% close (default):
// HyperLiquid's marginUsed already includes PnL
// receiveAmount = 1700 - 25 = 1675
const receiveText = getByText(
strings('perps.close_position.you_receive'),
);
expect(receiveText).toBeDefined();
// Look for 1675 in the display
expect(getByText(/1,675/)).toBeDefined();
});
});
describe('Position Data', () => {
it('handles long position correctly', () => {
// Arrange
const longPosition = {
...defaultPerpsPositionMock,
size: '1.5', // Positive for long
};
useRouteMock.mockReturnValue({
params: { position: longPosition },
});
// Act
const { queryByTestId } = renderWithProvider(
<PerpsClosePositionView />,
{
state: STATE_MOCK,
},
true,
);
// Assert - Component should render without errors
expect(
queryByTestId(
PerpsClosePositionViewSelectorsIDs.CLOSE_POSITION_CONFIRM_BUTTON,
),
).toBeDefined();
});
it('handles short position correctly', () => {
// Arrange
const shortPosition = {
...defaultPerpsPositionMock,
size: '-1.5', // Negative for short
};
useRouteMock.mockReturnValue({
params: { position: shortPosition },
});
// Act
const { queryByTestId } = renderWithProvider(
<PerpsClosePositionView />,
{
state: STATE_MOCK,
},
true,
);
// Assert - Component should render without errors
expect(
queryByTestId(
PerpsClosePositionViewSelectorsIDs.CLOSE_POSITION_CONFIRM_BUTTON,
),
).toBeDefined();
});
it('displays positive PnL in success color', () => {
// Arrange
const positionWithProfit = {
...defaultPerpsPositionMock,
entryPrice: '100', // Entry at $100
size: '1', // 1 token long
unrealizedPnl: '100', // Current unrealized (not used for display)
};
// Set current price higher than entry for profit
usePerpsLivePricesMock.mockReturnValue({
ETH: { price: '150' }, // Current price $150 > entry $100 = profit
});
useRouteMock.mockReturnValue({
params: { position: positionWithProfit },
});
// Act
const { getByText } = renderWithProvider(
<PerpsClosePositionView />,
{
state: STATE_MOCK,
},
true,
);
// Assert - effectivePnL = (150 - 100) * 1 = 50
// Look for positive P&L display (with + sign) - should show 50
const pnlElement = getByText(/\+.*50/);
expect(pnlElement).toBeDefined();
});
it('displays negative PnL in error color', () => {
// Arrange
const positionWithLoss = {
...defaultPerpsPositionMock,
entryPrice: '150', // Entry at $150
marginUsed: '1350', // $1500 initial - $150 unrealized loss (includes funding)
size: '1', // 1 token long
unrealizedPnl: '-150', // Current unrealized loss including funding fees
};
// Set current price lower than entry for loss
usePerpsLivePricesMock.mockReturnValue({
ETH: { price: '100' }, // Current price $100 < entry $150 = loss
});
useRouteMock.mockReturnValue({
params: { position: positionWithLoss },
});
usePerpsLivePositionsMock.mockReturnValue({
positions: [positionWithLoss],
isInitialLoading: false,
});
// Act
const { getByText } = renderWithProvider(
<PerpsClosePositionView />,
{
state: STATE_MOCK,
},
true,
);
// Assert - Now uses actual unrealizedPnl from position
// Look for negative P&L display (with - sign) - should show 150 (absolute value)
const pnlElement = getByText(/-.*150/);
expect(pnlElement).toBeDefined();
});
});
describe('Event Tracking', () => {
it('tracks screen view event on mount', () => {
// Arrange
const track = jest.fn();
// Set up mock to handle both imperative and declarative API calls
usePerpsEventTrackingMock.mockImplementation(
(options?: {
eventName?: string;
properties?: Record<string, unknown>;
}) => {
// If options are provided (declarative API), call track immediately to simulate useEffect
if (options?.eventName) {
track(options.eventName, options.properties || {});
}
// Always return the track function for imperative usage
return { track };
},
);
// Act
renderWithProvider(
<PerpsClosePositionView />,
{
state: STATE_MOCK,
},
true,
);
// Assert - Verify track was called (specific params depend on MetaMetricsEvents enum)
expect(track).toHaveBeenCalled();
});
});
describe('Live Price Updates', () => {
it('uses live price data when available', () => {
// Arrange
const livePrices = {
BTC: { price: '50000' },
};
usePerpsLivePricesMock.mockReturnValue(livePrices);
// Act
renderWithProvider(
<PerpsClosePositionView />,
{
state: STATE_MOCK,
},
true,
);
// Assert
expect(usePerpsLivePricesMock).toHaveBeenCalledWith(
expect.objectContaining({
symbols: expect.arrayContaining([defaultPerpsPositionMock.symbol]),
throttleMs: 1000,
}),
);
});
it('falls back to entry price when live price unavailable', () => {
// Arrange
usePerpsLivePricesMock.mockReturnValue({});
// Act
const { queryByTestId } = renderWithProvider(
<PerpsClosePositionView />,
{
state: STATE_MOCK,
},
true,
);
// Assert - Component should render without crashing
expect(
queryByTestId(
PerpsClosePositionViewSelectorsIDs.CLOSE_POSITION_CONFIRM_BUTTON,
),
).toBeDefined();
});
});
describe('Partial Close', () => {
it('defaults to 100% close percentage', () => {
// Arrange & Act
const { getByText } = renderWithProvider(
<PerpsClosePositionView />,
{
state: STATE_MOCK,
},
true,
);
// Assert - The component should show full position details
expect(
getByText(strings('perps.close_position.you_receive')),
).toBeDefined();
});
it('validates minimum order amount for partial close', () => {
// Arrange
const validationWithMinimumError = {
isValid: false,
errors: [
strings('perps.order.validation.minimum_amount', {
amount: '$10',
}),
],
warnings: [],
};
usePerpsClosePositionValidationMock.mockReturnValue(
validationWithMinimumError,
);
// Act
const { getByText } = renderWithProvider(
<PerpsClosePositionView />,
{
state: STATE_MOCK,
},
true,
);
// Assert
expect(
getByText(
strings('perps.order.validation.minimum_amount', {
amount: '$10',
}),
),
).toBeDefined();
});
it('calculates receive amount correctly for different percentages', () => {
// Arrange
const mockPosition = {
...defaultPerpsPositionMock,
marginUsed: '1000', // $1000 margin
unrealizedPnl: '150', // $150 profit (not included in receive)
size: '10',
};
useRouteMock.mockReturnValue({
params: { position: mockPosition },
});
// Test different close percentages
const testCases = [
{ percentage: 100, expectedMargin: 1000, fee: 20 }, // Full close
{ percentage: 50, expectedMargin: 500, fee: 10 }, // Half close
{ percentage: 25, expectedMargin: 250, fee: 5 }, // Quarter close
];
testCases.forEach(({ fee }) => {
// Mock fees for this percentage
usePerpsOrderFeesMock.mockReturnValue({
totalFee: fee,
metamaskFeeRate: 0.5,
protocolFeeRate: 0.5,
});
// Act
const { getByText } = renderWithProvider(
<PerpsClosePositionView />,
{
state: STATE_MOCK,
},
true,
);
// Assert - receiveAmount = expectedMargin - fee (P&L not included)
expect(
getByText(strings('perps.close_position.you_receive')),
).toBeDefined();
// The actual calculation: (percentage/100) * marginUsed - totalFee
// For 100%: 1000 - 20 = 980
// For 50%: 500 - 10 = 490
// For 25%: 250 - 5 = 245
});
});
it('handles partial close with clamped values', () => {
// Arrange
const mockPosition = {
...defaultPerpsPositionMock,
size: '5', // 5 tokens max
entryPrice: '200', // $200 per token
marginUsed: '300',
unrealizedPnl: '50',
};
useRouteMock.mockReturnValue({
params: { position: mockPosition },
});
usePerpsOrderFeesMock.mockReturnValue({
totalFee: 15,
metamaskFeeRate: 0.5,
protocolFeeRate: 0.5,
});
// Act
const { getByText } = renderWithProvider(
<PerpsClosePositionView />,
{
state: STATE_MOCK,
},
true,
);
// Assert
expect(
getByText(strings('perps.close_position.you_receive')),
).toBeDefined();
// With 100% close: receiveAmount = 300 - 15 = 285
// Any input exceeding position limits should be clamped appropriately
});
});
describe('Additional Coverage - Input & Error Filtering', () => {
it('updates close percentage via percentage buttons and UI responds correctly', async () => {
// Arrange
const track = jest.fn();
usePerpsEventTrackingMock.mockImplementation(
(options?: {
eventName?: string;
properties?: Record<string, unknown>;
}) => {
// If options are provided (declarative API), call track immediately to simulate useEffect
if (options?.eventName) {
track(options.eventName, options.properties || {});
}
// Always return the track function for imperative usage
return { track };