-
Notifications
You must be signed in to change notification settings - Fork 202
Expand file tree
/
Copy pathConfirmationStep.test.tsx
More file actions
734 lines (610 loc) · 20.2 KB
/
Copy pathConfirmationStep.test.tsx
File metadata and controls
734 lines (610 loc) · 20.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
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
import { render, screen } from "@testing-library/react";
import userEvent from "@testing-library/user-event";
import { describe, expect, it, vi, beforeEach } from "vitest";
import { ConfirmationStep } from "./ConfirmationStep";
import { useWallet } from "@/context/WalletContext";
import { getDrawPricingQuote } from "@/lib/draw-credit-pricing";
// Mock WalletContext — ConfirmationStep reads wallet status to show a hint
vi.mock("@/context/WalletContext", () => ({
useWallet: vi.fn(),
}));
// Mock draw pricing — tests focus on UI structure, not pricing arithmetic
vi.mock("@/lib/draw-credit-pricing", () => ({
getDrawPricingQuote: vi.fn(() => ({
fee: 100,
apr: 12.5,
estimatedMonthlyInterest: 104.17,
riskBand: "Standard",
termMonths: 24,
utilizationAdjustmentLabel: "Low utilization adjustment",
termAdjustmentLabel: "Standard-term pricing adjustment",
})),
}));
const mockGetDrawPricingQuote = vi.mocked(getDrawPricingQuote);
const mockUseWallet = vi.mocked(useWallet);
const creditLine = {
id: "cl-001",
name: "Business Line of Credit",
limit: 50000,
available: 35000,
utilization: 30,
riskBand: "Standard" as const,
termMonths: 24,
};
const watchCreditLine = {
id: "cl-003",
name: "Working Capital",
limit: 75000,
available: 12000,
utilization: 84,
riskBand: "Watch" as const,
termMonths: 12,
};
/** Returns footer action buttons, excluding icon-only buttons (e.g. tooltips). */
function getActionButtons() {
return screen.getAllByRole("button").filter(
(btn) =>
!btn.getAttribute("aria-label") &&
(btn.textContent?.trim() ?? "").length > 0,
);
}
// ── Basic render ──────────────────────────────────────────────────────────────
describe("ConfirmationStep", () => {
beforeEach(() => {
vi.clearAllMocks();
mockUseWallet.mockReturnValue({ status: "connected" });
});
it("renders the Review and confirm heading", () => {
render(
<ConfirmationStep
creditLine={creditLine}
amount={10000}
onConfirm={vi.fn()}
onBack={vi.fn()}
onCancel={vi.fn()}
/>,
);
expect(
screen.getByRole("heading", { name: /review and confirm/i }),
).toBeInTheDocument();
});
it("shows the draw amount", () => {
render(
<ConfirmationStep
creditLine={creditLine}
amount={10000}
onConfirm={vi.fn()}
onBack={vi.fn()}
onCancel={vi.fn()}
/>,
);
expect(screen.getByTestId("draw-amount-display")).toHaveTextContent(
"$10,000.00",
);
});
it("shows the estimated fee from pricing quote", () => {
render(
<ConfirmationStep
creditLine={creditLine}
amount={10000}
onConfirm={vi.fn()}
onBack={vi.fn()}
onCancel={vi.fn()}
/>,
);
// Fee comes from mocked getDrawPricingQuote → $100
expect(screen.getByTestId("fee-display")).toHaveTextContent("$100.00");
});
it("shows the APR from pricing quote", () => {
render(
<ConfirmationStep
creditLine={creditLine}
amount={10000}
onConfirm={vi.fn()}
onBack={vi.fn()}
onCancel={vi.fn()}
/>,
);
expect(screen.getByTestId("apr-display")).toHaveTextContent("12.5%");
});
it("shows the estimated monthly interest", () => {
render(
<ConfirmationStep
creditLine={creditLine}
amount={10000}
onConfirm={vi.fn()}
onBack={vi.fn()}
onCancel={vi.fn()}
/>,
);
expect(screen.getByTestId("monthly-interest-display")).toHaveTextContent(
"$104.17",
);
});
});
// ── Cost breakdown section ────────────────────────────────────────────────────
describe("ConfirmationStep — cost breakdown section", () => {
beforeEach(() => {
mockUseWallet.mockReturnValue({ status: "connected" });
});
it("renders the 'Cost breakdown' section heading", () => {
render(
<ConfirmationStep
creditLine={creditLine}
amount={10000}
onConfirm={vi.fn()}
onBack={vi.fn()}
onCancel={vi.fn()}
/>,
);
expect(
screen.getByRole("region", { name: /cost breakdown/i }),
).toBeInTheDocument();
});
it("shows the new balance after fee", () => {
// utilized = 50000 - 35000 = 15000, amount = 10000, fee = 100
// newBalance = 15000 + 10000 + 100 = 25100
render(
<ConfirmationStep
creditLine={creditLine}
amount={10000}
onConfirm={vi.fn()}
onBack={vi.fn()}
onCancel={vi.fn()}
/>,
);
expect(screen.getByTestId("new-balance-display")).toHaveTextContent(
"$25,100.00",
);
});
it("shows term in months", () => {
render(
<ConfirmationStep
creditLine={creditLine}
amount={10000}
onConfirm={vi.fn()}
onBack={vi.fn()}
onCancel={vi.fn()}
/>,
);
expect(screen.getByText("24 months")).toBeInTheDocument();
});
});
// ── Risk-band badge ───────────────────────────────────────────────────────────
describe("ConfirmationStep — risk-band badge", () => {
beforeEach(() => {
mockUseWallet.mockReturnValue({ status: "connected" });
});
it("renders a risk-band badge", () => {
render(
<ConfirmationStep
creditLine={creditLine}
amount={10000}
onConfirm={vi.fn()}
onBack={vi.fn()}
onCancel={vi.fn()}
/>,
);
const badge = screen.getByTestId("risk-band-badge");
expect(badge).toBeInTheDocument();
});
it("risk-band badge shows 'Standard band' for Standard risk line", () => {
render(
<ConfirmationStep
creditLine={creditLine}
amount={10000}
onConfirm={vi.fn()}
onBack={vi.fn()}
onCancel={vi.fn()}
/>,
);
expect(screen.getByTestId("risk-band-badge")).toHaveTextContent(
"Standard band",
);
});
it("risk-band badge has accessible aria-label describing the band", () => {
render(
<ConfirmationStep
creditLine={creditLine}
amount={10000}
onConfirm={vi.fn()}
onBack={vi.fn()}
onCancel={vi.fn()}
/>,
);
const badge = screen.getByTestId("risk-band-badge");
expect(badge).toHaveAttribute("aria-label", expect.stringMatching(/risk band: standard/i));
});
});
// ── Watch-band risk-adjusted fee notice ───────────────────────────────────────
describe("ConfirmationStep — Watch-band risk fee notice", () => {
beforeEach(() => {
vi.clearAllMocks();
mockUseWallet.mockReturnValue({ status: "connected" });
// Return Watch risk band from pricing
mockGetDrawPricingQuote.mockReturnValue({
fee: 50,
apr: 14.5,
estimatedMonthlyInterest: 60.42,
riskBand: "Watch",
termMonths: 12,
utilizationAdjustmentLabel: "High utilization adjustment",
termAdjustmentLabel: "Short-term pricing adjustment",
});
});
it("shows the risk-adjusted fee notice for Watch-band credit lines", () => {
render(
<ConfirmationStep
creditLine={watchCreditLine}
amount={5000}
onConfirm={vi.fn()}
onBack={vi.fn()}
onCancel={vi.fn()}
/>,
);
expect(screen.getByTestId("risk-fee-notice")).toBeInTheDocument();
expect(screen.getByTestId("risk-fee-notice")).toHaveTextContent(
/risk-adjusted pricing/i,
);
});
it("does NOT show the risk-adjusted fee notice for Standard-band lines", () => {
// Restore Standard mock for this test
mockGetDrawPricingQuote.mockReturnValue({
fee: 100,
apr: 12.5,
estimatedMonthlyInterest: 104.17,
riskBand: "Standard",
termMonths: 24,
utilizationAdjustmentLabel: "Low utilization adjustment",
termAdjustmentLabel: "Standard-term pricing adjustment",
});
render(
<ConfirmationStep
creditLine={creditLine}
amount={10000}
onConfirm={vi.fn()}
onBack={vi.fn()}
onCancel={vi.fn()}
/>,
);
expect(screen.queryByTestId("risk-fee-notice")).not.toBeInTheDocument();
});
});
// ── APR disclosure collapsible ────────────────────────────────────────────────
describe("ConfirmationStep — APR disclosure collapsible", () => {
beforeEach(() => {
mockUseWallet.mockReturnValue({ status: "connected" });
});
function renderStep(overrides = {}) {
render(
<ConfirmationStep
creditLine={creditLine}
amount={10000}
onConfirm={vi.fn()}
onBack={vi.fn()}
onCancel={vi.fn()}
{...overrides}
/>,
);
}
it("renders the 'How is my APR calculated?' toggle button", () => {
renderStep();
expect(
screen.getByTestId("apr-disclosure-toggle"),
).toBeInTheDocument();
expect(
screen.getByTestId("apr-disclosure-toggle"),
).toHaveTextContent(/how is my apr calculated/i);
});
it("APR breakdown body is NOT visible by default (collapsed)", () => {
renderStep();
expect(screen.queryByTestId("apr-breakdown-body")).not.toBeInTheDocument();
});
it("toggle button has aria-expanded=false when collapsed", () => {
renderStep();
const toggle = screen.getByTestId("apr-disclosure-toggle");
expect(toggle).toHaveAttribute("aria-expanded", "false");
});
it("clicking the toggle reveals the APR breakdown", async () => {
const user = userEvent.setup();
renderStep();
await user.click(screen.getByTestId("apr-disclosure-toggle"));
expect(screen.getByTestId("apr-breakdown-body")).toBeInTheDocument();
});
it("toggle button has aria-expanded=true when open", async () => {
const user = userEvent.setup();
renderStep();
await user.click(screen.getByTestId("apr-disclosure-toggle"));
expect(screen.getByTestId("apr-disclosure-toggle")).toHaveAttribute(
"aria-expanded",
"true",
);
});
it("shows base rate, utilization adjustment, and term adjustment when open", async () => {
const user = userEvent.setup();
renderStep();
await user.click(screen.getByTestId("apr-disclosure-toggle"));
expect(screen.getByTestId("apr-base-rate")).toBeInTheDocument();
expect(screen.getByTestId("apr-utilization-adj")).toBeInTheDocument();
expect(screen.getByTestId("apr-term-adj")).toBeInTheDocument();
expect(screen.getByTestId("apr-total")).toBeInTheDocument();
});
it("total APR in breakdown matches the main APR display", async () => {
const user = userEvent.setup();
renderStep();
await user.click(screen.getByTestId("apr-disclosure-toggle"));
const total = screen.getByTestId("apr-total");
const mainApr = screen.getByTestId("apr-display");
expect(total).toHaveTextContent("12.5%");
expect(mainApr).toHaveTextContent("12.5%");
});
it("shows utilization adjustment label from pricing quote", async () => {
const user = userEvent.setup();
renderStep();
await user.click(screen.getByTestId("apr-disclosure-toggle"));
expect(
screen.getByText(/low utilization adjustment/i),
).toBeInTheDocument();
});
it("shows term adjustment label from pricing quote", async () => {
const user = userEvent.setup();
renderStep();
await user.click(screen.getByTestId("apr-disclosure-toggle"));
expect(
screen.getByText(/standard-term pricing adjustment/i),
).toBeInTheDocument();
});
it("clicking toggle again collapses the breakdown", async () => {
const user = userEvent.setup();
renderStep();
const toggle = screen.getByTestId("apr-disclosure-toggle");
await user.click(toggle);
expect(screen.getByTestId("apr-breakdown-body")).toBeInTheDocument();
await user.click(toggle);
expect(screen.queryByTestId("apr-breakdown-body")).not.toBeInTheDocument();
});
});
// ── Utilization progress bars ─────────────────────────────────────────────────
describe("ConfirmationStep — utilization progress bars", () => {
beforeEach(() => {
mockUseWallet.mockReturnValue({ status: "connected" });
});
it("renders the 'Credit utilization' section", () => {
render(
<ConfirmationStep
creditLine={creditLine}
amount={10000}
onConfirm={vi.fn()}
onBack={vi.fn()}
onCancel={vi.fn()}
/>,
);
expect(
screen.getByRole("region", { name: /credit utilization/i }),
).toBeInTheDocument();
});
it("shows current utilization percentage", () => {
render(
<ConfirmationStep
creditLine={creditLine}
amount={10000}
onConfirm={vi.fn()}
onBack={vi.fn()}
onCancel={vi.fn()}
/>,
);
// creditLine.utilization = 30
expect(screen.getByText("30%")).toBeInTheDocument();
});
it("shows projected utilization after draw", () => {
// utilized = 15000, draw = 10000, fee = 100 → newBalance = 25100
// newUtilization = round(25100 / 50000 * 100) = 50
render(
<ConfirmationStep
creditLine={creditLine}
amount={10000}
onConfirm={vi.fn()}
onBack={vi.fn()}
onCancel={vi.fn()}
/>,
);
expect(screen.getByTestId("utilization-after-pct")).toHaveTextContent(
"50%",
);
});
it("renders two accessible progressbar elements", () => {
render(
<ConfirmationStep
creditLine={creditLine}
amount={10000}
onConfirm={vi.fn()}
onBack={vi.fn()}
onCancel={vi.fn()}
/>,
);
const bars = screen.getAllByRole("progressbar");
expect(bars).toHaveLength(2);
});
it("does NOT show high-utilization warning when below 80%", () => {
render(
<ConfirmationStep
creditLine={creditLine}
amount={10000}
onConfirm={vi.fn()}
onBack={vi.fn()}
onCancel={vi.fn()}
/>,
);
expect(
screen.queryByTestId("high-utilization-warning"),
).not.toBeInTheDocument();
});
it("shows high-utilization warning when projected utilization exceeds 80%", () => {
// For this to trigger: newBalance / limit > 0.80
// limit=50000, utilized=15000, draw=30000, fee=100 → newBalance=45100 → 90%
render(
<ConfirmationStep
creditLine={creditLine}
amount={30000}
onConfirm={vi.fn()}
onBack={vi.fn()}
onCancel={vi.fn()}
/>,
);
expect(
screen.getByTestId("high-utilization-warning"),
).toBeInTheDocument();
});
it("high-utilization warning has role=alert for immediate AT announcement", () => {
render(
<ConfirmationStep
creditLine={creditLine}
amount={30000}
onConfirm={vi.fn()}
onBack={vi.fn()}
onCancel={vi.fn()}
/>,
);
const warning = screen.getByTestId("high-utilization-warning");
expect(warning).toHaveAttribute("role", "alert");
});
});
// ── Button order tests (docs/BUTTON_ORDER.md) ────────────────────────────────
describe("ConfirmationStep — button order (docs/BUTTON_ORDER.md)", () => {
beforeEach(() => {
mockUseWallet.mockReturnValue({ status: "connected" });
});
function renderStep(overrides = {}) {
render(
<ConfirmationStep
creditLine={creditLine}
amount={10000}
onConfirm={vi.fn()}
onBack={vi.fn()}
onCancel={vi.fn()}
{...overrides}
/>,
);
}
it("renders Cancel before Back in the DOM", () => {
renderStep();
const buttons = getActionButtons();
const cancelIdx = buttons.findIndex((b) => b.textContent?.trim() === "Cancel");
const backIdx = buttons.findIndex((b) => b.textContent?.trim() === "Back");
expect(cancelIdx).toBeGreaterThanOrEqual(0);
expect(backIdx).toBeGreaterThanOrEqual(0);
expect(cancelIdx).toBeLessThan(backIdx);
});
it("renders Back before the primary Draw button in the DOM", () => {
renderStep();
const buttons = getActionButtons();
const backIdx = buttons.findIndex((b) => b.textContent?.trim() === "Back");
const drawIdx = buttons.findIndex((b) => /draw/i.test(b.textContent ?? ""));
expect(backIdx).toBeGreaterThanOrEqual(0);
expect(drawIdx).toBeGreaterThanOrEqual(0);
expect(backIdx).toBeLessThan(drawIdx);
});
it("full order: Cancel → Back → Draw", () => {
renderStep();
const buttons = getActionButtons();
const cancelIdx = buttons.findIndex((b) => b.textContent?.trim() === "Cancel");
const backIdx = buttons.findIndex((b) => b.textContent?.trim() === "Back");
const drawIdx = buttons.findIndex((b) => /draw/i.test(b.textContent ?? ""));
expect(cancelIdx).toBeLessThan(backIdx);
expect(backIdx).toBeLessThan(drawIdx);
});
it("Draw is disabled until terms are accepted", () => {
renderStep();
const draw = screen.getByRole("button", { name: /draw/i });
expect(draw).toBeDisabled();
});
it("Draw becomes enabled after the terms checkbox is ticked", async () => {
const user = userEvent.setup();
renderStep();
const checkbox = screen.getByRole("checkbox");
await user.click(checkbox);
expect(screen.getByRole("button", { name: /draw/i })).not.toBeDisabled();
});
it("Cancel and Back are disabled while isLoading", () => {
renderStep({ isLoading: true });
expect(screen.getByRole("button", { name: "Cancel" })).toBeDisabled();
expect(screen.getByRole("button", { name: "Back" })).toBeDisabled();
});
it("calls onCancel when Cancel is clicked", async () => {
const onCancel = vi.fn();
const user = userEvent.setup();
renderStep({ onCancel });
await user.click(screen.getByRole("button", { name: "Cancel" }));
expect(onCancel).toHaveBeenCalledTimes(1);
});
it("calls onBack when Back is clicked", async () => {
const onBack = vi.fn();
const user = userEvent.setup();
renderStep({ onBack });
await user.click(screen.getByRole("button", { name: "Back" }));
expect(onBack).toHaveBeenCalledTimes(1);
});
it("calls onConfirm when Draw is clicked after accepting terms", async () => {
const onConfirm = vi.fn();
const user = userEvent.setup();
renderStep({ onConfirm });
await user.click(screen.getByRole("checkbox"));
await user.click(screen.getByRole("button", { name: /draw/i }));
expect(onConfirm).toHaveBeenCalledTimes(1);
});
});
// ── Wallet signing hint ───────────────────────────────────────────────────────
describe("ConfirmationStep — wallet signing hint", () => {
it("shows 'Your wallet will ask you to sign next' when wallet is connected", () => {
mockUseWallet.mockReturnValue({
status: "connected",
});
render(
<ConfirmationStep
creditLine={creditLine}
amount={10000}
onConfirm={vi.fn()}
onBack={vi.fn()}
onCancel={vi.fn()}
/>,
);
expect(
screen.getByText(/your wallet will ask you to sign next/i),
).toBeInTheDocument();
});
it("does NOT show wallet hint when wallet is disconnected", () => {
mockUseWallet.mockReturnValue({
status: "disconnected",
});
render(
<ConfirmationStep
creditLine={creditLine}
amount={10000}
onConfirm={vi.fn()}
onBack={vi.fn()}
onCancel={vi.fn()}
/>,
);
expect(
screen.queryByText(/your wallet will ask you to sign next/i),
).not.toBeInTheDocument();
});
it("does NOT show wallet hint while loading", () => {
mockUseWallet.mockReturnValue({
status: "connected",
});
render(
<ConfirmationStep
creditLine={creditLine}
amount={10000}
onConfirm={vi.fn()}
onBack={vi.fn()}
onCancel={vi.fn()}
isLoading
/>,
);
expect(
screen.queryByText(/your wallet will ask you to sign next/i),
).not.toBeInTheDocument();
});
});