-
Notifications
You must be signed in to change notification settings - Fork 212
Expand file tree
/
Copy pathindex.test.js
More file actions
522 lines (431 loc) · 17.2 KB
/
index.test.js
File metadata and controls
522 lines (431 loc) · 17.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
/*
* Copyright (c) 2021, 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 {
renderWithProviders,
createPathWithDefaults
} from '@salesforce/retail-react-app/app/utils/test-utils'
import userEvent from '@testing-library/user-event'
import {screen, waitFor, within} from '@testing-library/react'
import SearchInput from '@salesforce/retail-react-app/app/components/search/index'
import Suggestions from '@salesforce/retail-react-app/app/components/search/partials/suggestions'
import {
clearSessionJSONItem,
getSessionJSONItem,
setSessionJSONItem,
noop
} from '@salesforce/retail-react-app/app/utils/utils'
import {RECENT_SEARCH_KEY, RECENT_SEARCH_LIMIT} from '@salesforce/retail-react-app/app/constants'
import mockSearchResults from '@salesforce/retail-react-app/app/mocks/searchResults'
import mockConfig from '@salesforce/retail-react-app/config/mocks/default'
import {rest} from 'msw'
import {mockCustomerBaskets} from '@salesforce/retail-react-app/app/mocks/mock-data'
import {getConfig} from '@salesforce/pwa-kit-runtime/utils/ssr-config'
jest.mock('@salesforce/pwa-kit-runtime/utils/ssr-config', () => {
const origin = jest.requireActual('@salesforce/pwa-kit-react-sdk/ssr/universal/utils')
return {
...origin,
getConfig: jest.fn()
}
})
function getMockedConfigWithCommerceAgentSettings(mockConfig, enabled, askAgentOnSearch) {
const commerceAgentSettings = mockConfig.app.commerceAgent
const changedSettings = {
...commerceAgentSettings,
enabled,
askAgentOnSearch
}
return {
...mockConfig,
app: {
...mockConfig.app,
commerceAgent: changedSettings
}
}
}
function setupUserEvent() {
return userEvent.setup({
advanceTimers: () => jest.runOnlyPendingTimers()
})
}
beforeEach(() => {
clearSessionJSONItem(RECENT_SEARCH_KEY)
jest.resetModules()
global.server.use(
rest.get('*/search-suggestions', (req, res, ctx) => {
return res(ctx.delay(0), ctx.status(200), ctx.json(mockSearchResults))
}),
rest.get('*/customers/:customerId/baskets', (req, res, ctx) => {
return res(ctx.delay(0), ctx.status(200), ctx.json(mockCustomerBaskets))
})
)
getConfig.mockImplementation(() => mockConfig)
jest.useFakeTimers()
})
test('renders SearchInput', () => {
renderWithProviders(<SearchInput />)
const searchInput = document.querySelector('input[type="search"]')
expect(searchInput).toBeInTheDocument()
})
test('changes url when enter is pressed', async () => {
const user = setupUserEvent()
renderWithProviders(<SearchInput />, {
wrapperProps: {siteAlias: 'uk', appConfig: mockConfig.app}
})
const searchInput = document.querySelector('input[type="search"]')
await user.type(searchInput, 'Dresses{enter}')
await waitFor(() => {
expect(window.location.pathname).toEqual(createPathWithDefaults('/search'))
expect(window.location.search).toBe('?q=Dresses')
const suggestionPopoverEl = screen.getByTestId('sf-suggestion-popover')
expect(suggestionPopoverEl).toBeInTheDocument()
})
})
test('shows previously searched items when focused', async () => {
const user = setupUserEvent()
setSessionJSONItem(RECENT_SEARCH_KEY, ['Dresses', 'Suits', 'Tops'])
renderWithProviders(<SearchInput />)
const searchInput = document.querySelector('input[type="search"]')
await user.clear(searchInput)
await searchInput.focus()
const suggestionPopoverEl = await screen.getByTestId('sf-suggestion-popover')
const recentSearchesEl = await within(suggestionPopoverEl).getByTestId('sf-suggestion-recent')
expect(recentSearchesEl).toBeInTheDocument()
expect(
document.querySelectorAll('[data-testid=sf-suggestion-popover] button[name=recent-search]')
).toHaveLength(3)
})
test('saves recent searches on submit', async () => {
jest.useRealTimers()
const {user} = renderWithProviders(<SearchInput />)
setSessionJSONItem(RECENT_SEARCH_KEY, ['Dresses', 'Suits', 'Tops'])
renderWithProviders(<SearchInput />)
const searchInput = document.querySelector('input[type="search"]')
await user.type(searchInput, 'Gloves{enter}')
expect(getSessionJSONItem(RECENT_SEARCH_KEY)).toHaveLength(4)
})
test('limits number of saved recent searches', async () => {
jest.useRealTimers()
const {user} = renderWithProviders(<SearchInput />)
setSessionJSONItem(RECENT_SEARCH_KEY, ['Dresses', 'Suits', 'Tops', 'Gloves', 'Bracelets'])
renderWithProviders(<SearchInput />)
const searchInput = document.querySelector('input[type="search"]')
await user.type(searchInput, 'Ties{enter}')
expect(getSessionJSONItem(RECENT_SEARCH_KEY)).toHaveLength(RECENT_SEARCH_LIMIT)
})
test('suggestions render when there are some', async () => {
jest.useRealTimers()
const {user} = renderWithProviders(<SearchInput />)
const searchInput = document.querySelector('input[type="search"]')
await user.type(searchInput, 'Dress')
expect(searchInput.value).toBe('Dress')
const suggestionPopoverEl = await screen.getByTestId('sf-suggestion-popover')
await waitFor(() => {
const suggestionsEls = within(suggestionPopoverEl).getAllByTestId('sf-suggestion')
expect(suggestionsEls.length).toBeGreaterThan(0)
const hasDressesSuggestion = suggestionsEls.some((el) =>
el.querySelector('button')?.textContent?.includes('Dresses')
)
expect(hasDressesSuggestion).toBe(true)
})
})
test('clicking clear searches clears recent searches', async () => {
const user = setupUserEvent()
setSessionJSONItem(RECENT_SEARCH_KEY, ['Dresses', 'Suits', 'Tops'])
renderWithProviders(<SearchInput />)
const searchInput = document.querySelector('input[type="search"]')
await searchInput.focus()
const clearSearch = document.getElementById('clear-search')
await user.click(clearSearch)
expect(getSessionJSONItem(RECENT_SEARCH_KEY)).toBeUndefined()
})
test('passing undefined to Suggestions returns undefined', async () => {
const suggestions = renderWithProviders(
<Suggestions suggestions={undefined} closeAndNavigate={noop} />
)
expect(suggestions.innerHTML).toBeUndefined()
})
test('when commerceAgent is disabled, chat functions are not called', async () => {
const user = setupUserEvent()
getConfig.mockImplementation(() =>
getMockedConfigWithCommerceAgentSettings(mockConfig, 'false', 'true')
)
// Create spies for chat functions
const sendTextMessageSpy = jest.fn()
const launchChatSpy = jest.fn()
// Mock window.embeddedservice_bootstrap
window.embeddedservice_bootstrap = {
utilAPI: {
sendTextMessage: sendTextMessageSpy,
launchChat: launchChatSpy
}
}
renderWithProviders(<SearchInput />)
const searchInput = document.querySelector('input[type="search"]')
// Perform a search
await user.type(searchInput, 'test search{enter}')
// Verify chat functions were not called
expect(sendTextMessageSpy).not.toHaveBeenCalled()
expect(launchChatSpy).not.toHaveBeenCalled()
})
test('when askAgentOnSearch is disabled, chat functions are not called', async () => {
const user = setupUserEvent()
getConfig.mockImplementation(() =>
getMockedConfigWithCommerceAgentSettings(mockConfig, 'false', 'true')
)
// Create spies for chat functions
const sendTextMessageSpy = jest.fn()
const launchChatSpy = jest.fn()
// Mock window.embeddedservice_bootstrap
window.embeddedservice_bootstrap = {
utilAPI: {
sendTextMessage: sendTextMessageSpy,
launchChat: launchChatSpy
}
}
renderWithProviders(<SearchInput />)
const searchInput = document.querySelector('input[type="search"]')
// Perform a search
await user.type(searchInput, 'test search{enter}')
// Verify chat functions were not called
expect(sendTextMessageSpy).not.toHaveBeenCalled()
expect(launchChatSpy).not.toHaveBeenCalled()
})
test('when askAgentOnSearch is enabled and sendTextMessage succeeds, launchChat is not called', async () => {
jest.useFakeTimers()
const user = setupUserEvent()
getConfig.mockImplementation(() =>
getMockedConfigWithCommerceAgentSettings(mockConfig, 'true', 'true')
)
// Create spies for chat functions
const sendTextMessageSpy = jest.fn().mockResolvedValue('success')
const launchChatSpy = jest.fn()
// Mock window.embeddedservice_bootstrap
window.embeddedservice_bootstrap = {
utilAPI: {
sendTextMessage: sendTextMessageSpy,
launchChat: launchChatSpy
}
}
renderWithProviders(<SearchInput />)
const searchInput = document.querySelector('input[type="search"]')
// Perform a search
await user.type(searchInput, 'test search{enter}')
// Wait for the setTimeout in onSubmitSearch
jest.advanceTimersByTime(500)
// Verify sendTextMessage was called but launchChat was not
expect(sendTextMessageSpy).toHaveBeenCalledWith('test search')
expect(launchChatSpy).not.toHaveBeenCalled()
})
test('when sendTextMessage fails and launchChat succeeds, sends message after bot response', async () => {
const user = setupUserEvent()
getConfig.mockImplementation(() =>
getMockedConfigWithCommerceAgentSettings(mockConfig, 'true', 'true')
)
// Create spies for chat functions
const sendTextMessageSpy = jest
.fn()
.mockRejectedValueOnce(
'invoke API before the onEmbeddedMessagingConversationOpened event is fired'
)
.mockResolvedValue('success')
const launchChatSpy = jest
.fn()
.mockResolvedValue('Successfully initialized the messaging client')
// Mock window.embeddedservice_bootstrap
window.embeddedservice_bootstrap = {
utilAPI: {
sendTextMessage: sendTextMessageSpy,
launchChat: launchChatSpy
}
}
renderWithProviders(<SearchInput />)
const searchInput = document.querySelector('input[type="search"]')
// Perform a search
await user.type(searchInput, 'test search{enter}')
// Wait for the setTimeout in onSubmitSearch
jest.advanceTimersByTime(500)
// Verify first sendTextMessage failed and triggered launchChat
expect(sendTextMessageSpy).toHaveBeenCalledWith('test search')
expect(launchChatSpy).toHaveBeenCalled()
// Simulate bot response
window.dispatchEvent(
new CustomEvent('onEmbeddedMessageSent', {
detail: {
conversationEntry: {
sender: {
role: 'Chatbot'
}
}
}
})
)
// Wait for the setTimeout after bot message
jest.advanceTimersByTime(500)
// Verify second sendTextMessage was called
expect(sendTextMessageSpy).toHaveBeenCalledTimes(2)
expect(sendTextMessageSpy).toHaveBeenLastCalledWith('test search')
// Simulate bot response again
window.dispatchEvent(
new CustomEvent('onEmbeddedMessageSent', {
detail: {
conversationEntry: {
sender: {
role: 'Chatbot'
}
}
}
})
)
// Wait for the setTimeout after bot message
jest.advanceTimersByTime(500)
// Verify sendTextMessage was not called again
expect(sendTextMessageSpy).toHaveBeenCalledTimes(2)
})
test('when sendTextMessage fails and launchChat returns maximized message, no additional send text is triggered', async () => {
jest.useFakeTimers()
const user = setupUserEvent()
getConfig.mockImplementation(() =>
getMockedConfigWithCommerceAgentSettings(mockConfig, 'true', 'true')
)
// Create spies for chat functions
const sendTextMessageSpy = jest
.fn()
.mockRejectedValue(
'invoke API before the onEmbeddedMessagingConversationOpened event is fired'
)
const launchChatSpy = jest.fn().mockResolvedValue('Successfully maximized the messaging client')
// Mock window.embeddedservice_bootstrap
window.embeddedservice_bootstrap = {
utilAPI: {
sendTextMessage: sendTextMessageSpy,
launchChat: launchChatSpy
}
}
renderWithProviders(<SearchInput />)
const searchInput = document.querySelector('input[type="search"]')
// Perform a search
await user.type(searchInput, 'test search{enter}')
// Wait for the setTimeout in onSubmitSearch
jest.advanceTimersByTime(500)
// Verify sendTextMessage was called and failed
expect(sendTextMessageSpy).toHaveBeenCalledWith('test search')
expect(launchChatSpy).toHaveBeenCalled()
// Wait for any potential setTimeout after launchChat
jest.advanceTimersByTime(500)
// Verify sendTextMessage was only called once
expect(sendTextMessageSpy).toHaveBeenCalledTimes(1)
})
test('when sendTextMessage and launchChat both fail, no additional send text is triggered', async () => {
jest.useFakeTimers()
const user = setupUserEvent()
getConfig.mockImplementation(() =>
getMockedConfigWithCommerceAgentSettings(mockConfig, 'true', 'true')
)
// Create spies for chat functions
const sendTextMessageSpy = jest
.fn()
.mockRejectedValue(
'invoke API before the onEmbeddedMessagingConversationOpened event is fired'
)
const launchChatSpy = jest.fn().mockRejectedValue('Failed to launch chat')
// Mock window.embeddedservice_bootstrap
window.embeddedservice_bootstrap = {
utilAPI: {
sendTextMessage: sendTextMessageSpy,
launchChat: launchChatSpy
}
}
renderWithProviders(<SearchInput />)
const searchInput = document.querySelector('input[type="search"]')
// Perform a search
await user.type(searchInput, 'test search{enter}')
// Wait for the setTimeout in onSubmitSearch
jest.advanceTimersByTime(500)
// Verify sendTextMessage was called and failed
expect(sendTextMessageSpy).toHaveBeenCalledWith('test search')
expect(launchChatSpy).toHaveBeenCalled()
// Wait for any potential setTimeout after launchChat
jest.advanceTimersByTime(500)
// Verify sendTextMessage was only called once
expect(sendTextMessageSpy).toHaveBeenCalledTimes(1)
})
test('handles search phrase in formatSuggestions', async () => {
const user = setupUserEvent()
const mockResultsWithPhrase = {
...mockSearchResults,
searchPhrase: 'test search phrase'
}
global.server.use(
rest.get('*/search-suggestions', (req, res, ctx) => {
return res(ctx.delay(0), ctx.status(200), ctx.json(mockResultsWithPhrase))
})
)
renderWithProviders(<SearchInput />)
const searchInput = document.querySelector('input[type="search"]')
await user.type(searchInput, 'test')
// Wait for suggestions to load with search phrase
await waitFor(() => {
expect(screen.getByTestId('sf-suggestion-popover')).toBeInTheDocument()
})
})
test('handles phrase suggestions in formatSuggestions', async () => {
const user = setupUserEvent()
// Mock search results with phrase suggestions
const mockResultsWithPhrases = {
...mockSearchResults,
productSuggestions: {
...mockSearchResults.productSuggestions,
suggestedPhrases: [
{phrase: 'running shoes', exactMatch: true},
{phrase: 'athletic wear', exactMatch: false}
]
}
}
global.server.use(
rest.get('*/search-suggestions', (req, res, ctx) => {
return res(ctx.delay(0), ctx.status(200), ctx.json(mockResultsWithPhrases))
})
)
renderWithProviders(<SearchInput />)
const searchInput = document.querySelector('input[type="search"]')
await user.type(searchInput, 'running')
// Wait for suggestions to load with phrase suggestions
await waitFor(() => {
expect(screen.getByTestId('sf-suggestion-popover')).toBeInTheDocument()
})
})
test('handles product suggestions with images', async () => {
const user = setupUserEvent()
// Mock search results with product suggestions that have images
const mockResultsWithProductImages = {
...mockSearchResults,
productSuggestions: {
...mockSearchResults.productSuggestions,
products: [
{
...mockSearchResults.productSuggestions.products[0],
image: {
disBaseLink: 'https://example.com/product-image.jpg'
}
}
]
}
}
global.server.use(
rest.get('*/search-suggestions', (req, res, ctx) => {
return res(ctx.delay(0), ctx.status(200), ctx.json(mockResultsWithProductImages))
})
)
renderWithProviders(<SearchInput />)
const searchInput = document.querySelector('input[type="search"]')
await user.type(searchInput, 'Dress')
// Wait for suggestions to load with product images
await waitFor(() => {
expect(screen.getByTestId('sf-suggestion-popover')).toBeInTheDocument()
})
})