-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Expand file tree
/
Copy pathusePredictRewards.test.ts
More file actions
425 lines (370 loc) · 14.2 KB
/
usePredictRewards.test.ts
File metadata and controls
425 lines (370 loc) · 14.2 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
import { renderHook, waitFor } from '@testing-library/react-native';
import { useSelector } from 'react-redux';
import { usePredictRewards } from './usePredictRewards';
import utils, { type CaipAccountId } from '@metamask/utils';
import Engine from '../../../../core/Engine';
import Logger from '../../../../util/Logger';
import { getFormattedAddressFromInternalAccount } from '../../../../core/Multichain/utils';
import {
POLYGON_MAINNET_CAIP_CHAIN_ID,
POLYGON_PUSD_CAIP_ASSET_ID,
} from '../providers/polymarket/constants';
jest.mock('react-redux', () => ({
useSelector: jest.fn(),
}));
jest.mock('../../../../selectors/multichainAccounts/accounts', () => ({
selectSelectedInternalAccountByScope: jest.fn(),
}));
jest.mock('../../../../core/Multichain/utils', () => ({
getFormattedAddressFromInternalAccount: jest.fn(),
}));
jest.mock('../../../../core/Engine', () => ({
controllerMessenger: {
call: jest.fn(),
subscribe: jest.fn(),
unsubscribe: jest.fn(),
},
}));
jest.mock('../../../../util/Logger', () => ({
error: jest.fn(),
}));
jest.mock('@metamask/utils', () => ({
toCaipAccountId: jest.fn(),
parseCaipChainId: jest.fn(),
}));
jest.mock('../constants/errors', () => ({
PREDICT_CONSTANTS: {
FEATURE_NAME: 'Predict',
},
}));
jest.mock('../providers/polymarket/constants', () => ({
POLYGON_MAINNET_CAIP_CHAIN_ID: 'eip155:137',
POLYGON_PUSD_CAIP_ASSET_ID:
'eip155:137/erc20:0xC011a7E12a19f7B1f670d46F03B03f3342E82DFB',
COLLATERAL_TOKEN_DECIMALS: 6,
}));
// Don't mock ensureError - use the real implementation
jest.mock('../utils/predictErrorHandler', () => {
const actual = jest.requireActual('../utils/predictErrorHandler');
return {
ensureError: actual.ensureError,
};
});
// Mock ethers parseUnits
jest.mock('ethers/lib/utils', () => ({
parseUnits: jest.fn((value: string, decimals: number) => {
const num = parseFloat(value);
const multiplier = Math.pow(10, decimals);
return {
toString: () => (num * multiplier).toString(),
};
}),
}));
describe('usePredictRewards', () => {
const mockUseSelector = useSelector as jest.MockedFunction<
typeof useSelector
>;
const mockControllerMessengerCall = Engine.controllerMessenger
.call as jest.MockedFunction<typeof Engine.controllerMessenger.call>;
const mockControllerMessengerSubscribe = Engine.controllerMessenger
.subscribe as jest.MockedFunction<
typeof Engine.controllerMessenger.subscribe
>;
const mockLoggerError = Logger.error as jest.MockedFunction<
typeof Logger.error
>;
const mockParseCaipChainId = utils.parseCaipChainId as jest.MockedFunction<
typeof utils.parseCaipChainId
>;
const mockToCaipAccountId = utils.toCaipAccountId as jest.MockedFunction<
typeof utils.toCaipAccountId
>;
const mockGetFormattedAddressFromInternalAccount =
getFormattedAddressFromInternalAccount as jest.MockedFunction<
typeof getFormattedAddressFromInternalAccount
>;
const mockAddress = '0x1234567890123456789012345678901234567890';
const mockCaipAccount =
'eip155:137:0x1234567890123456789012345678901234567890' as CaipAccountId;
const mockInternalAccount = {
id: 'account-1',
address: mockAddress,
name: 'Test Account',
type: 'eip155:eoa',
scopes: [POLYGON_MAINNET_CAIP_CHAIN_ID],
metadata: {},
};
beforeEach(() => {
jest.clearAllMocks();
// Mock selector to return a function that returns the account
mockUseSelector.mockReturnValue((scope: string) => {
if (scope === POLYGON_MAINNET_CAIP_CHAIN_ID) {
return mockInternalAccount;
}
return undefined;
});
mockGetFormattedAddressFromInternalAccount.mockReturnValue(mockAddress);
mockParseCaipChainId.mockReturnValue({
namespace: 'eip155',
reference: '137',
});
mockToCaipAccountId.mockReturnValue(mockCaipAccount);
});
afterEach(() => {
jest.resetAllMocks();
});
describe('when rewards are enabled and account has opted in', () => {
it('returns enabled true, estimated points, and subscribes to accountLinked event', async () => {
// Arrange
const mockEstimatedPoints = 100;
mockControllerMessengerCall
.mockResolvedValueOnce(true) // hasActiveSeason
.mockResolvedValueOnce('subscription-1') // getCandidateSubscriptionId
.mockResolvedValueOnce(true) // getHasAccountOptedIn
.mockResolvedValueOnce({
pointsEstimate: mockEstimatedPoints,
}); // estimatePoints
// Act
const { result } = renderHook(() => usePredictRewards(10.5));
// Assert - initial state
expect(result.current.isLoading).toBe(true);
expect(result.current.enabled).toBe(false);
expect(result.current.accountOptedIn).toBe(null);
expect(result.current.shouldShowRewardsRow).toBe(false);
expect(result.current.estimatedPoints).toBe(null);
expect(result.current.hasError).toBe(false);
// Assert - final state
await waitFor(() => {
expect(result.current.isLoading).toBe(false);
expect(result.current.estimatedPoints).toBe(mockEstimatedPoints);
});
expect(result.current.enabled).toBe(true);
expect(result.current.accountOptedIn).toBe(true);
expect(result.current.shouldShowRewardsRow).toBe(true);
expect(result.current.hasError).toBe(false);
expect(result.current.rewardsAccountScope).toEqual(mockInternalAccount);
// Verify controller calls
expect(mockControllerMessengerCall).toHaveBeenCalledWith(
'RewardsController:hasActiveSeason',
);
expect(mockControllerMessengerCall).toHaveBeenCalledWith(
'RewardsController:getCandidateSubscriptionId',
);
expect(mockControllerMessengerCall).toHaveBeenCalledWith(
'RewardsController:getHasAccountOptedIn',
mockCaipAccount,
);
expect(mockControllerMessengerCall).toHaveBeenCalledWith(
'RewardsController:estimatePoints',
expect.objectContaining({
activityType: 'PREDICT',
account: mockCaipAccount,
activityContext: {
predictContext: {
feeAsset: {
id: POLYGON_PUSD_CAIP_ASSET_ID,
amount: expect.any(String),
},
},
},
}),
);
// Verify subscription
expect(mockControllerMessengerSubscribe).toHaveBeenCalledWith(
'RewardsController:accountLinked',
expect.any(Function),
);
});
});
describe('when there is no active season', () => {
it('returns enabled false and stops checking', async () => {
// Arrange
mockControllerMessengerCall.mockResolvedValueOnce(false);
// Act
const { result } = renderHook(() => usePredictRewards(10.5));
// Assert
await waitFor(() => {
expect(result.current.isLoading).toBe(false);
});
expect(result.current.enabled).toBe(false);
expect(result.current.accountOptedIn).toBe(null);
expect(result.current.shouldShowRewardsRow).toBe(false);
expect(result.current.estimatedPoints).toBe(null);
expect(result.current.rewardsAccountScope).toEqual(mockInternalAccount);
expect(mockControllerMessengerCall).toHaveBeenCalledTimes(1);
expect(mockControllerMessengerCall).toHaveBeenCalledWith(
'RewardsController:hasActiveSeason',
);
});
});
describe('when no subscription exists', () => {
it('returns enabled false when getCandidateSubscriptionId returns null', async () => {
// Arrange
mockControllerMessengerCall
.mockResolvedValueOnce(true) // hasActiveSeason
.mockResolvedValueOnce(null); // getCandidateSubscriptionId
// Act
const { result } = renderHook(() => usePredictRewards(10.5));
// Assert
await waitFor(() => {
expect(result.current.isLoading).toBe(false);
});
expect(result.current.enabled).toBe(false);
expect(result.current.accountOptedIn).toBe(null);
expect(result.current.shouldShowRewardsRow).toBe(false);
expect(result.current.estimatedPoints).toBe(null);
expect(result.current.hasError).toBe(false);
expect(result.current.rewardsAccountScope).toEqual(mockInternalAccount);
expect(mockControllerMessengerCall).toHaveBeenCalledTimes(2);
});
});
describe('when account has not opted in', () => {
it('returns enabled based on opt-in support and does not estimate points', async () => {
// Arrange
mockControllerMessengerCall
.mockResolvedValueOnce(true) // hasActiveSeason
.mockResolvedValueOnce('subscription-1') // getCandidateSubscriptionId
.mockResolvedValueOnce(false) // getHasAccountOptedIn
.mockResolvedValueOnce(true); // isOptInSupported
// Act
const { result } = renderHook(() => usePredictRewards(10.5));
// Assert
await waitFor(() => {
expect(result.current.isLoading).toBe(false);
});
expect(result.current.enabled).toBe(true);
expect(result.current.accountOptedIn).toBe(false);
expect(result.current.shouldShowRewardsRow).toBe(true);
expect(result.current.estimatedPoints).toBe(null);
expect(result.current.hasError).toBe(false);
expect(result.current.rewardsAccountScope).toEqual(mockInternalAccount);
expect(mockControllerMessengerCall).toHaveBeenCalledWith(
'RewardsController:isOptInSupported',
mockInternalAccount,
);
expect(mockControllerMessengerCall).not.toHaveBeenCalledWith(
'RewardsController:estimatePoints',
expect.anything(),
);
});
it('returns enabled false when opt-in is not supported', async () => {
// Arrange
mockControllerMessengerCall
.mockResolvedValueOnce(true) // hasActiveSeason
.mockResolvedValueOnce('subscription-1') // getCandidateSubscriptionId
.mockResolvedValueOnce(false) // getHasAccountOptedIn
.mockResolvedValueOnce(false); // isOptInSupported
// Act
const { result } = renderHook(() => usePredictRewards(10.5));
// Assert
await waitFor(() => {
expect(result.current.isLoading).toBe(false);
});
expect(result.current.enabled).toBe(false);
expect(result.current.accountOptedIn).toBe(false);
expect(result.current.shouldShowRewardsRow).toBe(false);
expect(result.current.estimatedPoints).toBe(null);
expect(result.current.rewardsAccountScope).toEqual(mockInternalAccount);
});
});
describe('when selected account is missing', () => {
it('returns enabled false and isLoading false without calling controller', async () => {
// Arrange
mockUseSelector.mockReturnValue(() => undefined);
// Act
const { result } = renderHook(() => usePredictRewards(10.5));
// Assert
await waitFor(() => {
expect(result.current.isLoading).toBe(false);
});
expect(result.current.enabled).toBe(false);
expect(result.current.accountOptedIn).toBe(null);
expect(result.current.shouldShowRewardsRow).toBe(false);
expect(result.current.estimatedPoints).toBe(null);
expect(result.current.rewardsAccountScope).toBe(null);
expect(mockControllerMessengerCall).not.toHaveBeenCalled();
});
});
describe('when CAIP-10 formatting fails', () => {
it('returns enabled false and logs error with proper context', async () => {
// Arrange
const mockError = new Error('Invalid chain ID');
mockParseCaipChainId.mockImplementation(() => {
throw mockError;
});
mockControllerMessengerCall.mockResolvedValueOnce(true); // hasActiveSeason
mockControllerMessengerCall.mockResolvedValueOnce('subscription-1'); // getCandidateSubscriptionId
// Act
const { result } = renderHook(() => usePredictRewards(10.5));
// Assert
await waitFor(() => {
expect(result.current.isLoading).toBe(false);
});
expect(result.current.enabled).toBe(false);
expect(result.current.accountOptedIn).toBe(null);
expect(result.current.shouldShowRewardsRow).toBe(false);
expect(result.current.rewardsAccountScope).toEqual(mockInternalAccount);
expect(mockLoggerError).toHaveBeenCalledWith(
expect.objectContaining({ message: 'Invalid chain ID' }),
{
tags: {
feature: 'Predict',
component: 'usePredictRewards',
},
context: {
name: 'usePredictRewards',
data: {
method: 'formatAccountToCaipAccountId',
action: 'caip_formatting',
operation: 'account_formatting',
},
},
},
);
});
});
describe('when RewardsController call fails', () => {
it('returns hasError true and logs error with proper context', async () => {
// Arrange
const mockError = new Error('Network error');
mockControllerMessengerCall
.mockResolvedValueOnce(true) // hasActiveSeason
.mockResolvedValueOnce('subscription-1') // getCandidateSubscriptionId
.mockResolvedValueOnce(true) // getHasAccountOptedIn
.mockRejectedValueOnce(mockError); // estimatePoints
// Suppress console.error for this test since we expect an error to be thrown
const consoleErrorSpy = jest
.spyOn(console, 'error')
.mockImplementation(() => {
// Suppress error output
});
// Act
const { result } = renderHook(() => usePredictRewards(10.5));
// Assert
await waitFor(() => {
expect(result.current.isLoading).toBe(false);
expect(result.current.hasError).toBe(true);
});
expect(result.current.enabled).toBe(true);
expect(result.current.accountOptedIn).toBe(true);
expect(result.current.shouldShowRewardsRow).toBe(true);
expect(result.current.estimatedPoints).toBe(null);
expect(result.current.rewardsAccountScope).toEqual(mockInternalAccount);
expect(mockLoggerError).toHaveBeenCalledWith(expect.any(Error), {
tags: {
feature: 'Predict',
component: 'usePredictRewards',
},
context: {
name: 'usePredictRewards',
data: {
method: 'estimatePoints',
action: 'rewards_estimation',
operation: 'points_estimation',
},
},
});
consoleErrorSpy.mockRestore();
});
});
});