-
Notifications
You must be signed in to change notification settings - Fork 212
Expand file tree
/
Copy pathuse-sf-payments.test.js
More file actions
680 lines (549 loc) · 22.1 KB
/
use-sf-payments.test.js
File metadata and controls
680 lines (549 loc) · 22.1 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
/*
* Copyright (c) 2025, salesforce.com, inc.
* All rights reserved.
* SPDX-License-Identifier: BSD-3-Clause
* For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause
*/
import React from 'react'
import PropTypes from 'prop-types'
import {render, screen, waitFor, act, renderHook} from '@testing-library/react'
import {
useSFPayments,
useSFPaymentsEnabled,
useAutomaticCapture,
useFutureUsageOffSession,
EXPRESS_BUY_NOW,
EXPRESS_PAY_NOW,
STATUS_SUCCESS,
store as sfPaymentsStore
} from '@salesforce/retail-react-app/app/hooks/use-sf-payments'
import {QueryClient, QueryClientProvider} from '@tanstack/react-query'
import {rest} from 'msw'
// Mock dependencies
const mockUseScript = jest.fn()
const mockGetConfig = jest.fn()
const mockUseAppOrigin = jest.fn()
const mockFetch = jest.fn()
const mockUseShopperConfiguration = jest.fn()
jest.mock('@salesforce/retail-react-app/app/hooks/use-script', () => ({
__esModule: true,
default: () => mockUseScript()
}))
jest.mock('@salesforce/pwa-kit-runtime/utils/ssr-config', () => ({
getConfig: () => mockGetConfig()
}))
jest.mock('@salesforce/retail-react-app/app/hooks/use-app-origin', () => ({
useAppOrigin: () => mockUseAppOrigin()
}))
jest.mock('@salesforce/retail-react-app/app/hooks/use-shopper-configuration', () => ({
useShopperConfiguration: (configId) => mockUseShopperConfiguration(configId)
}))
// Mock SFPayments class
class MockSFPayments {
constructor() {
this.initialized = true
}
checkout() {
return {confirm: jest.fn()}
}
}
// Test component that uses the hook
const TestComponent = ({onHookData}) => {
const hookData = useSFPayments()
React.useEffect(() => {
if (onHookData) {
onHookData(hookData)
}
}, [hookData, onHookData])
return (
<div>
<div data-testid="sfp-loaded">{hookData.sfp ? 'loaded' : 'not-loaded'}</div>
<div data-testid="metadata-loading">
{hookData.isMetadataLoading ? 'loading' : 'not-loading'}
</div>
<div data-testid="metadata">{JSON.stringify(hookData.metadata)}</div>
<div data-testid="confirming-basket">
{hookData.confirmingBasket ? 'confirming' : 'not-confirming'}
</div>
</div>
)
}
TestComponent.propTypes = {
onHookData: PropTypes.func
}
// Helper to render with providers
const renderWithQueryClient = (ui) => {
const queryClient = new QueryClient({
defaultOptions: {
queries: {
retry: false,
cacheTime: 0
}
}
})
return render(<QueryClientProvider client={queryClient}>{ui}</QueryClientProvider>)
}
describe('useSFPayments hook', () => {
beforeEach(() => {
jest.clearAllMocks()
// Reset global state - don't try to redefine window, just delete the property
if (global.window && global.window.SFPayments) {
delete global.window.SFPayments
}
// Reset the store state
sfPaymentsStore.sfp = null
sfPaymentsStore.confirmingBasket = null
// Reset fetch mock
global.fetch = mockFetch
global.server.resetHandlers()
global.server.use(
rest.get('/api/payment-metadata', (req, res, ctx) => {
return res(
ctx.delay(0),
ctx.status(200),
ctx.json({apiKey: 'test-key', publishableKey: 'pk_test'})
)
})
)
// Default mock implementations
mockUseScript.mockReturnValue({loaded: false, error: false})
mockGetConfig.mockReturnValue({
app: {
sfPayments: {
sdkUrl: 'https://test.sfpayments.com/sdk.js'
}
}
})
mockUseAppOrigin.mockReturnValue('https://test-origin.com')
mockFetch.mockResolvedValue({
ok: true,
json: async () => ({apiKey: 'test-key', publishableKey: 'pk_test'})
})
})
afterEach(() => {
jest.clearAllMocks()
if (global.window && global.window.SFPayments) {
delete global.window.SFPayments
}
// Clean up any rendered components
document.body.innerHTML = ''
sfPaymentsStore.sfp = null
sfPaymentsStore.confirmingBasket = null
})
describe('constants', () => {
test('exports correct constant values', () => {
expect(EXPRESS_BUY_NOW).toBe(0)
expect(EXPRESS_PAY_NOW).toBe(1)
expect(STATUS_SUCCESS).toBe(0)
})
})
describe('initialization', () => {
test('returns initial state when script not loaded', () => {
renderWithQueryClient(<TestComponent />)
expect(screen.getByTestId('sfp-loaded').textContent).toBe('not-loaded')
expect(screen.getByTestId('metadata-loading').textContent).toBe('loading')
})
test('creates SFPayments instance when script loads', async () => {
global.window.SFPayments = MockSFPayments
mockUseScript.mockReturnValue({loaded: true, error: false})
renderWithQueryClient(<TestComponent />)
await waitFor(() => {
expect(screen.getByTestId('sfp-loaded').textContent).toBe('loaded')
})
})
test('does not create SFPayments instance if window.SFPayments is not defined', async () => {
mockUseScript.mockReturnValue({loaded: true, error: false})
renderWithQueryClient(<TestComponent />)
await waitFor(() => {
expect(screen.getByTestId('sfp-loaded').textContent).toBe('not-loaded')
})
})
test('only creates SFPayments instance once', async () => {
const SFPaymentsSpy = jest.fn().mockImplementation(function () {
this.initialized = true
})
global.window.SFPayments = SFPaymentsSpy
mockUseScript.mockReturnValue({loaded: true, error: false})
// First render
const {unmount: unmount1} = renderWithQueryClient(<TestComponent />)
await waitFor(() => {
expect(screen.getAllByTestId('sfp-loaded')[0].textContent).toBe('loaded')
})
unmount1()
// Second render - should reuse existing instance
renderWithQueryClient(<TestComponent />)
await waitFor(() => {
expect(screen.getByTestId('sfp-loaded').textContent).toBe('loaded')
})
// Should only be called once across both renders
expect(SFPaymentsSpy).toHaveBeenCalledTimes(1)
})
})
describe('metadata loading', () => {
test('fetches payment metadata from API', async () => {
const mockMetadata = {apiKey: 'test-key', publishableKey: 'pk_test'}
mockFetch.mockResolvedValue({
ok: true,
json: async () => mockMetadata
})
renderWithQueryClient(<TestComponent />)
await waitFor(() => {
expect(mockFetch).toHaveBeenCalledWith(
'https://test-origin.com/api/payment-metadata'
)
})
await waitFor(() => {
expect(screen.getByTestId('metadata').textContent).toBe(
JSON.stringify(mockMetadata)
)
})
})
test('handles metadata fetch error', async () => {
// Suppress expected error message
const consoleErrorSpy = jest.spyOn(console, 'error').mockImplementation(() => {})
mockFetch.mockResolvedValue({
ok: false
})
global.server.use(
rest.get('*/api/payment-metadata', (req, res, ctx) => {
return res(ctx.delay(0), ctx.status(500))
})
)
renderWithQueryClient(<TestComponent />)
await waitFor(() => {
expect(mockFetch).toHaveBeenCalled()
})
// Metadata should remain undefined on error
await waitFor(() => {
expect(screen.getByTestId('metadata').textContent).toBe('')
})
await waitFor(() => {
expect(consoleErrorSpy).toHaveBeenCalled()
// Check that it was called with an Error containing the message
const errorCall = consoleErrorSpy.mock.calls.find(
(call) =>
call[0]?.message === 'Failed to load payment metadata' ||
call[0]?.toString().includes('Failed to load payment metadata')
)
expect(errorCall).toBeDefined()
})
// Restore console.error
consoleErrorSpy.mockRestore()
})
test('uses correct app origin for metadata request', async () => {
mockUseAppOrigin.mockReturnValue('https://custom-origin.com')
global.server.use(
rest.get('*/api/payment-metadata', (req, res, ctx) => {
return res(
ctx.delay(0),
ctx.status(200),
ctx.json({apiKey: 'test-key', publishableKey: 'pk_test'})
)
})
)
renderWithQueryClient(<TestComponent />)
await waitFor(() => {
expect(mockFetch).toHaveBeenCalledWith(
'https://custom-origin.com/api/payment-metadata'
)
})
})
})
describe('confirming basket state', () => {
test('startConfirming updates confirmingBasket', async () => {
let hookData
const onHookData = jest.fn((data) => {
hookData = data
})
renderWithQueryClient(<TestComponent onHookData={onHookData} />)
await waitFor(() => {
expect(onHookData).toHaveBeenCalled()
})
expect(screen.getByTestId('confirming-basket').textContent).toBe('not-confirming')
// Start confirming
const mockBasket = {basketId: 'test-basket-123', orderTotal: 100}
act(() => {
hookData.startConfirming(mockBasket)
})
await waitFor(() => {
expect(screen.getByTestId('confirming-basket').textContent).toBe('confirming')
})
})
test('endConfirming clears confirmingBasket', async () => {
let latestHookData
const onHookData = jest.fn((data) => {
latestHookData = data
})
renderWithQueryClient(<TestComponent onHookData={onHookData} />)
await waitFor(() => {
expect(onHookData).toHaveBeenCalled()
})
// Start confirming
const mockBasket = {basketId: 'test-basket-123'}
act(() => {
latestHookData.startConfirming(mockBasket)
})
// Wait for component to re-render with new state
await waitFor(() => {
expect(sfPaymentsStore.confirmingBasket).toEqual(mockBasket)
})
// End confirming
act(() => {
latestHookData.endConfirming()
})
// Wait for store to update
await waitFor(
() => {
expect(sfPaymentsStore.confirmingBasket).toBeNull()
},
{timeout: 2000}
)
})
test('confirmingBasket state persists across rerenders', async () => {
let hookData
const onHookData = jest.fn((data) => {
hookData = data
})
const queryClient = new QueryClient({
defaultOptions: {
queries: {retry: false}
}
})
const {rerender} = render(
<QueryClientProvider client={queryClient}>
<TestComponent onHookData={onHookData} />
</QueryClientProvider>
)
await waitFor(() => {
expect(onHookData).toHaveBeenCalled()
})
// Start confirming
const mockBasket = {basketId: 'test-basket-123'}
act(() => {
hookData.startConfirming(mockBasket)
})
await waitFor(() => {
expect(hookData.confirmingBasket).toEqual(mockBasket)
})
// Rerender with the same QueryClientProvider
rerender(
<QueryClientProvider client={queryClient}>
<TestComponent onHookData={onHookData} />
</QueryClientProvider>
)
// State should persist
await waitFor(() => {
expect(hookData.confirmingBasket).toEqual(mockBasket)
})
})
})
describe('state synchronization', () => {
test('multiple components share the same store state', async () => {
global.window.SFPayments = MockSFPayments
mockUseScript.mockReturnValue({loaded: true, error: false})
let hookData1
let hookData2
const TestComponent1 = () => {
hookData1 = useSFPayments()
return <div data-testid="component-1">Component 1</div>
}
const TestComponent2 = () => {
hookData2 = useSFPayments()
return <div data-testid="component-2">Component 2</div>
}
const queryClient = new QueryClient({
defaultOptions: {
queries: {retry: false}
}
})
render(
<QueryClientProvider client={queryClient}>
<TestComponent1 />
<TestComponent2 />
</QueryClientProvider>
)
await waitFor(() => {
expect(hookData1?.sfp).toBeDefined()
expect(hookData2?.sfp).toBeDefined()
})
// Both should reference the same SFP instance
expect(hookData1.sfp).toBe(hookData2.sfp)
// Start confirming in component 1
const mockBasket = {basketId: 'shared-basket'}
act(() => {
hookData1.startConfirming(mockBasket)
})
await waitFor(() => {
// Both components should see the same confirming basket
expect(hookData1.confirmingBasket).toEqual(mockBasket)
expect(hookData2.confirmingBasket).toEqual(mockBasket)
})
})
})
describe('return value', () => {
test('returns all expected properties', async () => {
let hookData
const onHookData = jest.fn((data) => {
hookData = data
})
renderWithQueryClient(<TestComponent onHookData={onHookData} />)
await waitFor(() => {
expect(onHookData).toHaveBeenCalled()
})
expect(hookData).toHaveProperty('sfp')
expect(hookData).toHaveProperty('metadata')
expect(hookData).toHaveProperty('isMetadataLoading')
expect(hookData).toHaveProperty('confirmingBasket')
expect(hookData).toHaveProperty('startConfirming')
expect(hookData).toHaveProperty('endConfirming')
expect(typeof hookData.startConfirming).toBe('function')
expect(typeof hookData.endConfirming).toBe('function')
})
test('isMetadataLoading updates correctly', async () => {
let resolveMetadata
mockFetch.mockReturnValue(
new Promise((resolve) => {
resolveMetadata = resolve
})
)
renderWithQueryClient(<TestComponent />)
// Should be loading initially
expect(screen.getByTestId('metadata-loading').textContent).toBe('loading')
// Resolve the metadata
await act(async () => {
resolveMetadata({
ok: true,
json: async () => ({apiKey: 'test'})
})
})
await waitFor(() => {
expect(screen.getByTestId('metadata-loading').textContent).toBe('not-loading')
})
})
})
describe('edge cases', () => {
test('handles script loading without window.SFPayments available', async () => {
// Ensure window.SFPayments is not available
// Reset global state - don't try to redefine window, just delete the property
if (global.window && global.window.SFPayments) {
delete global.window.SFPayments
}
sfPaymentsStore.sfp = null
mockUseScript.mockReturnValue({loaded: true, error: false})
renderWithQueryClient(<TestComponent />)
// Even if script is loaded, SFP won't be initialized without window.SFPayments
await waitFor(() => {
expect(screen.getByTestId('sfp-loaded').textContent).toBe('not-loaded')
})
})
test('handles multiple calls to startConfirming', async () => {
let latestHookData
const onHookData = jest.fn((data) => {
latestHookData = data
})
renderWithQueryClient(<TestComponent onHookData={onHookData} />)
await waitFor(() => {
expect(onHookData).toHaveBeenCalled()
})
// Start confirming with first basket
const mockBasket1 = {basketId: 'basket-1'}
act(() => {
latestHookData.startConfirming(mockBasket1)
})
// Wait for store to update
await waitFor(
() => {
expect(sfPaymentsStore.confirmingBasket).toEqual(mockBasket1)
},
{timeout: 2000}
)
// Start confirming with second basket (replaces first)
const mockBasket2 = {basketId: 'basket-2'}
act(() => {
latestHookData.startConfirming(mockBasket2)
})
// Wait for store to update
await waitFor(
() => {
expect(sfPaymentsStore.confirmingBasket).toEqual(mockBasket2)
},
{timeout: 2000}
)
})
})
})
describe('useSFPaymentsEnabled hook', () => {
beforeEach(() => {
jest.clearAllMocks()
})
test('returns true when SalesforcePaymentsAllowed is true', () => {
mockUseShopperConfiguration.mockReturnValue(true)
const {result} = renderHook(() => useSFPaymentsEnabled())
expect(result.current).toBe(true)
expect(mockUseShopperConfiguration).toHaveBeenCalledWith('SalesforcePaymentsAllowed')
})
test('returns false when SalesforcePaymentsAllowed is false', () => {
mockUseShopperConfiguration.mockReturnValue(false)
const {result} = renderHook(() => useSFPaymentsEnabled())
expect(result.current).toBe(false)
expect(mockUseShopperConfiguration).toHaveBeenCalledWith('SalesforcePaymentsAllowed')
})
test('returns false when SalesforcePaymentsAllowed is undefined', () => {
mockUseShopperConfiguration.mockReturnValue(undefined)
const {result} = renderHook(() => useSFPaymentsEnabled())
expect(result.current).toBe(false)
expect(mockUseShopperConfiguration).toHaveBeenCalledWith('SalesforcePaymentsAllowed')
})
})
describe('useAutomaticCapture hook', () => {
beforeEach(() => {
jest.clearAllMocks()
})
test('returns true when cardCaptureAutomatic is true', () => {
mockUseShopperConfiguration.mockReturnValue(true)
const {result} = renderHook(() => useAutomaticCapture())
expect(result.current).toBe(true)
expect(mockUseShopperConfiguration).toHaveBeenCalledWith('cardCaptureAutomatic')
})
test('returns false when cardCaptureAutomatic is false', () => {
mockUseShopperConfiguration.mockReturnValue(false)
const {result} = renderHook(() => useAutomaticCapture())
expect(result.current).toBe(false)
expect(mockUseShopperConfiguration).toHaveBeenCalledWith('cardCaptureAutomatic')
})
test('returns true (default) when cardCaptureAutomatic is undefined', () => {
mockUseShopperConfiguration.mockReturnValue(undefined)
const {result} = renderHook(() => useAutomaticCapture())
expect(result.current).toBe(true)
expect(mockUseShopperConfiguration).toHaveBeenCalledWith('cardCaptureAutomatic')
})
})
describe('useFutureUsageOffSession hook', () => {
beforeEach(() => {
jest.clearAllMocks()
})
test('returns true when futureUsageOffSession is true', () => {
mockUseShopperConfiguration.mockReturnValue(true)
const {result} = renderHook(() => useFutureUsageOffSession())
expect(result.current).toBe(true)
expect(mockUseShopperConfiguration).toHaveBeenCalledWith('futureUsageOffSession')
})
test('returns false when futureUsageOffSession is false', () => {
mockUseShopperConfiguration.mockReturnValue(false)
const {result} = renderHook(() => useFutureUsageOffSession())
expect(result.current).toBe(false)
expect(mockUseShopperConfiguration).toHaveBeenCalledWith('futureUsageOffSession')
})
test('returns false (default) when futureUsageOffSession is undefined', () => {
mockUseShopperConfiguration.mockReturnValue(undefined)
const {result} = renderHook(() => useFutureUsageOffSession())
expect(result.current).toBe(false)
expect(mockUseShopperConfiguration).toHaveBeenCalledWith('futureUsageOffSession')
})
test('returns false (default) when futureUsageOffSession is null', () => {
mockUseShopperConfiguration.mockReturnValue(null)
const {result} = renderHook(() => useFutureUsageOffSession())
expect(result.current).toBe(false)
expect(mockUseShopperConfiguration).toHaveBeenCalledWith('futureUsageOffSession')
})
})