-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathTransferModal.test.tsx
More file actions
546 lines (437 loc) · 17 KB
/
Copy pathTransferModal.test.tsx
File metadata and controls
546 lines (437 loc) · 17 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
import React from 'react';
import { ThemeProvider } from '@mui/material/styles';
import { AdapterLuxon } from '@mui/x-date-pickers/AdapterLuxon';
import { LocalizationProvider } from '@mui/x-date-pickers/LocalizationProvider';
import { render, waitFor, within } from '@testing-library/react';
import userEvent from '@testing-library/user-event';
import { DateTime } from 'luxon';
import { SnackbarProvider } from 'notistack';
import TestRouter from '__tests__/util/TestRouter';
import { GqlMockedProvider } from '__tests__/util/graphqlMocking';
import theme from 'src/theme';
import { StaffSavingFundProvider } from '../../StaffSavingFund/StaffSavingFundContext';
import {
CreateRecurringTransferMutation,
CreateTransferMutation,
UpdateRecurringTransferMutation,
} from '../TransferMutations.generated';
import {
ScheduleEnum,
TransferModalData,
TransferTypeEnum,
fundsMock,
} from '../mockData';
import { TransferModal } from './TransferModal';
const accountListId = 'abc';
const router = {
query: { accountListId },
isReady: true,
};
const handleClose = jest.fn();
const mutationSpy = jest.fn();
const mockEnqueue = jest.fn();
jest.mock('notistack', () => ({
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
// @ts-ignore
...jest.requireActual('notistack'),
useSnackbar: () => {
return {
enqueueSnackbar: mockEnqueue,
};
},
}));
jest.mock('@mui/material', () => {
const actual = jest.requireActual('@mui/material');
return {
...actual,
useMediaQuery: () => true, // force desktop mode
};
});
const transferDefaultData: TransferModalData['transfer'] = {
transferFrom: 'Staff Account',
transferTo: '',
amount: 0,
schedule: ScheduleEnum.OneTime,
status: undefined,
endDate: null,
note: '',
};
interface ComponentsProps {
transfer?: TransferModalData['transfer'];
type?: TransferTypeEnum;
}
const Components = ({
transfer = transferDefaultData,
type,
}: ComponentsProps) => (
<SnackbarProvider>
<ThemeProvider theme={theme}>
<LocalizationProvider dateAdapter={AdapterLuxon}>
<TestRouter router={router}>
<GqlMockedProvider<{
createRecurringTransfer: CreateRecurringTransferMutation;
createTransfer: CreateTransferMutation;
updateRecurringTransfer: UpdateRecurringTransferMutation;
}>
onCall={mutationSpy}
>
<StaffSavingFundProvider>
<TransferModal
data={{
type,
transfer,
}}
funds={fundsMock}
handleClose={handleClose}
/>
</StaffSavingFundProvider>
</GqlMockedProvider>
</TestRouter>
</LocalizationProvider>
</ThemeProvider>
</SnackbarProvider>
);
describe('TransferModal', () => {
it('should render the modal with correct inputs', () => {
const { getByRole, getByText } = render(<Components />);
expect(getByText('New Fund Transfer')).toBeInTheDocument();
expect(
getByRole('combobox', { name: /from account/i }),
).toBeInTheDocument();
expect(getByRole('combobox', { name: /to account/i })).toBeInTheDocument();
expect(getByRole('radio', { name: /one time/i })).toBeChecked();
expect(
getByRole('textbox', { name: /transfer date/i }),
).toBeInTheDocument();
expect(getByRole('spinbutton', { name: /amount/i })).toBeInTheDocument();
});
it('should close modal when cancel button is clicked', () => {
const { getByRole } = render(<Components />);
userEvent.click(getByRole('button', { name: /cancel/i }));
expect(handleClose).toHaveBeenCalled();
});
describe('Handle submit and validation', () => {
it('should show validation errors for required fields', async () => {
const { getByRole, findByText } = render(<Components />);
const toAccount = getByRole('combobox', { name: /to account/i });
const amountField = getByRole('spinbutton', { name: /amount/i });
userEvent.click(toAccount);
userEvent.tab();
userEvent.click(amountField);
userEvent.clear(amountField);
userEvent.tab();
userEvent.click(getByRole('button', { name: /submit/i }));
expect(await findByText('To account is required')).toBeInTheDocument();
expect(await findByText('Amount is required')).toBeInTheDocument();
});
it('should validate amount is greater than $0.01', async () => {
const { getByRole, findByText } = render(<Components />);
const amountField = getByRole('spinbutton', { name: /amount/i });
userEvent.clear(amountField);
userEvent.type(amountField, '-100');
userEvent.tab();
const toAccount = getByRole('combobox', { name: /to account/i });
userEvent.click(toAccount);
userEvent.click(getByRole('option', { name: /staff savings/i }));
userEvent.click(getByRole('button', { name: /submit/i }));
expect(
await findByText('Amount must be at least $0.01'),
).toBeInTheDocument();
});
it('should validate end date is after transfer date for recurring transfers', async () => {
const { getByRole, findByLabelText, getByLabelText, findByText } = render(
<Components />,
);
userEvent.click(getByRole('radio', { name: /monthly/i }));
expect(getByRole('radio', { name: /monthly/i })).toBeChecked();
expect(await findByLabelText(/end date/i)).toBeInTheDocument();
const transferDate = getByLabelText(/transfer date/i);
const endDate = getByLabelText(/end date/i);
userEvent.clear(transferDate);
userEvent.type(transferDate, '12/01/2024');
expect(transferDate).toHaveValue('12/01/2024');
userEvent.tab();
userEvent.clear(endDate);
userEvent.type(endDate, '11/01/2024');
expect(endDate).toHaveValue('11/01/2024');
userEvent.tab();
expect(
await findByText('End date must be after transfer date'),
).toBeInTheDocument();
});
it('should submit form with valid data', async () => {
const { getByRole } = render(<Components />);
const toAccount = getByRole('combobox', { name: /to account/i });
const amountField = getByRole('spinbutton', { name: /amount/i });
userEvent.click(toAccount);
userEvent.click(getByRole('option', { name: /staff savings/i }));
userEvent.clear(amountField);
userEvent.type(amountField, '100');
userEvent.click(getByRole('button', { name: /submit/i }));
await waitFor(() => {
expect(mockEnqueue).toHaveBeenCalledWith(
'Transfer created successfully',
{
variant: 'success',
},
);
});
});
it('should handle form submission successfully', async () => {
const { getByRole } = render(<Components />);
const toAccount = getByRole('combobox', { name: /to account/i });
const amountField = getByRole('spinbutton', { name: /amount/i });
const submitButton = getByRole('button', { name: /submit/i });
userEvent.click(toAccount);
userEvent.click(getByRole('option', { name: /staff savings/i }));
userEvent.clear(amountField);
userEvent.type(amountField, '100');
userEvent.click(submitButton);
await waitFor(() => {
expect(mockEnqueue).toHaveBeenCalledWith(
'Transfer created successfully',
{
variant: 'success',
},
);
});
});
});
describe('Inputs', () => {
it('should populate initial values from data prop', () => {
const dataWithValues: TransferModalData['transfer'] = {
transferFrom: '70056dcb-1a0f-4279-b710-928bcdff811a',
transferTo: '408caf15-cdfd-41d1-8778-aa42a6561b85',
amount: 500,
schedule: ScheduleEnum.Monthly,
status: undefined,
endDate: null,
note: 'Test note',
};
const { getByDisplayValue, getByLabelText } = render(
<Components transfer={dataWithValues} type={TransferTypeEnum.Edit} />,
);
expect(getByDisplayValue('500')).toBeInTheDocument();
expect(getByLabelText(/end date/i)).toHaveValue('');
});
it('locks the From Account to the launching card and excludes it from To Account options', async () => {
const { getByRole, queryByRole } = render(<Components />);
const fromAccount = getByRole('combobox', { name: /from account/i });
expect(fromAccount).toHaveTextContent('Staff Account');
userEvent.click(fromAccount);
expect(queryByRole('listbox')).not.toBeInTheDocument();
userEvent.click(getByRole('combobox', { name: /to account/i }));
await waitFor(() =>
expect(
queryByRole('option', { name: /staff account/i }),
).not.toBeInTheDocument(),
);
expect(
getByRole('option', { name: /staff savings/i }),
).toBeInTheDocument();
});
it('should show/hide end date based on schedule selection', async () => {
const { getByRole, queryByRole, getByLabelText } = render(<Components />);
expect(
queryByRole('textbox', { name: /end date/i }),
).not.toBeInTheDocument();
userEvent.click(getByRole('radio', { name: /monthly/i }));
await waitFor(() =>
expect(getByLabelText(/end date/i)).toBeInTheDocument(),
);
userEvent.click(getByRole('radio', { name: /one time/i }));
await waitFor(() =>
expect(
queryByRole('textbox', { name: /end date/i }),
).not.toBeInTheDocument(),
);
});
it('should show error message when monthly schedule is selected', async () => {
const { getByRole, getByLabelText, findByText } = render(<Components />);
userEvent.click(getByRole('radio', { name: /monthly/i }));
expect(getByRole('radio', { name: /monthly/i })).toBeChecked();
expect(getByLabelText(/transfer date/i)).toBeInTheDocument();
expect(
await findByText(
'Recurring transfers must start at least one day in the future',
),
).toBeInTheDocument();
});
it('should show error message when transfer date is before original start date', async () => {
const dataWithValues: TransferModalData['transfer'] = {
id: '2',
transferFrom: 'Primary',
transferTo: 'Savings',
amount: 500,
schedule: ScheduleEnum.Monthly,
transferDate: DateTime.fromISO('2024-11-01'),
endDate: DateTime.fromISO('2025-11-01'),
note: 'Test note',
};
const { getByLabelText, findByText } = render(
<Components transfer={dataWithValues} type={TransferTypeEnum.Edit} />,
);
const transferDate = getByLabelText(/transfer date/i);
userEvent.clear(transferDate);
userEvent.type(transferDate, '10/01/2024');
expect(transferDate).toHaveValue('10/01/2024');
userEvent.tab();
expect(
await findByText(/transfer date cannot be earlier than Nov 1, 2024/i),
).toBeInTheDocument();
});
it('should show information box when amount exceeds limit', async () => {
const { getByRole, findByRole } = render(<Components />);
const toAccount = getByRole('combobox', { name: /to account/i });
userEvent.click(toAccount);
userEvent.click(getByRole('option', { name: /staff savings/i }));
const amount = getByRole('spinbutton', { name: /amount/i });
userEvent.clear(amount);
userEvent.type(amount, '20000');
userEvent.tab();
const alert = await findByRole('alert');
expect(alert).toBeInTheDocument();
expect(
within(alert).getByText(
/this amount will cause your account balance to exceed the deficit limit/i,
),
).toBeInTheDocument();
});
it('should show proper currency symbol in amount field', () => {
const { getByText } = render(<Components />);
expect(getByText('$')).toBeInTheDocument();
});
it('should handle different schedule types', async () => {
const { getByRole } = render(<Components />);
expect(getByRole('radio', { name: /one time/i })).toBeChecked();
userEvent.click(getByRole('radio', { name: /monthly/i }));
await waitFor(() => {
expect(getByRole('radio', { name: /monthly/i })).toBeChecked();
});
});
});
describe('Mutations', () => {
it('should create a one-time transfer', async () => {
const { getByRole } = render(<Components />);
const amountField = getByRole('spinbutton', { name: /amount/i });
userEvent.click(getByRole('combobox', { name: /to account/i }));
userEvent.click(getByRole('option', { name: /staff savings/i }));
userEvent.clear(amountField);
userEvent.type(amountField, '100');
userEvent.click(getByRole('button', { name: /submit/i }));
await waitFor(() => {
expect(mutationSpy).toHaveBeenCalledWith(
expect.objectContaining({
operation: expect.objectContaining({
operationName: 'CreateTransfer',
variables: expect.objectContaining({
amount: 100,
sourceFundTypeName: 'Staff Account',
destinationFundTypeName: 'Staff Savings',
description: '',
}),
}),
}),
);
});
});
it('should create a recurring transfer', async () => {
const { getByRole, getByLabelText } = render(<Components />);
const amountField = getByRole('spinbutton', { name: /amount/i });
userEvent.click(getByRole('combobox', { name: /to account/i }));
userEvent.click(getByRole('option', { name: /staff savings/i }));
userEvent.clear(amountField);
userEvent.type(amountField, '100');
userEvent.click(getByRole('radio', { name: /monthly/i }));
const transferDate = getByLabelText(/transfer date/i);
const endDate = getByLabelText(/end date/i);
userEvent.clear(transferDate);
userEvent.type(transferDate, '12/01/2024');
expect(transferDate).toHaveValue('12/01/2024');
userEvent.tab();
userEvent.clear(endDate);
userEvent.type(endDate, '12/01/2025');
expect(endDate).toHaveValue('12/01/2025');
userEvent.tab();
userEvent.click(getByRole('button', { name: /submit/i }));
await waitFor(() => {
expect(mutationSpy).toHaveBeenCalledWith(
expect.objectContaining({
operation: expect.objectContaining({
operationName: 'CreateRecurringTransfer',
variables: expect.objectContaining({
amount: 100,
sourceFundTypeName: 'Staff Account',
destinationFundTypeName: 'Staff Savings',
recurringStart: '2024-12-01T00:00:00.000+00:00',
recurringEnd: '2025-12-01T00:00:00.000+00:00',
}),
}),
}),
);
});
});
it('should update a transfer', async () => {
const dataWithValues: TransferModalData['transfer'] = {
id: 'transfer-id',
transferFrom: 'Primary',
transferTo: 'Savings',
amount: 500,
schedule: ScheduleEnum.Monthly,
transferDate: DateTime.fromISO('2024-11-01'),
endDate: DateTime.fromISO('2025-11-01'),
note: 'Test note',
recurringId: 'recurring-id',
};
const { getByRole, getByLabelText } = render(
<Components transfer={dataWithValues} type={TransferTypeEnum.Edit} />,
);
const amountField = getByRole('spinbutton', { name: /amount/i });
userEvent.clear(amountField);
userEvent.type(amountField, '600');
const transferDate = getByLabelText(/transfer date/i);
const endDate = getByLabelText(/end date/i);
userEvent.clear(transferDate);
userEvent.type(transferDate, '12/01/2024');
expect(transferDate).toHaveValue('12/01/2024');
userEvent.tab();
userEvent.clear(endDate);
userEvent.type(endDate, '12/01/2025');
expect(endDate).toHaveValue('12/01/2025');
userEvent.tab();
userEvent.click(getByRole('button', { name: /submit/i }));
await waitFor(() => {
expect(mutationSpy).toHaveBeenCalledWith(
expect.objectContaining({
operation: expect.objectContaining({
operationName: 'UpdateRecurringTransfer',
variables: expect.objectContaining({
id: 'recurring-id',
amount: 600,
recurringStart: '2024-12-01T00:00:00.000+00:00',
recurringEnd: '2025-12-01T00:00:00.000+00:00',
}),
}),
}),
);
});
await waitFor(() => {
expect(mockEnqueue).toHaveBeenCalledWith(
'Transfer updated successfully',
{
variant: 'success',
},
);
});
});
});
describe('New Mode', () => {
it('should display selects', () => {
const { getByRole } = render(<Components type={TransferTypeEnum.New} />);
const fromAccount = getByRole('combobox', { name: /from account/i });
const toAccount = getByRole('combobox', { name: /to account/i });
expect(fromAccount).toBeInTheDocument();
expect(toAccount).toBeInTheDocument();
});
});
});