-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Expand file tree
/
Copy pathRewardsNavigator.test.tsx
More file actions
1211 lines (1030 loc) · 38.3 KB
/
RewardsNavigator.test.tsx
File metadata and controls
1211 lines (1030 loc) · 38.3 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 React from 'react';
import { act, render, waitFor } from '@testing-library/react-native';
import { Provider } from 'react-redux';
import { NavigationContainer } from '@react-navigation/native';
import { createStackNavigator } from '@react-navigation/stack';
import { configureStore } from '@reduxjs/toolkit';
import RewardsNavigator from './RewardsNavigator';
import Routes from '../../../constants/navigation/Routes';
import { OnboardingStep } from '../../../actions/rewards';
// Mock Engine
jest.mock('../../../core/Engine', () => ({
controllerMessenger: {
call: jest.fn(),
},
}));
// Mock dependencies
jest.mock('./hooks/useOptIn');
jest.mock('./OnboardingNavigator', () => {
const ReactActual = jest.requireActual('react');
const { View, Text } = jest.requireActual('react-native');
return function MockOnboardingNavigator() {
return ReactActual.createElement(
View,
{ testID: 'rewards-onboarding-navigator' },
ReactActual.createElement(Text, null, 'Onboarding Navigator'),
);
};
});
jest.mock('./Views/RewardsDashboard', () => {
const ReactActual = jest.requireActual('react');
const { View, Text } = jest.requireActual('react-native');
return function MockRewardsDashboard() {
return ReactActual.createElement(
View,
{ testID: 'rewards-dashboard-view' },
ReactActual.createElement(Text, null, 'Rewards Dashboard'),
);
};
});
jest.mock('./Views/RewardsReferralView', () => {
const ReactActual = jest.requireActual('react');
const { View, Text } = jest.requireActual('react-native');
return function MockReferralRewardsView() {
return ReactActual.createElement(
View,
{ testID: 'rewards-referral-view' },
ReactActual.createElement(Text, null, 'Referral Rewards View'),
);
};
});
jest.mock('./Views/RewardsSettingsView', () => {
const ReactActual = jest.requireActual('react');
const { View, Text } = jest.requireActual('react-native');
return function MockRewardsSettingsView() {
return ReactActual.createElement(
View,
{ testID: 'rewards-settings-view' },
ReactActual.createElement(Text, null, 'Rewards Settings View'),
);
};
});
jest.mock('./Views/CampaignTourStepView', () => {
const ReactActual = jest.requireActual('react');
const { View, Text } = jest.requireActual('react-native');
return function MockCampaignTourStepView() {
return ReactActual.createElement(
View,
{ testID: 'campaign-tour-step-view' },
ReactActual.createElement(Text, null, 'Campaign Tour Step View'),
);
};
});
jest.mock('./Views/OndoCampaignDetailsView', () => {
const ReactActual = jest.requireActual('react');
const { View, Text } = jest.requireActual('react-native');
return function MockOndoCampaignDetailsView() {
return ReactActual.createElement(
View,
{ testID: 'campaign-details-view' },
ReactActual.createElement(Text, null, 'Campaign Details View'),
);
};
});
jest.mock('./Views/OndoCampaignRwaSelectorView', () => {
const ReactActual = jest.requireActual('react');
const { View, Text } = jest.requireActual('react-native');
return function MockOndoCampaignRwaSelectorView() {
return ReactActual.createElement(
View,
{ testID: 'ondo-campaign-rwa-selector-view' },
ReactActual.createElement(Text, null, 'Ondo Campaign RWA Selector View'),
);
};
});
jest.mock('./Views/SeasonOneCampaignDetailsView', () => {
const ReactActual = jest.requireActual('react');
const { View, Text } = jest.requireActual('react-native');
return function MockSeasonOneCampaignDetailsView() {
return ReactActual.createElement(
View,
{ testID: 'season-one-campaign-details-view' },
ReactActual.createElement(Text, null, 'Season One Campaign Details View'),
);
};
});
jest.mock('./Views/CampaignMechanicsView', () => {
const ReactActual = jest.requireActual('react');
const { View, Text } = jest.requireActual('react-native');
return function MockCampaignMechanicsView() {
return ReactActual.createElement(
View,
{ testID: 'campaign-mechanics-view' },
ReactActual.createElement(Text, null, 'Campaign Mechanics View'),
);
};
});
// Mock Skeleton component
jest.mock(
'../../../component-library/components-temp/Skeleton/Skeleton',
() => {
const ReactActual = jest.requireActual('react');
const { View } = jest.requireActual('react-native');
return function MockSkeleton({
width,
height,
}: {
width: string;
height: string;
}) {
return ReactActual.createElement(View, {
testID: 'skeleton-loader',
style: { width, height },
});
};
},
);
// Mock ErrorBoundary
jest.mock('../../Views/ErrorBoundary', () => ({
__esModule: true,
default: function MockErrorBoundary({
children,
}: {
children: React.ReactNode;
}) {
return children;
},
}));
// Mock theme
jest.mock('../../../util/theme', () => {
const { mockTheme } = jest.requireActual('../../../util/theme');
return {
useTheme: () => mockTheme,
};
});
// Mock getNavigationOptionsTitle
jest.mock('../Navbar', () => ({
getNavigationOptionsTitle: jest.fn(() => ({ title: 'Rewards' })),
}));
// Mock i18n
jest.mock('../../../../locales/i18n', () => ({
strings: jest.fn((key: string) => {
const translations: Record<string, string> = {
'rewards.main_title': 'Rewards',
'rewards.auth_fail_title': 'Authentication failed',
'rewards.auth_fail_description': 'Please try again later',
'navigation.back': 'Back',
};
return translations[key] || key;
}),
}));
jest.mock('../../../selectors/rewards', () => ({
selectRewardsSubscriptionId: jest.fn(),
}));
jest.mock('../../../reducers/rewards/selectors', () => ({
selectIsRewardsVersionBlocked: jest.fn(),
selectPendingDeeplink: jest.fn(),
}));
// Mock react-navigation/native hooks
const mockNavigate = jest.fn();
const mockSetOptions = jest.fn();
const mockSetParams = jest.fn();
const mockIsFocused = jest.fn();
const mockReactReduxDispatch = jest.fn();
const mockUseNavigationState = jest.fn(
(selector: (state: unknown) => unknown): unknown =>
selector({ routes: [{}], index: 0 }),
);
jest.mock('@react-navigation/native', () => {
const actual = jest.requireActual('@react-navigation/native');
return {
...actual,
useNavigation: () => ({
navigate: mockNavigate,
setOptions: mockSetOptions,
setParams: mockSetParams,
}),
useIsFocused: () => mockIsFocused(),
useNavigationState: (selector: (state: unknown) => unknown) =>
mockUseNavigationState(selector),
};
});
jest.mock('react-redux', () => {
const actual = jest.requireActual('react-redux');
return {
...actual,
useDispatch: () => mockReactReduxDispatch,
};
});
// Mock useCandidateSubscriptionId hook
jest.mock('./hooks/useCandidateSubscriptionId', () => ({
useCandidateSubscriptionId: jest.fn(),
}));
// Mock useRewardCampaigns hook
jest.mock('./hooks/useRewardCampaigns', () => ({
useRewardCampaigns: jest.fn(),
}));
// Mock useSeasonStatus hook
jest.mock('./hooks/useSeasonStatus', () => ({
useSeasonStatus: jest.fn(),
}));
// Mock useGeoRewardsMetadata hook
jest.mock('./hooks/useGeoRewardsMetadata', () => ({
useGeoRewardsMetadata: jest.fn(),
}));
// Mock useReferralDetails hook
jest.mock('./hooks/useReferralDetails', () => ({
useReferralDetails: jest.fn().mockReturnValue({
fetchReferralDetails: jest.fn(),
}),
}));
// Mock useRewardsNotificationsNudge hook
const mockShowEnableNotificationsNudge = jest.fn(() => false);
const mockCloseEnableNotificationsNudge = jest.fn();
jest.mock('./hooks/useRewardsNotificationsNudge', () => ({
useRewardsNotificationsNudge: jest.fn(() => ({
areNotificationsEnabled: true,
canPromptToEnableNotifications: false,
shouldPromptToEnableNotifications: false,
showEnableNotificationsNudge: mockShowEnableNotificationsNudge,
closeEnableNotificationsNudge: mockCloseEnableNotificationsNudge,
runAfterNotificationsEnabled: jest.fn(),
})),
}));
// Mock useRewardsToast hook
const mockNavigatorShowToast = jest.fn();
const mockSuccessToast = jest.fn(() => ({ variant: 'success' }));
jest.mock('./hooks/useRewardsToast', () => ({
__esModule: true,
default: jest.fn(() => ({
showToast: mockNavigatorShowToast,
RewardsToastOptions: {
success: mockSuccessToast,
error: jest.fn(),
loading: jest.fn(),
entriesClosed: jest.fn(),
enableNotificationsNudge: jest.fn(),
outcomeWinner: jest.fn(),
outcomeNonWinner: jest.fn(),
},
})),
}));
// Mock useRewardsVersionGuard hook
jest.mock('./hooks/useRewardsVersionGuard', () => ({
__esModule: true,
default: jest.fn().mockReturnValue({ fetchVersionRequirements: jest.fn() }),
}));
// Mock RewardsUpdateRequired component
jest.mock('./components/RewardsUpdateRequired/RewardsUpdateRequired', () => {
const ReactActual = jest.requireActual('react');
const { View, Text } = jest.requireActual('react-native');
return {
__esModule: true,
default: function MockRewardsUpdateRequired() {
return ReactActual.createElement(
View,
{ testID: 'rewards-update-required' },
ReactActual.createElement(Text, null, 'Update Required'),
);
},
};
});
// Import mocked selectors and hooks for setup
import { selectRewardsSubscriptionId } from '../../../selectors/rewards';
import {
selectIsRewardsVersionBlocked,
selectPendingDeeplink,
} from '../../../reducers/rewards/selectors';
import { setPendingDeeplink } from '../../../reducers/rewards';
import { useSeasonStatus } from './hooks/useSeasonStatus';
import { useGeoRewardsMetadata } from './hooks/useGeoRewardsMetadata';
import { useRewardsNotificationsNudge } from './hooks/useRewardsNotificationsNudge';
const mockSelectRewardsSubscriptionId =
selectRewardsSubscriptionId as jest.MockedFunction<
typeof selectRewardsSubscriptionId
>;
const mockSelectIsRewardsVersionBlocked =
selectIsRewardsVersionBlocked as jest.MockedFunction<
typeof selectIsRewardsVersionBlocked
>;
const mockSelectPendingDeeplink = selectPendingDeeplink as jest.MockedFunction<
typeof selectPendingDeeplink
>;
const mockUseSeasonStatus = useSeasonStatus as jest.MockedFunction<
typeof useSeasonStatus
>;
const mockUseGeoRewardsMetadata = useGeoRewardsMetadata as jest.MockedFunction<
typeof useGeoRewardsMetadata
>;
const mockUseRewardsNotificationsNudge =
useRewardsNotificationsNudge as jest.MockedFunction<
typeof useRewardsNotificationsNudge
>;
describe('RewardsNavigator', () => {
let store: ReturnType<typeof configureStore>;
const Stack = createStackNavigator();
beforeEach(() => {
jest.clearAllMocks();
// Set default mock return values
mockSelectRewardsSubscriptionId.mockReturnValue(null);
mockSelectPendingDeeplink.mockReturnValue(null);
mockUseSeasonStatus.mockReturnValue({
fetchSeasonStatus: jest.fn(),
});
mockUseGeoRewardsMetadata.mockReturnValue({
fetchGeoRewardsMetadata: jest.fn(),
});
mockSelectIsRewardsVersionBlocked.mockReturnValue(false);
// Create a mock store
store = configureStore({
reducer: {
rewards: (
state = {
onboardingActiveStep: OnboardingStep.INTRO,
candidateSubscriptionId: null,
},
) => state,
engine: (
state = {
backgroundState: {
AccountsController: {
internalAccounts: {
selectedAccount: 'test-account-id',
accounts: {
'test-account-id': {
id: 'test-account-id',
address: '0x123',
},
},
},
},
RewardsController: {
activeAccount: null,
},
},
},
) => state,
},
});
// Default to focused
mockIsFocused.mockReturnValue(true);
});
const buildNavWrapper = (component: React.ReactElement) => (
<Provider store={store}>
<NavigationContainer>
<Stack.Navigator>
<Stack.Screen name="Test">{() => component}</Stack.Screen>
</Stack.Navigator>
</NavigationContainer>
</Provider>
);
const renderWithNavigation = (component: React.ReactElement) =>
render(buildNavWrapper(component));
describe('Initial route determination', () => {
beforeEach(() => {
mockIsFocused.mockReturnValue(true);
});
it('returns dashboard route when subscription ID exists', () => {
// Arrange
mockSelectRewardsSubscriptionId.mockReturnValue('test-subscription-id');
// Act
renderWithNavigation(<RewardsNavigator />);
// Assert - The component should use REWARDS_DASHBOARD as initial route
// This is tested indirectly through the navigation behavior
expect(true).toBe(true); // Component renders without error
});
it('returns onboarding flow route when subscription ID is null', () => {
// Arrange
mockSelectRewardsSubscriptionId.mockReturnValue(null);
// Act
renderWithNavigation(<RewardsNavigator />);
// Assert - The component should use REWARDS_ONBOARDING_FLOW as initial route
// This is tested indirectly through the navigation behavior
expect(true).toBe(true); // Component renders without error
});
it('renders dashboard when subscription ID is available', async () => {
// Arrange
mockSelectRewardsSubscriptionId.mockReturnValue('test-subscription-id');
// Act
const { getByTestId } = renderWithNavigation(<RewardsNavigator />);
// Assert
await waitFor(() => {
expect(getByTestId('rewards-dashboard-view')).toBeOnTheScreen();
});
});
it('renders onboarding when subscription ID is not available', async () => {
// Arrange
mockSelectRewardsSubscriptionId.mockReturnValue(null);
// Act
const { getByTestId } = renderWithNavigation(<RewardsNavigator />);
// Assert
await waitFor(() => {
expect(getByTestId('rewards-onboarding-navigator')).toBeOnTheScreen();
});
});
});
describe('Navigation routing logic', () => {
beforeEach(() => {
mockIsFocused.mockReturnValue(true);
});
it('navigates to dashboard when subscription ID exists', async () => {
// Arrange
mockSelectRewardsSubscriptionId.mockReturnValue('test-subscription-id');
// Reset navigate mock to track calls
mockNavigate.mockClear();
// Act
renderWithNavigation(<RewardsNavigator />);
// Assert
await waitFor(() => {
expect(mockNavigate).toHaveBeenCalledWith(Routes.REWARDS_DASHBOARD);
});
});
it('navigates to onboarding flow when subscription ID is null', async () => {
// Arrange
mockSelectRewardsSubscriptionId.mockReturnValue(null);
// Reset navigate mock to track calls
mockNavigate.mockClear();
// Act
renderWithNavigation(<RewardsNavigator />);
// Assert
await waitFor(() => {
expect(mockNavigate).toHaveBeenCalledWith(
Routes.REWARDS_ONBOARDING_FLOW,
);
});
});
it('navigates to onboarding flow when subscription ID is undefined', async () => {
// Arrange
mockSelectRewardsSubscriptionId.mockReturnValue(null);
// Reset navigate mock to track calls
mockNavigate.mockClear();
// Act
renderWithNavigation(<RewardsNavigator />);
// Assert
await waitFor(() => {
expect(mockNavigate).toHaveBeenCalledWith(
Routes.REWARDS_ONBOARDING_FLOW,
);
});
});
});
describe('Stack Navigator Configuration', () => {
it('includes onboarding route for users without subscription', async () => {
// Arrange
mockSelectRewardsSubscriptionId.mockReturnValue(null);
// Act
const { getByTestId } = renderWithNavigation(<RewardsNavigator />);
// Assert
await waitFor(() => {
expect(getByTestId('rewards-onboarding-navigator')).toBeOnTheScreen();
});
});
it('includes dashboard and other routes only for users with subscription', async () => {
// Arrange
mockSelectRewardsSubscriptionId.mockReturnValue('test-subscription-id');
// Act
const { getByTestId } = renderWithNavigation(<RewardsNavigator />);
// Assert - Dashboard should be visible
await waitFor(() => {
expect(getByTestId('rewards-dashboard-view')).toBeOnTheScreen();
});
// The conditional routes (referral, settings) are only included in the navigator
// when subscriptionId exists, but they're not rendered initially
});
it('does not render dashboard routes when subscription ID is null', async () => {
// Arrange
mockSelectRewardsSubscriptionId.mockReturnValue(null);
// Act
const { queryByTestId } = renderWithNavigation(<RewardsNavigator />);
// Assert - Dashboard and related routes should not be available
await waitFor(() => {
expect(queryByTestId('rewards-dashboard-view')).toBeNull();
});
});
it('registers ONDO_CAMPAIGN_DETAILS_VIEW and CAMPAIGN_MECHANICS routes when subscription exists', async () => {
// Both views are registered inside the subscriptionId-guarded block,
// so they are present in the navigator only when the user is enrolled.
mockSelectRewardsSubscriptionId.mockReturnValue('test-subscription-id');
// Rendering should not throw even with the new screens registered
const { getByTestId } = renderWithNavigation(<RewardsNavigator />);
await waitFor(() => {
expect(getByTestId('rewards-dashboard-view')).toBeOnTheScreen();
});
});
it('registers REWARDS_ONDO_CAMPAIGN_RWA_ASSET_SELECTOR route when subscription exists', async () => {
// The RWA selector screen is registered inside the subscriptionId-guarded block
mockSelectRewardsSubscriptionId.mockReturnValue('test-subscription-id');
// Rendering should not throw with the new screen registered
const { getByTestId } = renderWithNavigation(<RewardsNavigator />);
await waitFor(() => {
expect(getByTestId('rewards-dashboard-view')).toBeOnTheScreen();
});
});
it('registers REWARDS_CAMPAIGN_TOUR_STEP route when subscription exists', async () => {
// The campaign tour screen is registered inside the subscriptionId-guarded block
// so that navigate() from the tour to campaign details is a push (not a pop),
// keeping the slide-left direction consistent with the carousel animation.
mockSelectRewardsSubscriptionId.mockReturnValue('test-subscription-id');
const { getByTestId } = renderWithNavigation(<RewardsNavigator />);
await waitFor(() => {
expect(getByTestId('rewards-dashboard-view')).toBeOnTheScreen();
});
});
});
// Note: Removed AuthErrorView tests as they don't match the actual implementation
// The component appears to handle errors differently than originally tested
describe('Hooks integration', () => {
it('calls useCandidateSubscriptionId hook', () => {
// Act
renderWithNavigation(<RewardsNavigator />);
// Assert - The hook should be called during component render
// This is implicitly tested since the component renders successfully
expect(true).toBe(true);
});
it('calls useSeasonStatus hook with correct parameters', () => {
// Act
renderWithNavigation(<RewardsNavigator />);
// Assert
expect(mockUseSeasonStatus).toHaveBeenCalledWith({
onlyForExplicitFetch: false,
});
});
it('uses selectors for subscription state management', () => {
// Arrange
mockSelectRewardsSubscriptionId.mockClear();
// Act
renderWithNavigation(<RewardsNavigator />);
// Assert
expect(mockSelectRewardsSubscriptionId).toHaveBeenCalled();
});
it('renders without crashing with all hooks', () => {
// Act
const { getByTestId } = renderWithNavigation(<RewardsNavigator />);
// Assert - Just verify it renders with default subscription state
expect(getByTestId('rewards-onboarding-navigator')).toBeDefined();
});
it('calls useGeoRewardsMetadata hook', () => {
// Act
renderWithNavigation(<RewardsNavigator />);
// Assert
expect(mockUseGeoRewardsMetadata).toHaveBeenCalledWith({});
});
it('integrates useSeasonStatus hook properly', () => {
// Arrange
const mockFetchSeasonStatus = jest.fn();
mockUseSeasonStatus.mockReturnValue({
fetchSeasonStatus: mockFetchSeasonStatus,
});
// Act
renderWithNavigation(<RewardsNavigator />);
// Assert
expect(mockUseSeasonStatus).toHaveBeenCalledTimes(1);
expect(mockUseSeasonStatus).toHaveBeenCalledWith({
onlyForExplicitFetch: false,
});
});
});
describe('Deeplink navigation params', () => {
beforeEach(() => {
mockSelectRewardsSubscriptionId.mockReturnValue('test-subscription-id');
mockNavigate.mockClear();
mockReactReduxDispatch.mockClear();
});
it('navigates to campaigns view when pendingDeeplink.page=campaigns', async () => {
mockSelectPendingDeeplink.mockReturnValue({ page: 'campaigns' });
renderWithNavigation(<RewardsNavigator />);
await waitFor(() => {
expect(mockNavigate).toHaveBeenCalledWith(
Routes.REWARDS_CAMPAIGNS_VIEW,
);
});
});
it('navigates to ondo campaign when pendingDeeplink.campaign=ondo', async () => {
mockSelectPendingDeeplink.mockReturnValue({ campaign: 'ondo' });
renderWithNavigation(<RewardsNavigator />);
await waitFor(() => {
expect(mockNavigate).toHaveBeenCalledWith(
Routes.REWARDS_ONDO_CAMPAIGN_DETAILS_VIEW,
);
});
});
it('navigates to season1 campaign when pendingDeeplink.campaign=season1', async () => {
mockSelectPendingDeeplink.mockReturnValue({ campaign: 'season1' });
renderWithNavigation(<RewardsNavigator />);
await waitFor(() => {
expect(mockNavigate).toHaveBeenCalledWith(
Routes.REWARDS_SEASON_ONE_CAMPAIGN_DETAILS_VIEW,
);
});
});
it('navigates to musd calculator when pendingDeeplink.page=musd', async () => {
mockSelectPendingDeeplink.mockReturnValue({ page: 'musd' });
renderWithNavigation(<RewardsNavigator />);
await waitFor(() => {
expect(mockNavigate).toHaveBeenCalledWith(
Routes.REWARDS_MUSD_CALCULATOR_VIEW,
);
});
});
it('navigates to benefits full view when pendingDeeplink.page=benefits', async () => {
mockSelectPendingDeeplink.mockReturnValue({ page: 'benefits' });
renderWithNavigation(<RewardsNavigator />);
await waitFor(() => {
expect(mockNavigate).toHaveBeenCalledWith(
Routes.REWARD_BENEFITS_FULL_VIEW,
);
});
});
it('navigates to dashboard when pendingDeeplink is null', async () => {
mockSelectPendingDeeplink.mockReturnValue(null);
renderWithNavigation(<RewardsNavigator />);
await waitFor(() => {
expect(mockNavigate).toHaveBeenCalledWith(Routes.REWARDS_DASHBOARD);
});
});
it('dispatches setPendingDeeplink(null) after handling page deeplink', async () => {
mockSelectPendingDeeplink.mockReturnValue({ page: 'campaigns' });
renderWithNavigation(<RewardsNavigator />);
await waitFor(() => {
expect(mockReactReduxDispatch).toHaveBeenCalledWith(
setPendingDeeplink(null),
);
});
});
it('dispatches setPendingDeeplink(null) after handling campaign deeplink', async () => {
mockSelectPendingDeeplink.mockReturnValue({ campaign: 'ondo' });
renderWithNavigation(<RewardsNavigator />);
await waitFor(() => {
expect(mockReactReduxDispatch).toHaveBeenCalledWith(
setPendingDeeplink(null),
);
});
});
it('does not dispatch setPendingDeeplink when no deeplink is pending', async () => {
mockSelectPendingDeeplink.mockReturnValue(null);
renderWithNavigation(<RewardsNavigator />);
await waitFor(() => {
expect(mockNavigate).toHaveBeenCalledWith(Routes.REWARDS_DASHBOARD);
});
expect(mockReactReduxDispatch).not.toHaveBeenCalledWith(
setPendingDeeplink(null),
);
});
it('does not navigate to dashboard after pending deeplink is consumed', async () => {
// Regression: the useEffect re-fires when dispatch(setPendingDeeplink(null))
// changes the pendingDeeplink dep to null. Without the skipNextEffectRef guard
// it would fall through to navigate(REWARDS_DASHBOARD), overriding the
// deeplink destination.
mockSelectPendingDeeplink.mockReturnValue({ page: 'campaigns' });
const { rerender } = renderWithNavigation(<RewardsNavigator />);
await waitFor(() => {
expect(mockNavigate).toHaveBeenCalledWith(
Routes.REWARDS_CAMPAIGNS_VIEW,
);
});
// Simulate Redux clearing the pending deeplink (what happens after the
// real dispatch(setPendingDeeplink(null)) updates the store).
mockSelectPendingDeeplink.mockReturnValue(null);
mockNavigate.mockClear();
await act(async () => {
rerender(buildNavWrapper(<RewardsNavigator />));
});
// The skipNextEffectRef guard must prevent navigate(REWARDS_DASHBOARD).
expect(mockNavigate).not.toHaveBeenCalledWith(Routes.REWARDS_DASHBOARD);
});
});
describe('Version guard', () => {
it('renders RewardsUpdateRequired when version is blocked', () => {
mockSelectIsRewardsVersionBlocked.mockReturnValue(true);
const { getByTestId, queryByTestId } = renderWithNavigation(
<RewardsNavigator />,
);
expect(getByTestId('rewards-update-required')).toBeOnTheScreen();
expect(queryByTestId('rewards-onboarding-navigator')).toBeNull();
expect(queryByTestId('rewards-dashboard-view')).toBeNull();
});
it('does not navigate when version is blocked', async () => {
mockSelectIsRewardsVersionBlocked.mockReturnValue(true);
mockNavigate.mockClear();
renderWithNavigation(<RewardsNavigator />);
await waitFor(() => {
expect(mockNavigate).not.toHaveBeenCalled();
});
});
it('renders normal navigator when version is not blocked', async () => {
mockSelectIsRewardsVersionBlocked.mockReturnValue(false);
const { queryByTestId, getByTestId } = renderWithNavigation(
<RewardsNavigator />,
);
await waitFor(() => {
expect(queryByTestId('rewards-update-required')).toBeNull();
expect(getByTestId('rewards-onboarding-navigator')).toBeOnTheScreen();
});
});
});
describe('Notification nudge behavior', () => {
beforeEach(() => {
mockSelectRewardsSubscriptionId.mockReturnValue('test-subscription-id');
mockSelectPendingDeeplink.mockReturnValue(null);
mockSelectIsRewardsVersionBlocked.mockReturnValue(false);
mockUseSeasonStatus.mockReturnValue({ fetchSeasonStatus: jest.fn() });
mockUseGeoRewardsMetadata.mockReturnValue({
fetchGeoRewardsMetadata: jest.fn(),
});
});
it('does not show nudge when canPromptToEnableNotifications is false', async () => {
mockUseRewardsNotificationsNudge.mockReturnValue({
areNotificationsEnabled: false,
canPromptToEnableNotifications: false,
shouldPromptToEnableNotifications: false,
showEnableNotificationsNudge: mockShowEnableNotificationsNudge,
closeEnableNotificationsNudge: mockCloseEnableNotificationsNudge,
runAfterNotificationsEnabled: jest.fn(),
});
mockUseNavigationState.mockImplementation(
(selector: (state: unknown) => unknown) =>
selector({
routes: [
{
state: {
routes: [{ name: Routes.REWARDS_CAMPAIGNS_VIEW }],
index: 0,
},
},
],
index: 0,
}),
);
renderWithNavigation(<RewardsNavigator />);
await waitFor(() => expect(true).toBe(true));
expect(mockShowEnableNotificationsNudge).not.toHaveBeenCalled();
});
it('does not show nudge when notifications are already enabled', async () => {
mockUseRewardsNotificationsNudge.mockReturnValue({
areNotificationsEnabled: true,
canPromptToEnableNotifications: true,
shouldPromptToEnableNotifications: false,
showEnableNotificationsNudge: mockShowEnableNotificationsNudge,
closeEnableNotificationsNudge: mockCloseEnableNotificationsNudge,
runAfterNotificationsEnabled: jest.fn(),
});
mockUseNavigationState.mockImplementation(
(selector: (state: unknown) => unknown) =>
selector({
routes: [
{
state: {
routes: [{ name: Routes.REWARDS_CAMPAIGNS_VIEW }],
index: 0,
},
},
],
index: 0,
}),
);
renderWithNavigation(<RewardsNavigator />);
await waitFor(() => expect(true).toBe(true));
expect(mockShowEnableNotificationsNudge).not.toHaveBeenCalled();
});
it('does not show nudge when not on a campaign route', async () => {
mockUseRewardsNotificationsNudge.mockReturnValue({
areNotificationsEnabled: false,
canPromptToEnableNotifications: true,
shouldPromptToEnableNotifications: true,
showEnableNotificationsNudge: mockShowEnableNotificationsNudge,
closeEnableNotificationsNudge: mockCloseEnableNotificationsNudge,
runAfterNotificationsEnabled: jest.fn(),
});
mockUseNavigationState.mockImplementation(
(selector: (state: unknown) => unknown) =>
selector({
routes: [
{
state: {
routes: [{ name: Routes.REWARDS_DASHBOARD }],
index: 0,
},
},
],
index: 0,
}),
);
renderWithNavigation(<RewardsNavigator />);
await waitFor(() => expect(true).toBe(true));
expect(mockShowEnableNotificationsNudge).not.toHaveBeenCalled();
});
it('does not show nudge when showEnableNotificationsNudge returns false', async () => {
mockUseRewardsNotificationsNudge.mockReturnValue({
areNotificationsEnabled: false,
canPromptToEnableNotifications: true,
shouldPromptToEnableNotifications: true,
showEnableNotificationsNudge: mockShowEnableNotificationsNudge,
closeEnableNotificationsNudge: mockCloseEnableNotificationsNudge,
runAfterNotificationsEnabled: jest.fn(),
});
mockShowEnableNotificationsNudge.mockReturnValue(false);
mockUseNavigationState.mockImplementation(
(selector: (state: unknown) => unknown) =>
selector({
routes: [
{
state: {
routes: [{ name: Routes.REWARDS_CAMPAIGNS_VIEW }],
index: 0,
},
},
],
index: 0,
}),
);
renderWithNavigation(<RewardsNavigator />);
await waitFor(() => {
expect(mockShowEnableNotificationsNudge).toHaveBeenCalledTimes(1);
});
expect(mockCloseEnableNotificationsNudge).not.toHaveBeenCalled();
});
it('shows nudge on campaign route and closes it when navigating away', async () => {
mockUseRewardsNotificationsNudge.mockReturnValue({
areNotificationsEnabled: false,
canPromptToEnableNotifications: true,
shouldPromptToEnableNotifications: true,
showEnableNotificationsNudge: mockShowEnableNotificationsNudge,