@coveo/quantic 3.32.0 → 3.33.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (316) hide show
  1. package/README.md +15 -15
  2. package/docs/out/quantic-docs.json +1 -1
  3. package/force-app/main/default/lwc/quanticAriaLive/__tests__/quanticAriaLive.test.js +106 -0
  4. package/force-app/main/default/lwc/quanticBreadcrumbManager/__tests__/quanticBreadcrumbManager.test.js +752 -0
  5. package/force-app/main/default/lwc/quanticBreadcrumbManager/e2e/fixture.ts +76 -0
  6. package/force-app/main/default/lwc/quanticBreadcrumbManager/e2e/pageObject.ts +282 -0
  7. package/force-app/main/default/lwc/quanticBreadcrumbManager/e2e/quanticBreadcrumbManager.e2e.ts +167 -0
  8. package/force-app/main/default/lwc/quanticCarousel/__tests__/quanticCarousel.test.js +262 -0
  9. package/force-app/main/default/lwc/quanticCaseClassification/__tests__/quanticCaseClassification.test.js +819 -0
  10. package/force-app/main/default/lwc/quanticCaseClassification/e2e/data.ts +23 -0
  11. package/force-app/main/default/lwc/quanticCaseClassification/e2e/fixture.ts +51 -0
  12. package/force-app/main/default/lwc/quanticCaseClassification/e2e/pageObject.ts +152 -0
  13. package/force-app/main/default/lwc/quanticCaseClassification/e2e/quanticCaseClassification.e2e.ts +269 -0
  14. package/force-app/main/default/lwc/quanticCategoryFacet/__tests__/quanticCategoryFacet.test.js +1183 -0
  15. package/force-app/main/default/lwc/quanticCategoryFacet/e2e/data.ts +27 -0
  16. package/force-app/main/default/lwc/quanticCategoryFacet/e2e/fixture.ts +75 -0
  17. package/force-app/main/default/lwc/quanticCategoryFacet/e2e/pageObject.ts +55 -0
  18. package/force-app/main/default/lwc/quanticCategoryFacet/e2e/quanticCategoryFacet.e2e.ts +199 -0
  19. package/force-app/main/default/lwc/quanticCitation/__tests__/quanticCitation.test.js +371 -0
  20. package/force-app/main/default/lwc/quanticColoredResultBadge/__tests__/quanticColoredResultBadge.test.js +212 -0
  21. package/force-app/main/default/lwc/quanticDateFacet/__tests__/quanticDateFacet.test.js +688 -0
  22. package/force-app/main/default/lwc/quanticDateFacet/e2e/data.ts +24 -0
  23. package/force-app/main/default/lwc/quanticDateFacet/e2e/fixture.ts +68 -0
  24. package/force-app/main/default/lwc/quanticDateFacet/e2e/pageObject.ts +27 -0
  25. package/force-app/main/default/lwc/quanticDateFacet/e2e/quanticDateFacet.e2e.ts +145 -0
  26. package/force-app/main/default/lwc/quanticDidYouMean/__tests__/quanticDidYouMean.test.js +348 -0
  27. package/force-app/main/default/lwc/quanticDidYouMean/e2e/data.ts +48 -0
  28. package/force-app/main/default/lwc/quanticDidYouMean/e2e/fixture.ts +80 -0
  29. package/force-app/main/default/lwc/quanticDidYouMean/e2e/pageObject.ts +173 -0
  30. package/force-app/main/default/lwc/quanticDidYouMean/e2e/quanticDidYouMean.e2e.ts +219 -0
  31. package/force-app/main/default/lwc/quanticDocumentSuggestion/__tests__/quanticDocumentSuggestion.test.js +404 -0
  32. package/force-app/main/default/lwc/quanticDocumentSuggestion/e2e/fixture.ts +38 -0
  33. package/force-app/main/default/lwc/quanticDocumentSuggestion/e2e/pageObject.ts +52 -0
  34. package/force-app/main/default/lwc/quanticDocumentSuggestion/e2e/quanticDocumentSuggestion.e2e.ts +102 -0
  35. package/force-app/main/default/lwc/quanticFacet/__tests__/quanticFacet.test.js +1105 -0
  36. package/force-app/main/default/lwc/quanticFacet/e2e/data.ts +21 -0
  37. package/force-app/main/default/lwc/quanticFacet/e2e/fixture.ts +73 -0
  38. package/force-app/main/default/lwc/quanticFacet/e2e/pageObject.ts +67 -0
  39. package/force-app/main/default/lwc/quanticFacet/e2e/quanticFacet.e2e.ts +208 -0
  40. package/force-app/main/default/lwc/quanticFacetCaption/__tests__/quanticFacetCaption.test.js +28 -0
  41. package/force-app/main/default/lwc/quanticFacetManager/__tests__/quanticFacetManager.test.js +178 -0
  42. package/force-app/main/default/lwc/quanticFacetManager/e2e/fixture.ts +64 -0
  43. package/force-app/main/default/lwc/quanticFacetManager/e2e/pageObject.ts +23 -0
  44. package/force-app/main/default/lwc/quanticFacetManager/e2e/quanticFacetManager.e2e.ts +82 -0
  45. package/force-app/main/default/lwc/quanticFeedback/__tests__/quanticFeedback.test.js +392 -0
  46. package/force-app/main/default/lwc/quanticFeedbackModal/__tests__/quanticFeedbackModal.test.js +448 -0
  47. package/force-app/main/default/lwc/quanticFeedbackModalQna/__tests__/quanticFeedbackModalQna.test.js +298 -0
  48. package/force-app/main/default/lwc/quanticFoldedResultList/__tests__/quanticFoldedResultList.test.js +323 -0
  49. package/force-app/main/default/lwc/quanticFoldedResultList/e2e/fixture.ts +70 -0
  50. package/force-app/main/default/lwc/quanticFoldedResultList/e2e/pageObject.ts +81 -0
  51. package/force-app/main/default/lwc/quanticFoldedResultList/e2e/quanticFoldedResultList.e2e.ts +69 -0
  52. package/force-app/main/default/lwc/quanticGeneratedAnswer/__tests__/quanticGeneratedAnswer.test.js +1158 -0
  53. package/force-app/main/default/lwc/quanticGeneratedAnswer/e2e/data.ts +56 -0
  54. package/force-app/main/default/lwc/quanticGeneratedAnswer/e2e/fixture.ts +185 -0
  55. package/force-app/main/default/lwc/quanticGeneratedAnswer/e2e/pageObject.ts +451 -0
  56. package/force-app/main/default/lwc/quanticGeneratedAnswer/e2e/quanticGeneratedAnswer.e2e.ts +337 -0
  57. package/force-app/main/default/lwc/quanticGeneratedAnswerContent/__tests__/quanticGeneratedAnswerContent.test.js +151 -0
  58. package/force-app/main/default/lwc/quanticHeading/__tests__/quanticHeading.test.js +71 -0
  59. package/force-app/main/default/lwc/quanticHeadlessLoader/__tests__/quanticHeadlessLoader.test.js +651 -0
  60. package/force-app/main/default/lwc/quanticInsightInterface/__tests__/quanticInsightInterface.test.js +194 -0
  61. package/force-app/main/default/lwc/quanticInsightInterface/quanticInsightInterface.js +1 -1
  62. package/force-app/main/default/lwc/quanticInsightSummary/__tests__/quanticInsightSummary.test.js +230 -0
  63. package/force-app/main/default/lwc/quanticModal/__tests__/quanticModal.test.js +205 -0
  64. package/force-app/main/default/lwc/quanticNotifications/__tests__/quanticNotifications.test.js +309 -0
  65. package/force-app/main/default/lwc/quanticNotifications/e2e/fixture.ts +58 -0
  66. package/force-app/main/default/lwc/quanticNotifications/e2e/pageObject.ts +55 -0
  67. package/force-app/main/default/lwc/quanticNotifications/e2e/quanticNotifications.e2e.ts +47 -0
  68. package/force-app/main/default/lwc/quanticNumericFacet/__tests__/quanticNumericFacet.test.js +953 -0
  69. package/force-app/main/default/lwc/quanticNumericFacet/e2e/data.ts +28 -0
  70. package/force-app/main/default/lwc/quanticNumericFacet/e2e/fixture.ts +71 -0
  71. package/force-app/main/default/lwc/quanticNumericFacet/e2e/pageObject.ts +59 -0
  72. package/force-app/main/default/lwc/quanticNumericFacet/e2e/quanticNumericFacet.e2e.ts +164 -0
  73. package/force-app/main/default/lwc/quanticPager/__tests__/quanticPager.test.js +430 -0
  74. package/force-app/main/default/lwc/quanticPager/e2e/fixture.ts +65 -0
  75. package/force-app/main/default/lwc/quanticPager/e2e/pageObject.ts +69 -0
  76. package/force-app/main/default/lwc/quanticPager/e2e/quanticPager.e2e.ts +106 -0
  77. package/force-app/main/default/lwc/quanticPlaceholder/__tests__/quanticPlaceholder.test.js +47 -0
  78. package/force-app/main/default/lwc/quanticQuickviewContent/__tests__/data/defaultTestCase.json +13 -0
  79. package/force-app/main/default/lwc/quanticQuickviewContent/__tests__/data/youtubeTestCase.json +14 -0
  80. package/force-app/main/default/lwc/quanticQuickviewContent/__tests__/quanticQuickviewContent.test.js +82 -0
  81. package/force-app/main/default/lwc/quanticRadioButtonsGroup/__tests__/quanticRadioButtonsGroup.test.js +273 -0
  82. package/force-app/main/default/lwc/quanticRecentQueriesList/__tests__/quanticRecentQueriesList.test.js +448 -0
  83. package/force-app/main/default/lwc/quanticRecentQueriesList/e2e/fixture.ts +42 -0
  84. package/force-app/main/default/lwc/quanticRecentQueriesList/e2e/pageObject.ts +55 -0
  85. package/force-app/main/default/lwc/quanticRecentQueriesList/e2e/quanticRecentQueriesList.e2e.ts +93 -0
  86. package/force-app/main/default/lwc/quanticRecentResultsList/__tests__/quanticRecentResultsList.test.js +516 -0
  87. package/force-app/main/default/lwc/quanticRecentResultsList/e2e/fixture.ts +42 -0
  88. package/force-app/main/default/lwc/quanticRecentResultsList/e2e/pageObject.ts +61 -0
  89. package/force-app/main/default/lwc/quanticRecentResultsList/e2e/quanticRecentResultsList.e2e.ts +48 -0
  90. package/force-app/main/default/lwc/quanticRecommendationList/__tests__/quanticRecommendationList.test.js +491 -0
  91. package/force-app/main/default/lwc/quanticRecommendationList/e2e/fixture.ts +35 -0
  92. package/force-app/main/default/lwc/quanticRecommendationList/e2e/pageObject.ts +52 -0
  93. package/force-app/main/default/lwc/quanticRecommendationList/e2e/quanticRecommendationList.e2e.ts +53 -0
  94. package/force-app/main/default/lwc/quanticRefineModalContent/__tests__/quanticRefineModalContent.test.js +747 -0
  95. package/force-app/main/default/lwc/quanticRefineToggle/__tests__/quanticRefineToggle.test.js +542 -0
  96. package/force-app/main/default/lwc/quanticResultAction/__tests__/quanticResultAction.test.js +262 -0
  97. package/force-app/main/default/lwc/quanticResultActionBar/__tests__/quanticResultActionBar.test.js +141 -0
  98. package/force-app/main/default/lwc/quanticResultChildren/__tests__/quanticResultChildren.test.js +340 -0
  99. package/force-app/main/default/lwc/quanticResultCopyToClipboard/__tests__/quanticResultCopyToClipboard.test.js +300 -0
  100. package/force-app/main/default/lwc/quanticResultCopyToClipboard/e2e/fixture.ts +46 -0
  101. package/force-app/main/default/lwc/quanticResultCopyToClipboard/e2e/pageObject.ts +49 -0
  102. package/force-app/main/default/lwc/quanticResultCopyToClipboard/e2e/quanticResultCopyToClipboard.e2e.ts +40 -0
  103. package/force-app/main/default/lwc/quanticResultDate/__tests__/quanticResultDate.test.js +144 -0
  104. package/force-app/main/default/lwc/quanticResultField/__tests__/quanticResultField.test.js +120 -0
  105. package/force-app/main/default/lwc/quanticResultHighlightedTextField/__tests__/quanticResultHighlightedTextField.test.js +209 -0
  106. package/force-app/main/default/lwc/quanticResultLink/__tests__/quanticResultLink.test.js +261 -0
  107. package/force-app/main/default/lwc/quanticResultList/__tests__/quanticResultList.test.js +342 -0
  108. package/force-app/main/default/lwc/quanticResultList/e2e/fixture.ts +66 -0
  109. package/force-app/main/default/lwc/quanticResultList/e2e/pageObject.ts +81 -0
  110. package/force-app/main/default/lwc/quanticResultList/e2e/quanticResultList.e2e.ts +69 -0
  111. package/force-app/main/default/lwc/quanticResultMultiValueText/__tests__/quanticResultMultiValueText.test.js +235 -0
  112. package/force-app/main/default/lwc/quanticResultNumber/__tests__/quanticResultNumber.test.js +144 -0
  113. package/force-app/main/default/lwc/quanticResultPrintableUri/__tests__/quanticResultPrintableUri.test.js +324 -0
  114. package/force-app/main/default/lwc/quanticResultQuickview/__tests__/quanticResultQuickview.test.js +301 -0
  115. package/force-app/main/default/lwc/quanticResultQuickview/e2e/fixture.ts +81 -0
  116. package/force-app/main/default/lwc/quanticResultQuickview/e2e/pageObject.ts +38 -0
  117. package/force-app/main/default/lwc/quanticResultQuickview/e2e/quanticResultQuickView.e2e.ts +66 -0
  118. package/force-app/main/default/lwc/quanticResultTemplate/__tests__/quanticResultTemplate.test.js +90 -0
  119. package/force-app/main/default/lwc/quanticResultText/__tests__/quanticResultText.test.js +155 -0
  120. package/force-app/main/default/lwc/quanticResultsPerPage/__tests__/quanticResultsPerPage.test.js +464 -0
  121. package/force-app/main/default/lwc/quanticResultsPerPage/e2e/fixture.ts +74 -0
  122. package/force-app/main/default/lwc/quanticResultsPerPage/e2e/pageObject.ts +85 -0
  123. package/force-app/main/default/lwc/quanticResultsPerPage/e2e/quanticResultsPerPage.e2e.ts +97 -0
  124. package/force-app/main/default/lwc/quanticSearchBox/__tests__/quanticSearchBox.test.js +487 -0
  125. package/force-app/main/default/lwc/quanticSearchBox/e2e/fixture.ts +84 -0
  126. package/force-app/main/default/lwc/quanticSearchBox/e2e/pageObject.ts +45 -0
  127. package/force-app/main/default/lwc/quanticSearchBox/e2e/quanticSearchBox.e2e.ts +159 -0
  128. package/force-app/main/default/lwc/quanticSearchBoxInput/__tests__/quanticSearchBoxInput.test.js +743 -0
  129. package/force-app/main/default/lwc/quanticSearchBoxSuggestionsList/__tests__/quanticSearchBoxSuggestionsList.test.js +571 -0
  130. package/force-app/main/default/lwc/quanticSearchBoxSuggestionsList/e2e/fixture.ts +110 -0
  131. package/force-app/main/default/lwc/quanticSearchBoxSuggestionsList/e2e/pageObject.ts +113 -0
  132. package/force-app/main/default/lwc/quanticSearchBoxSuggestionsList/e2e/quanticSearchBoxSuggestionsList.e2e.ts +299 -0
  133. package/force-app/main/default/lwc/quanticSmartSnippet/__tests__/quanticSmartSnippet.test.js +341 -0
  134. package/force-app/main/default/lwc/quanticSmartSnippet/e2e/data.ts +21 -0
  135. package/force-app/main/default/lwc/quanticSmartSnippet/e2e/fixture.ts +91 -0
  136. package/force-app/main/default/lwc/quanticSmartSnippet/e2e/pageObject.ts +196 -0
  137. package/force-app/main/default/lwc/quanticSmartSnippet/e2e/quanticSmartSnippet.e2e.ts +192 -0
  138. package/force-app/main/default/lwc/quanticSmartSnippetAnswer/__tests__/quanticSmartSnippetAnswer.test.js +126 -0
  139. package/force-app/main/default/lwc/quanticSmartSnippetSource/__tests__/quanticSmartSnippetSource.test.js +290 -0
  140. package/force-app/main/default/lwc/quanticSmartSnippetSuggestions/__tests__/quanticSmartSnippetSuggestions.test.js +329 -0
  141. package/force-app/main/default/lwc/quanticSmartSnippetSuggestions/e2e/data.ts +31 -0
  142. package/force-app/main/default/lwc/quanticSmartSnippetSuggestions/e2e/fixture.ts +93 -0
  143. package/force-app/main/default/lwc/quanticSmartSnippetSuggestions/e2e/pageObject.ts +160 -0
  144. package/force-app/main/default/lwc/quanticSmartSnippetSuggestions/e2e/quanticSmartSnippetSuggestions.e2e.ts +127 -0
  145. package/force-app/main/default/lwc/quanticSort/__tests__/quanticSort.test.js +416 -0
  146. package/force-app/main/default/lwc/quanticSort/e2e/fixture.ts +61 -0
  147. package/force-app/main/default/lwc/quanticSort/e2e/pageObject.ts +89 -0
  148. package/force-app/main/default/lwc/quanticSort/e2e/quanticSort.e2e.ts +91 -0
  149. package/force-app/main/default/lwc/quanticSourceCitations/__tests__/quanticSourceCitations.test.js +136 -0
  150. package/force-app/main/default/lwc/quanticStandaloneSearchBox/__tests__/quanticStandaloneSearchBox.test.js +387 -0
  151. package/force-app/main/default/lwc/quanticStandaloneSearchBox/e2e/fixture.ts +53 -0
  152. package/force-app/main/default/lwc/quanticStandaloneSearchBox/e2e/pageObject.ts +54 -0
  153. package/force-app/main/default/lwc/quanticStandaloneSearchBox/e2e/quanticStandaloneSearchBox.e2e.ts +72 -0
  154. package/force-app/main/default/lwc/quanticStatefulButton/__tests__/quanticStatefulButton.test.js +222 -0
  155. package/force-app/main/default/lwc/quanticSummary/__tests__/quanticSummary.test.js +244 -0
  156. package/force-app/main/default/lwc/quanticTab/__tests__/quanticTab.test.js +333 -0
  157. package/force-app/main/default/lwc/quanticTab/e2e/fixture.ts +56 -0
  158. package/force-app/main/default/lwc/quanticTab/e2e/pageObject.ts +68 -0
  159. package/force-app/main/default/lwc/quanticTab/e2e/quanticTab.e2e.ts +72 -0
  160. package/force-app/main/default/lwc/quanticTabBar/__tests__/quanticTabBar.test.js +331 -0
  161. package/force-app/main/default/lwc/quanticTabBar/e2e/fixture.ts +61 -0
  162. package/force-app/main/default/lwc/quanticTabBar/e2e/pageObject.ts +80 -0
  163. package/force-app/main/default/lwc/quanticTabBar/e2e/quanticTabBar.e2e.ts +171 -0
  164. package/force-app/main/default/lwc/quanticTimeframeFacet/__tests__/quanticTimeframeFacet.test.js +1037 -0
  165. package/force-app/main/default/lwc/quanticTimeframeFacet/e2e/fixture.ts +58 -0
  166. package/force-app/main/default/lwc/quanticTimeframeFacet/e2e/pageObject.ts +43 -0
  167. package/force-app/main/default/lwc/quanticTimeframeFacet/e2e/quanticTimeframeFacet.e2e.ts +160 -0
  168. package/force-app/main/default/lwc/quanticTooltip/__tests__/quanticTooltip.test.js +107 -0
  169. package/force-app/main/default/lwc/quanticUserAction/__tests__/quanticUserAction.test.js +427 -0
  170. package/force-app/main/default/lwc/quanticUserActionsSession/__tests__/quanticUserActionsSession.test.js +269 -0
  171. package/force-app/main/default/lwc/quanticUserActionsTimeline/__tests__/data/userActionsState.json +89 -0
  172. package/force-app/main/default/lwc/quanticUserActionsTimeline/__tests__/quanticUserActionsTimeline.test.js +511 -0
  173. package/force-app/main/default/lwc/quanticUserActionsToggle/__tests__/quanticUserActionsToggle.test.js +229 -0
  174. package/force-app/main/default/lwc/quanticUserActionsToggle/e2e/data.ts +32 -0
  175. package/force-app/main/default/lwc/quanticUserActionsToggle/e2e/fixture.ts +32 -0
  176. package/force-app/main/default/lwc/quanticUserActionsToggle/e2e/pageObject.ts +71 -0
  177. package/force-app/main/default/lwc/quanticUserActionsToggle/e2e/quanticUserActionsToggle.e2e.ts +39 -0
  178. package/force-app/main/default/lwc/quanticUtils/__tests__/citationAnchoringUtils.test.js +84 -0
  179. package/force-app/main/default/lwc/quanticUtils/__tests__/facetDependenciesUtils.test.js +92 -0
  180. package/force-app/main/default/lwc/quanticUtils/__tests__/markdownUtils.test.js +71 -0
  181. package/force-app/main/default/lwc/quanticUtils/__tests__/quanticUtils.test.js +223 -0
  182. package/force-app/main/default/lwc/quanticUtils/recentQueriesUtils.js +20 -12
  183. package/force-app/main/default/lwc/quanticViewedByCustomerBadge/__tests__/quanticViewedByCustomerBadge.test.js +131 -0
  184. package/force-app/main/default/staticresources/coveoheadless/case-assist/headless.js +3 -3
  185. package/force-app/main/default/staticresources/coveoheadless/definitions/app/case-assist-engine/case-assist-engine.d.ts +3 -3
  186. package/force-app/main/default/staticresources/coveoheadless/definitions/app/commerce-engine/commerce-engine.d.ts +16 -16
  187. package/force-app/main/default/staticresources/coveoheadless/definitions/app/common-reducers.d.ts +1 -1
  188. package/force-app/main/default/staticresources/coveoheadless/definitions/app/insight-engine/insight-engine.d.ts +5 -5
  189. package/force-app/main/default/staticresources/coveoheadless/definitions/app/recommendation-engine/recommendation-engine.d.ts +4 -4
  190. package/force-app/main/default/staticresources/coveoheadless/definitions/app/search-engine/search-engine.d.ts +4 -4
  191. package/force-app/main/default/staticresources/coveoheadless/definitions/app/store.d.ts +2 -2
  192. package/force-app/main/default/staticresources/coveoheadless/definitions/controllers/commerce/core/facets/headless-core-commerce-facet.d.ts +1 -1
  193. package/force-app/main/default/staticresources/coveoheadless/definitions/controllers/core/facets/range-facet/headless-core-range-facet.d.ts +1 -1
  194. package/force-app/main/default/staticresources/coveoheadless/definitions/controllers/core/recent-queries-list/headless-core-recent-queries-list.d.ts +91 -0
  195. package/force-app/main/default/staticresources/coveoheadless/definitions/controllers/insight/attach-to-case/headless-attach-to-case.d.ts +2 -0
  196. package/force-app/main/default/staticresources/coveoheadless/definitions/controllers/insight/attached-results/headless-attached-results.d.ts +68 -0
  197. package/force-app/main/default/staticresources/coveoheadless/definitions/controllers/insight/recent-queries-list/headless-insight-recent-queries-list.d.ts +14 -0
  198. package/force-app/main/default/staticresources/coveoheadless/definitions/controllers/recent-queries-list/headless-recent-queries-list.d.ts +2 -79
  199. package/force-app/main/default/staticresources/coveoheadless/definitions/features/actions-history/ipx-actions-history-actions.d.ts +1 -1
  200. package/force-app/main/default/staticresources/coveoheadless/definitions/features/advanced-search-queries/advanced-search-queries-slice.d.ts +1 -1
  201. package/force-app/main/default/staticresources/coveoheadless/definitions/features/analytics/search-action-cause.d.ts +9 -1
  202. package/force-app/main/default/staticresources/coveoheadless/definitions/features/attached-results/attached-results-slice.d.ts +1 -1
  203. package/force-app/main/default/staticresources/coveoheadless/definitions/features/attached-results/attached-results-state.d.ts +1 -0
  204. package/force-app/main/default/staticresources/coveoheadless/definitions/features/case-assist-configuration/case-assist-configuration-slice.d.ts +1 -1
  205. package/force-app/main/default/staticresources/coveoheadless/definitions/features/case-context/case-context-slice.d.ts +1 -1
  206. package/force-app/main/default/staticresources/coveoheadless/definitions/features/case-field/case-field-actions.d.ts +1 -1
  207. package/force-app/main/default/staticresources/coveoheadless/definitions/features/case-field/case-field-slice.d.ts +1 -1
  208. package/force-app/main/default/staticresources/coveoheadless/definitions/features/case-input/case-input-slice.d.ts +1 -1
  209. package/force-app/main/default/staticresources/coveoheadless/definitions/features/commerce/configuration/configuration-slice.d.ts +1 -1
  210. package/force-app/main/default/staticresources/coveoheadless/definitions/features/commerce/context/cart/cart-actions.d.ts +2 -2
  211. package/force-app/main/default/staticresources/coveoheadless/definitions/features/commerce/context/cart/cart-slice.d.ts +1 -1
  212. package/force-app/main/default/staticresources/coveoheadless/definitions/features/commerce/context/context-slice.d.ts +1 -1
  213. package/force-app/main/default/staticresources/coveoheadless/definitions/features/commerce/did-you-mean/did-you-mean-slice.d.ts +1 -1
  214. package/force-app/main/default/staticresources/coveoheadless/definitions/features/commerce/facets/facet-search-set/commerce-facet-search-actions.d.ts +2 -2
  215. package/force-app/main/default/staticresources/coveoheadless/definitions/features/commerce/facets/facet-set/facet-set-slice.d.ts +1 -1
  216. package/force-app/main/default/staticresources/coveoheadless/definitions/features/commerce/facets/field-suggestions-order/field-suggestions-order-slice.d.ts +1 -1
  217. package/force-app/main/default/staticresources/coveoheadless/definitions/features/commerce/facets/numeric-facet/manual-numeric-facet-slice.d.ts +1 -1
  218. package/force-app/main/default/staticresources/coveoheadless/definitions/features/commerce/instant-products/instant-products-slice.d.ts +1 -1
  219. package/force-app/main/default/staticresources/coveoheadless/definitions/features/commerce/pagination/pagination-slice.d.ts +1 -1
  220. package/force-app/main/default/staticresources/coveoheadless/definitions/features/commerce/parameters/parameters-slice.d.ts +1 -1
  221. package/force-app/main/default/staticresources/coveoheadless/definitions/features/commerce/product/product-actions.d.ts +2 -2
  222. package/force-app/main/default/staticresources/coveoheadless/definitions/features/commerce/product-listing/product-listing-actions.d.ts +2 -2
  223. package/force-app/main/default/staticresources/coveoheadless/definitions/features/commerce/product-listing/product-listing-slice.d.ts +1 -1
  224. package/force-app/main/default/staticresources/coveoheadless/definitions/features/commerce/query/query-slice.d.ts +1 -1
  225. package/force-app/main/default/staticresources/coveoheadless/definitions/features/commerce/query-suggest/query-suggest-actions.d.ts +1 -1
  226. package/force-app/main/default/staticresources/coveoheadless/definitions/features/commerce/recent-queries/recent-queries-slice.d.ts +1 -1
  227. package/force-app/main/default/staticresources/coveoheadless/definitions/features/commerce/recommendations/recommendations-actions.d.ts +2 -2
  228. package/force-app/main/default/staticresources/coveoheadless/definitions/features/commerce/recommendations/recommendations-slice.d.ts +1 -1
  229. package/force-app/main/default/staticresources/coveoheadless/definitions/features/commerce/search/search-actions.d.ts +4 -4
  230. package/force-app/main/default/staticresources/coveoheadless/definitions/features/commerce/search/search-slice.d.ts +1 -1
  231. package/force-app/main/default/staticresources/coveoheadless/definitions/features/commerce/sort/sort-slice.d.ts +1 -1
  232. package/force-app/main/default/staticresources/coveoheadless/definitions/features/commerce/standalone-search-box-set/standalone-search-box-set-actions.d.ts +1 -1
  233. package/force-app/main/default/staticresources/coveoheadless/definitions/features/commerce/standalone-search-box-set/standalone-search-box-set-slice.d.ts +1 -1
  234. package/force-app/main/default/staticresources/coveoheadless/definitions/features/commerce/triggers/triggers-slice.d.ts +1 -1
  235. package/force-app/main/default/staticresources/coveoheadless/definitions/features/configuration/configuration-slice.d.ts +1 -1
  236. package/force-app/main/default/staticresources/coveoheadless/definitions/features/context/context-slice.d.ts +1 -1
  237. package/force-app/main/default/staticresources/coveoheadless/definitions/features/debug/debug-slice.d.ts +1 -1
  238. package/force-app/main/default/staticresources/coveoheadless/definitions/features/debug/version-slice.d.ts +1 -1
  239. package/force-app/main/default/staticresources/coveoheadless/definitions/features/dictionary-field-context/dictionary-field-context-slice.d.ts +1 -1
  240. package/force-app/main/default/staticresources/coveoheadless/definitions/features/did-you-mean/did-you-mean-slice.d.ts +1 -1
  241. package/force-app/main/default/staticresources/coveoheadless/definitions/features/document-suggestion/document-suggestion-actions.d.ts +1 -1
  242. package/force-app/main/default/staticresources/coveoheadless/definitions/features/document-suggestion/document-suggestion-slice.d.ts +1 -1
  243. package/force-app/main/default/staticresources/coveoheadless/definitions/features/excerpt-length/excerpt-length-slice.d.ts +1 -1
  244. package/force-app/main/default/staticresources/coveoheadless/definitions/features/facet-options/facet-options-slice.d.ts +1 -1
  245. package/force-app/main/default/staticresources/coveoheadless/definitions/features/facets/automatic-facet-set/automatic-facet-set-slice.d.ts +1 -1
  246. package/force-app/main/default/staticresources/coveoheadless/definitions/features/facets/category-facet-set/category-facet-set-slice.d.ts +1 -1
  247. package/force-app/main/default/staticresources/coveoheadless/definitions/features/facets/facet-order/facet-order-slice.d.ts +1 -1
  248. package/force-app/main/default/staticresources/coveoheadless/definitions/features/facets/facet-search-set/category/category-facet-search-set-slice.d.ts +1 -1
  249. package/force-app/main/default/staticresources/coveoheadless/definitions/features/facets/facet-search-set/generic/generic-facet-search-actions.d.ts +2 -2
  250. package/force-app/main/default/staticresources/coveoheadless/definitions/features/facets/facet-search-set/specific/specific-facet-search-set-slice.d.ts +1 -1
  251. package/force-app/main/default/staticresources/coveoheadless/definitions/features/facets/facet-set/facet-set-controller-actions.d.ts +2 -2
  252. package/force-app/main/default/staticresources/coveoheadless/definitions/features/facets/facet-set/facet-set-slice.d.ts +1 -1
  253. package/force-app/main/default/staticresources/coveoheadless/definitions/features/facets/range-facets/date-facet-set/date-facet-controller-actions.d.ts +2 -2
  254. package/force-app/main/default/staticresources/coveoheadless/definitions/features/facets/range-facets/date-facet-set/date-facet-set-slice.d.ts +1 -1
  255. package/force-app/main/default/staticresources/coveoheadless/definitions/features/facets/range-facets/numeric-facet-set/numeric-facet-controller-actions.d.ts +2 -2
  256. package/force-app/main/default/staticresources/coveoheadless/definitions/features/facets/range-facets/numeric-facet-set/numeric-facet-set-slice.d.ts +1 -1
  257. package/force-app/main/default/staticresources/coveoheadless/definitions/features/fields/fields-actions.d.ts +1 -1
  258. package/force-app/main/default/staticresources/coveoheadless/definitions/features/fields/fields-slice.d.ts +1 -1
  259. package/force-app/main/default/staticresources/coveoheadless/definitions/features/folding/folding-actions.d.ts +1 -1
  260. package/force-app/main/default/staticresources/coveoheadless/definitions/features/folding/folding-slice.d.ts +1 -1
  261. package/force-app/main/default/staticresources/coveoheadless/definitions/features/folding/insight-folding-actions.d.ts +1 -1
  262. package/force-app/main/default/staticresources/coveoheadless/definitions/features/generated-answer/generated-answer-actions.d.ts +2 -2
  263. package/force-app/main/default/staticresources/coveoheadless/definitions/features/generated-answer/generated-answer-slice.d.ts +1 -1
  264. package/force-app/main/default/staticresources/coveoheadless/definitions/features/history/history-actions.d.ts +3 -3
  265. package/force-app/main/default/staticresources/coveoheadless/definitions/features/history/history-slice.d.ts +2 -2
  266. package/force-app/main/default/staticresources/coveoheadless/definitions/features/insight-configuration/insight-configuration-slice.d.ts +1 -1
  267. package/force-app/main/default/staticresources/coveoheadless/definitions/features/insight-interface/insight-interface-actions.d.ts +1 -1
  268. package/force-app/main/default/staticresources/coveoheadless/definitions/features/insight-interface/insight-interface-slice.d.ts +1 -1
  269. package/force-app/main/default/staticresources/coveoheadless/definitions/features/insight-search/insight-search-actions.d.ts +5 -5
  270. package/force-app/main/default/staticresources/coveoheadless/definitions/features/insight-search/legacy/insight-search-actions.d.ts +4 -4
  271. package/force-app/main/default/staticresources/coveoheadless/definitions/features/insight-user-actions/insight-user-actions-actions.d.ts +1 -1
  272. package/force-app/main/default/staticresources/coveoheadless/definitions/features/insight-user-actions/insight-user-actions-slice.d.ts +1 -1
  273. package/force-app/main/default/staticresources/coveoheadless/definitions/features/instant-results/instant-results-slice.d.ts +1 -1
  274. package/force-app/main/default/staticresources/coveoheadless/definitions/features/pagination/pagination-slice.d.ts +1 -1
  275. package/force-app/main/default/staticresources/coveoheadless/definitions/features/pipeline/pipeline-slice.d.ts +1 -1
  276. package/force-app/main/default/staticresources/coveoheadless/definitions/features/query/query-slice.d.ts +1 -1
  277. package/force-app/main/default/staticresources/coveoheadless/definitions/features/query-set/query-set-slice.d.ts +1 -1
  278. package/force-app/main/default/staticresources/coveoheadless/definitions/features/query-suggest/query-suggest-actions.d.ts +1 -1
  279. package/force-app/main/default/staticresources/coveoheadless/definitions/features/query-suggest/query-suggest-slice.d.ts +1 -1
  280. package/force-app/main/default/staticresources/coveoheadless/definitions/features/question-answering/question-answering-slice.d.ts +1 -1
  281. package/force-app/main/default/staticresources/coveoheadless/definitions/features/recent-queries/recent-queries-insight-analytics-actions.d.ts +3 -0
  282. package/force-app/main/default/staticresources/coveoheadless/definitions/features/recent-queries/recent-queries-slice.d.ts +1 -1
  283. package/force-app/main/default/staticresources/coveoheadless/definitions/features/recent-results/recent-results-slice.d.ts +1 -1
  284. package/force-app/main/default/staticresources/coveoheadless/definitions/features/recommendation/recommendation-actions.d.ts +1 -1
  285. package/force-app/main/default/staticresources/coveoheadless/definitions/features/recommendation/recommendation-slice.d.ts +1 -1
  286. package/force-app/main/default/staticresources/coveoheadless/definitions/features/result-preview/result-preview-actions.d.ts +2 -2
  287. package/force-app/main/default/staticresources/coveoheadless/definitions/features/result-preview/result-preview-slice.d.ts +1 -1
  288. package/force-app/main/default/staticresources/coveoheadless/definitions/features/search/legacy/search-actions.d.ts +5 -5
  289. package/force-app/main/default/staticresources/coveoheadless/definitions/features/search/search-actions.d.ts +6 -6
  290. package/force-app/main/default/staticresources/coveoheadless/definitions/features/search/search-slice.d.ts +1 -1
  291. package/force-app/main/default/staticresources/coveoheadless/definitions/features/search-hub/search-hub-slice.d.ts +1 -1
  292. package/force-app/main/default/staticresources/coveoheadless/definitions/features/sort-criteria/sort-criteria-slice.d.ts +1 -1
  293. package/force-app/main/default/staticresources/coveoheadless/definitions/features/standalone-search-box-set/standalone-search-box-set-actions.d.ts +1 -1
  294. package/force-app/main/default/staticresources/coveoheadless/definitions/features/standalone-search-box-set/standalone-search-box-set-slice.d.ts +1 -1
  295. package/force-app/main/default/staticresources/coveoheadless/definitions/features/static-filter-set/static-filter-set-slice.d.ts +1 -1
  296. package/force-app/main/default/staticresources/coveoheadless/definitions/features/tab-set/tab-set-slice.d.ts +1 -1
  297. package/force-app/main/default/staticresources/coveoheadless/definitions/features/triggers/triggers-slice.d.ts +1 -1
  298. package/force-app/main/default/staticresources/coveoheadless/definitions/insight.index.d.ts +4 -0
  299. package/force-app/main/default/staticresources/coveoheadless/definitions/ssr/commerce/factories/build-factory.d.ts +6 -1
  300. package/force-app/main/default/staticresources/coveoheadless/definitions/ssr/commerce/types/fetch-static-state.d.ts +3 -0
  301. package/force-app/main/default/staticresources/coveoheadless/definitions/ssr/commerce/types/from-build-result.d.ts +6 -0
  302. package/force-app/main/default/staticresources/coveoheadless/definitions/ssr/commerce/types/hydrate-static-state.d.ts +3 -0
  303. package/force-app/main/default/staticresources/coveoheadless/definitions/ssr/common/access-token-manager.d.ts +19 -0
  304. package/force-app/main/default/staticresources/coveoheadless/definitions/ssr/common/augment-preprocess-request.d.ts +7 -2
  305. package/force-app/main/default/staticresources/coveoheadless/definitions/ssr/common/types/fetch-static-state.d.ts +3 -0
  306. package/force-app/main/default/staticresources/coveoheadless/definitions/ssr/common/types/hydrate-static-state.d.ts +3 -0
  307. package/force-app/main/default/staticresources/coveoheadless/definitions/ssr-next/commerce/types/engine.d.ts +4 -2
  308. package/force-app/main/default/staticresources/coveoheadless/definitions/ssr-next/common/access-token-manager.d.ts +19 -0
  309. package/force-app/main/default/staticresources/coveoheadless/definitions/ssr-next/common/augment-preprocess-request.d.ts +7 -2
  310. package/force-app/main/default/staticresources/coveoheadless/definitions/ssr-next/search/engine/search-engine.ssr.d.ts +2 -2
  311. package/force-app/main/default/staticresources/coveoheadless/definitions/state/insight-app-state.d.ts +2 -2
  312. package/force-app/main/default/staticresources/coveoheadless/definitions/test/mock-ssr-controller-definitions.d.ts +2 -2
  313. package/force-app/main/default/staticresources/coveoheadless/headless.js +10 -10
  314. package/force-app/main/default/staticresources/coveoheadless/insight/headless.js +9 -9
  315. package/force-app/main/default/staticresources/coveoheadless/recommendation/headless.js +3 -3
  316. package/package.json +46 -44
@@ -0,0 +1,571 @@
1
+ /* eslint-disable no-import-assign */
2
+ import QuanticSearchBoxSuggestionsList from 'c/quanticSearchBoxSuggestionsList';
3
+ import {cleanup, buildCreateTestComponent, flushPromises} from 'c/testUtils';
4
+
5
+ const labels = {
6
+ clear: 'Clear',
7
+ recentQueries: 'Recent queries',
8
+ };
9
+
10
+ jest.mock(
11
+ '@salesforce/label/c.quantic_Clear',
12
+ () => ({default: labels.clear}),
13
+ {
14
+ virtual: true,
15
+ }
16
+ );
17
+ jest.mock(
18
+ '@salesforce/label/c.quantic_QuerySuggestionAriaLabel',
19
+ () => ({default: 'Query suggestion'}),
20
+ {
21
+ virtual: true,
22
+ }
23
+ );
24
+ jest.mock(
25
+ '@salesforce/label/c.quantic_RecentQueries',
26
+ () => ({default: labels.recentQueries}),
27
+ {
28
+ virtual: true,
29
+ }
30
+ );
31
+ jest.mock(
32
+ '@salesforce/label/c.quantic_RecentQueryAriaLabel',
33
+ () => ({default: 'Recent query'}),
34
+ {
35
+ virtual: true,
36
+ }
37
+ );
38
+ jest.mock(
39
+ '@salesforce/label/c.quantic_SuggestionFound',
40
+ () => ({default: '{{0}} suggestion found'}),
41
+ {
42
+ virtual: true,
43
+ }
44
+ );
45
+ jest.mock(
46
+ '@salesforce/label/c.quantic_SuggestionFound_Plural',
47
+ () => ({default: '{{0}} suggestions found'}),
48
+ {
49
+ virtual: true,
50
+ }
51
+ );
52
+ jest.mock(
53
+ '@salesforce/label/c.quantic_SuggestionNotFound',
54
+ () => ({default: 'No suggestions found'}),
55
+ {
56
+ virtual: true,
57
+ }
58
+ );
59
+
60
+ jest.mock('c/quanticUtils', () => {
61
+ const ariaDispatchMessageMock = jest.fn();
62
+ return {
63
+ AriaLiveRegion: jest.fn().mockImplementation(() => ({
64
+ dispatchMessage: ariaDispatchMessageMock,
65
+ })),
66
+ I18nUtils: {
67
+ format: jest.fn((template, ...args) => {
68
+ return template.replace(
69
+ /\{\{(\d+)\}\}/g,
70
+ (match, index) => args[index] || match
71
+ );
72
+ }),
73
+ getLabelNameWithCount: jest.fn((baseName, count) => {
74
+ return count === 1 ? baseName : `${baseName}_plural`;
75
+ }),
76
+ },
77
+ RecentQueryUtils: {
78
+ formatRecentQuery: jest.fn((query, currentQuery) => {
79
+ if (!currentQuery) return query;
80
+ const lowerQuery = query.toLowerCase();
81
+ const lowerCurrentQuery = currentQuery.toLowerCase();
82
+ const index = lowerQuery.indexOf(lowerCurrentQuery);
83
+ if (index === 0) {
84
+ return `<strong>${query.substring(0, currentQuery.length)}</strong>${query.substring(currentQuery.length)}`;
85
+ }
86
+ return query;
87
+ }),
88
+ },
89
+ __ariaDispatchMessageMock: ariaDispatchMessageMock,
90
+ };
91
+ });
92
+
93
+ const defaultOptions = {
94
+ maxNumberOfSuggestions: 7,
95
+ };
96
+
97
+ const selectors = {
98
+ listbox: '[role="listbox"]',
99
+ option: 'li[role="option"]',
100
+ richText: 'lightning-formatted-rich-text',
101
+ lightningIcon: 'lightning-icon',
102
+ clearRecentQueriesButton: '[data-testid="clear-recent-queries-button"]',
103
+ suggestionOption: '[data-testid="suggestion-option"]',
104
+ recentQueryOption: '[data-testid="recent-query-option"]',
105
+ };
106
+
107
+ const mockSuggestions = [
108
+ {key: 1, value: 'test query 1', rawValue: 'test query 1'},
109
+ {key: 2, value: 'test query 2', rawValue: 'test query 2'},
110
+ {key: 3, value: 'another suggestion', rawValue: 'another suggestion'},
111
+ ];
112
+
113
+ const mockRecentQueries = [
114
+ 'recent query 1',
115
+ 'recent query 2',
116
+ 'test recent query',
117
+ ];
118
+
119
+ const buildMixedOptions = (suggestions, recentQueries) => {
120
+ return [
121
+ ...recentQueries.map((query) => ({
122
+ value: query,
123
+ rawValue: query,
124
+ isRecentQuery: true,
125
+ })),
126
+ ...suggestions.map((suggestion) => ({
127
+ value: suggestion.value,
128
+ rawValue: suggestion.rawValue,
129
+ isRecentQuery: false,
130
+ })),
131
+ ];
132
+ };
133
+
134
+ const createTestComponent = buildCreateTestComponent(
135
+ QuanticSearchBoxSuggestionsList,
136
+ 'c-quantic-search-box-suggestions-list',
137
+ defaultOptions
138
+ );
139
+
140
+ describe('c-quantic-search-box-suggestions-list', () => {
141
+ afterEach(() => {
142
+ cleanup();
143
+ });
144
+
145
+ describe('suggestion list rendering', () => {
146
+ describe('when no suggestions or recent queries are provided', () => {
147
+ it('should render an empty list', async () => {
148
+ const element = createTestComponent();
149
+ await flushPromises();
150
+
151
+ const listbox = element.shadowRoot.querySelector(selectors.listbox);
152
+ expect(listbox).toBeTruthy();
153
+ expect(listbox.children.length).toBe(0);
154
+ });
155
+ });
156
+
157
+ describe('when suggestions are provided', () => {
158
+ it('should render suggestions as options', async () => {
159
+ const element = createTestComponent({
160
+ suggestions: mockSuggestions,
161
+ });
162
+ await flushPromises();
163
+
164
+ const options = element.shadowRoot.querySelectorAll(selectors.option);
165
+ expect(options.length).toBe(mockSuggestions.length);
166
+ // Where there's only suggestions, we don't render a clear recent queries button.
167
+ expect(
168
+ element.shadowRoot.querySelector(selectors.clearRecentQueriesButton)
169
+ ).toBeNull();
170
+ options.forEach((option, index) => {
171
+ const lightningRichText = option.querySelector(selectors.richText);
172
+ expect(lightningRichText.value).toBe(mockSuggestions[index].value);
173
+ expect(lightningRichText.title).toBe(mockSuggestions[index].rawValue);
174
+ expect(option.querySelector(selectors.lightningIcon).iconName).toBe(
175
+ 'utility:search'
176
+ );
177
+ });
178
+ });
179
+
180
+ it('should not display suggestions and not crash when the suggestions is not an array', async () => {
181
+ const element = createTestComponent();
182
+ element.suggestions = 'foo';
183
+ await flushPromises();
184
+
185
+ const options = element.shadowRoot.querySelectorAll(selectors.option);
186
+ expect(options.length).toBe(0); // Should not render any options
187
+ });
188
+ });
189
+
190
+ describe('when recent queries are provided', () => {
191
+ it('should render recent queries as options', async () => {
192
+ const element = createTestComponent({
193
+ recentQueries: mockRecentQueries,
194
+ });
195
+ await flushPromises();
196
+
197
+ const options = element.shadowRoot.querySelectorAll(selectors.option);
198
+ // Should include clear button + recent queries
199
+ expect(options.length).toBe(mockRecentQueries.length + 1);
200
+ const clearButton = options.item(0);
201
+ expect(clearButton.querySelector(selectors.lightningIcon)).toBeNull();
202
+ expect(clearButton.textContent).toContain(labels.recentQueries);
203
+ // Skip the first option (clear button) and check the rest
204
+ Array.from(options)
205
+ .slice(1)
206
+ .forEach((option, index) => {
207
+ const lightningRichText = option.querySelector(selectors.richText);
208
+ expect(lightningRichText.value).toBe(mockRecentQueries[index]);
209
+ expect(lightningRichText.title).toBe(mockRecentQueries[index]);
210
+ expect(option.querySelector(selectors.lightningIcon).iconName).toBe(
211
+ 'utility:clock'
212
+ );
213
+ });
214
+ });
215
+
216
+ it('should not display recent queries and not crash when the recentQueries is not an array', async () => {
217
+ const element = createTestComponent();
218
+ element.recentQueries = 'foo';
219
+ await flushPromises();
220
+
221
+ const options = element.shadowRoot.querySelectorAll(selectors.option);
222
+ expect(options.length).toBe(0); // Should not render any options
223
+ });
224
+ });
225
+
226
+ describe('when both suggestions and recent queries are provided and query is empty', () => {
227
+ it('should render suggestions and recent queries as options', async () => {
228
+ const mockSuggestionListOptions = buildMixedOptions(
229
+ mockSuggestions,
230
+ mockRecentQueries
231
+ );
232
+ const element = createTestComponent({
233
+ suggestions: mockSuggestions,
234
+ recentQueries: mockRecentQueries,
235
+ });
236
+ await flushPromises();
237
+
238
+ const options = element.shadowRoot.querySelectorAll(selectors.option);
239
+ // Should include clear button + recent queries
240
+ expect(options.length).toBe(
241
+ mockSuggestions.length + mockRecentQueries.length + 1
242
+ );
243
+ // First option should be the clear button
244
+ const clearButton = options.item(0);
245
+ expect(clearButton.querySelector(selectors.lightningIcon)).toBeNull();
246
+ expect(clearButton.textContent).toContain(labels.recentQueries);
247
+ // Skip the first option (clear button) and check the rest
248
+ Array.from(options)
249
+ .slice(1)
250
+ .forEach((option, index) => {
251
+ const {value, rawValue, isRecentQuery} =
252
+ mockSuggestionListOptions[index];
253
+ const lightningRichText = option.querySelector(selectors.richText);
254
+ expect(lightningRichText.value).toBe(value);
255
+ expect(lightningRichText.title).toBe(rawValue);
256
+ const expectedIcon = isRecentQuery
257
+ ? 'utility:clock'
258
+ : 'utility:search';
259
+ expect(option.querySelector(selectors.lightningIcon).iconName).toBe(
260
+ expectedIcon
261
+ );
262
+ });
263
+ });
264
+
265
+ it('should not render duplicates between suggestions and recent queries', async () => {
266
+ const duplicateQuery = 'test duplicate query';
267
+ const mockRecentQueriesWithDuplicate = [
268
+ ...mockRecentQueries,
269
+ duplicateQuery,
270
+ ];
271
+ const mockSuggestionsWithDuplicate = [
272
+ ...mockSuggestions,
273
+ {
274
+ key: 4,
275
+ value: duplicateQuery,
276
+ rawValue: duplicateQuery,
277
+ },
278
+ ];
279
+ const mockSuggestionListOptionsWithDuplicate = buildMixedOptions(
280
+ mockSuggestionsWithDuplicate,
281
+ mockRecentQueriesWithDuplicate
282
+ );
283
+ const element = createTestComponent({
284
+ suggestions: mockSuggestionsWithDuplicate,
285
+ recentQueries: mockRecentQueriesWithDuplicate,
286
+ });
287
+ await flushPromises();
288
+
289
+ const options = element.shadowRoot.querySelectorAll(selectors.option);
290
+ // Should include clear button + recent queries
291
+ const expectedLength =
292
+ mockSuggestionListOptionsWithDuplicate.length - 1 + 1; // -1 for duplicate +1 for clear button
293
+ expect(options.length).toBe(expectedLength);
294
+ // First option should be the clear button
295
+ const clearButton = options.item(0);
296
+ expect(clearButton.querySelector(selectors.lightningIcon)).toBeNull();
297
+ expect(clearButton.textContent).toContain(labels.recentQueries);
298
+ // Skip the first option (clear button) and check the rest
299
+ Array.from(options)
300
+ .slice(1)
301
+ .forEach((option, index) => {
302
+ const lightningRichText = option.querySelector(selectors.richText);
303
+ expect(lightningRichText.value).toBe(
304
+ mockSuggestionListOptionsWithDuplicate[index].value
305
+ );
306
+ expect(lightningRichText.title).toBe(
307
+ mockSuggestionListOptionsWithDuplicate[index].rawValue
308
+ );
309
+ const expectedIcon = mockSuggestionListOptionsWithDuplicate[index]
310
+ .isRecentQuery
311
+ ? 'utility:clock'
312
+ : 'utility:search';
313
+ expect(option.querySelector(selectors.lightningIcon).iconName).toBe(
314
+ expectedIcon
315
+ );
316
+ });
317
+ // Last option should not be the duplicate, since it was already displayed in the recent queries
318
+ // which appear above the suggestions.
319
+ const lastOption = options.item(options.length - 1);
320
+ const lastRichText = lastOption.querySelector(selectors.richText);
321
+ expect(lastRichText.value).not.toBe(duplicateQuery);
322
+ expect(lastRichText.title).not.toBe(duplicateQuery);
323
+ });
324
+ });
325
+ });
326
+
327
+ describe('query property', () => {
328
+ it('should filter recent queries based on current query', async () => {
329
+ const element = createTestComponent({
330
+ recentQueries: [
331
+ 'recent query 1',
332
+ 'recent query 2',
333
+ 'test recent query',
334
+ ],
335
+ query: 'test',
336
+ });
337
+ await flushPromises();
338
+
339
+ // Should only show recent queries that start with 'test'
340
+ const options = element.shadowRoot.querySelectorAll(selectors.option);
341
+ // Clear button + filtered recent queries
342
+ expect(options.length).toBe(2); // clear button + 'test recent query', other recent queries don't start with 'test'
343
+ // The first option should be the clear button
344
+ const clearButton = options.item(0);
345
+ expect(clearButton.querySelector(selectors.lightningIcon)).toBeNull();
346
+ expect(clearButton.textContent).toContain(labels.recentQueries);
347
+ const recentQueryOption = options.item(1);
348
+ expect(recentQueryOption.querySelector(selectors.richText).value).toEqual(
349
+ expect.stringContaining('<strong>test</strong> recent query')
350
+ );
351
+ });
352
+
353
+ it('should bold the current query in recent queries', async () => {
354
+ const element = createTestComponent({
355
+ recentQueries: mockRecentQueries,
356
+ query: 'test',
357
+ });
358
+ await flushPromises();
359
+
360
+ const options = element.shadowRoot.querySelectorAll(selectors.option);
361
+ // Skip the first option (clear button)
362
+ const recentQueryOption = options.item(1);
363
+ expect(recentQueryOption.querySelector(selectors.richText).value).toEqual(
364
+ expect.stringContaining('<strong>test</strong>')
365
+ );
366
+ });
367
+ });
368
+
369
+ describe('maxNumberOfSuggestions property', () => {
370
+ it('should limit the number of suggestions displayed', async () => {
371
+ const maxSuggestions = 2;
372
+ const element = createTestComponent({
373
+ suggestions: mockSuggestions,
374
+ maxNumberOfSuggestions: maxSuggestions,
375
+ });
376
+ await flushPromises();
377
+
378
+ const options = element.shadowRoot.querySelectorAll(selectors.option);
379
+ expect(options.length).toBe(maxSuggestions);
380
+ });
381
+
382
+ it('should limit the number of recent queries displayed', async () => {
383
+ const maxSuggestions = 2;
384
+ const element = createTestComponent({
385
+ recentQueries: mockRecentQueries,
386
+ maxNumberOfSuggestions: maxSuggestions,
387
+ });
388
+ await flushPromises();
389
+
390
+ const options = element.shadowRoot.querySelectorAll(selectors.option);
391
+ expect(options.length).toBe(maxSuggestions + 1); // +1 for clear button
392
+ });
393
+ });
394
+
395
+ describe('getCurrentSelectedValue method', () => {
396
+ it('should return null when no selection is made', async () => {
397
+ const element = createTestComponent({
398
+ suggestions: mockSuggestions,
399
+ });
400
+ await flushPromises();
401
+
402
+ const result = element.getCurrentSelectedValue();
403
+ expect(result).toBeNull();
404
+ });
405
+
406
+ it('should return selected value when selection is made', async () => {
407
+ const element = createTestComponent({
408
+ suggestions: mockSuggestions,
409
+ });
410
+ await flushPromises();
411
+
412
+ element.selectionDown(); // Select first suggestion
413
+ const result = element.getCurrentSelectedValue();
414
+ expect(result).toEqual({
415
+ value: mockSuggestions[0].rawValue,
416
+ isClearRecentQueryButton: false,
417
+ isRecentQuery: false,
418
+ });
419
+ });
420
+
421
+ it('should return the clear recent query button first', async () => {
422
+ const element = createTestComponent({
423
+ recentQueries: mockRecentQueries,
424
+ });
425
+ await flushPromises();
426
+
427
+ element.selectionDown(); // Select first suggestion
428
+ const result = element.getCurrentSelectedValue();
429
+ expect(result).toEqual(
430
+ expect.objectContaining({
431
+ isClearRecentQueryButton: true,
432
+ })
433
+ );
434
+ });
435
+ });
436
+
437
+ describe('selection navigation', () => {
438
+ it('should move selection down correctly', async () => {
439
+ const element = createTestComponent({
440
+ suggestions: mockSuggestions,
441
+ });
442
+ await flushPromises();
443
+
444
+ const result = element.selectionDown();
445
+ expect(result).toEqual(
446
+ expect.objectContaining({
447
+ value: mockSuggestions[0].rawValue,
448
+ })
449
+ );
450
+ });
451
+
452
+ it('should move selection up correctly after moving down', async () => {
453
+ const element = createTestComponent({
454
+ suggestions: mockSuggestions,
455
+ });
456
+ await flushPromises();
457
+
458
+ // Move down first, then up
459
+ element.selectionDown();
460
+ const result = element.selectionUp();
461
+ expect(result).toEqual(
462
+ expect.objectContaining({
463
+ value: mockSuggestions[mockSuggestions.length - 1].rawValue,
464
+ })
465
+ );
466
+ });
467
+
468
+ it('should wrap around when moving past the end', async () => {
469
+ const element = createTestComponent({
470
+ suggestions: [mockSuggestions[0]], // Only one suggestion
471
+ });
472
+ await flushPromises();
473
+
474
+ element.selectionDown(); // Select first
475
+ const result = element.selectionDown(); // Should wrap to first again
476
+ expect(result).toEqual(
477
+ expect.objectContaining({
478
+ value: mockSuggestions[0].rawValue,
479
+ })
480
+ );
481
+ });
482
+
483
+ it('should wrap around when moving selection up past beginning', async () => {
484
+ const element = createTestComponent({
485
+ suggestions: mockSuggestions,
486
+ });
487
+ await flushPromises();
488
+
489
+ const result = element.selectionUp();
490
+ expect(result).toEqual(
491
+ expect.objectContaining({
492
+ value: mockSuggestions[mockSuggestions.length - 1].rawValue,
493
+ })
494
+ );
495
+ });
496
+ });
497
+
498
+ describe('event handling', () => {
499
+ it('should dispatch quantic__suggestionlistrender event on render', async () => {
500
+ const mockEventHandler = jest.fn();
501
+ document.addEventListener(
502
+ 'quantic__suggestionlistrender',
503
+ mockEventHandler
504
+ );
505
+
506
+ createTestComponent({
507
+ suggestions: mockSuggestions,
508
+ });
509
+ await flushPromises();
510
+
511
+ expect(mockEventHandler).toHaveBeenCalled();
512
+ });
513
+
514
+ it('should dispatch quantic__selection event when suggestion is selected', async () => {
515
+ const element = createTestComponent({
516
+ suggestions: mockSuggestions,
517
+ });
518
+ const mockEventHandler = jest.fn();
519
+ element.addEventListener('quantic__selection', (event) =>
520
+ mockEventHandler(event.detail)
521
+ );
522
+ await flushPromises();
523
+
524
+ // Simulate clicking on first suggestion
525
+ const firstOption = element.shadowRoot.querySelector(selectors.option);
526
+ if (firstOption) {
527
+ firstOption.dispatchEvent(new MouseEvent('mousedown', {bubbles: true}));
528
+ }
529
+
530
+ expect(mockEventHandler).toHaveBeenCalledWith(
531
+ expect.objectContaining({
532
+ selection: {
533
+ value: mockSuggestions[0].rawValue,
534
+ isClearRecentQueryButton: false,
535
+ isRecentQuery: false,
536
+ },
537
+ })
538
+ );
539
+ });
540
+ });
541
+
542
+ describe('accessibility', () => {
543
+ it('should announce suggestions with aria live region', async () => {
544
+ // @ts-ignore
545
+ const {__ariaDispatchMessageMock} = require('c/quanticUtils');
546
+ createTestComponent({
547
+ suggestions: mockSuggestions,
548
+ });
549
+ await flushPromises();
550
+
551
+ expect(__ariaDispatchMessageMock).toHaveBeenCalledTimes(1);
552
+ expect(__ariaDispatchMessageMock).toHaveBeenCalledWith(
553
+ `${mockSuggestions.length} suggestions found`
554
+ );
555
+ });
556
+
557
+ it('should announce when no suggestions are found', async () => {
558
+ // @ts-ignore
559
+ const {__ariaDispatchMessageMock} = require('c/quanticUtils');
560
+ createTestComponent({
561
+ suggestions: [],
562
+ });
563
+ await flushPromises();
564
+
565
+ expect(__ariaDispatchMessageMock).toHaveBeenCalledTimes(1);
566
+ expect(__ariaDispatchMessageMock).toHaveBeenCalledWith(
567
+ 'No suggestions found'
568
+ );
569
+ });
570
+ });
571
+ });
@@ -0,0 +1,110 @@
1
+ import {SearchBoxSuggestionsListObject} from './pageObject';
2
+ import {quanticBase} from '../../../../../../playwright/fixtures/baseFixture';
3
+ import {SearchObject} from '../../../../../../playwright/page-object/searchObject';
4
+ import {
5
+ searchRequestRegex,
6
+ insightSearchRequestRegex,
7
+ querySuggestRegex,
8
+ insightQuerySuggestRegex,
9
+ } from '../../../../../../playwright/utils/requests';
10
+ import {InsightSetupObject} from '../../../../../../playwright/page-object/insightSetupObject';
11
+ import {useCaseEnum} from '../../../../../../playwright/utils/useCase';
12
+ import {QuerySuggestObject} from '../../../../../../playwright/page-object/querySuggestObject';
13
+ import {AnalyticsModeEnum} from '../../../../../../playwright/utils/analyticsMode';
14
+
15
+ const searchBoxSuggestionsListUrl = 's/quantic-search-box';
16
+
17
+ interface SearchBoxSuggestionsListOptions {
18
+ engineId?: string;
19
+ maxNumberOfSuggestions: number;
20
+ }
21
+
22
+ type QuanticSearchBoxSuggestionsListE2EFixtures = {
23
+ recentQueries: string[];
24
+ searchBoxSuggestionsList: SearchBoxSuggestionsListObject;
25
+ search: SearchObject;
26
+ querySuggest: QuerySuggestObject;
27
+ options: Partial<SearchBoxSuggestionsListOptions>;
28
+ };
29
+
30
+ type QuanticSearchBoxSuggestionsListE2ESearchFixtures =
31
+ QuanticSearchBoxSuggestionsListE2EFixtures;
32
+
33
+ type QuanticSearchBoxSuggestionsListE2eInsightFixtures =
34
+ QuanticSearchBoxSuggestionsListE2ESearchFixtures & {
35
+ insightSetup: InsightSetupObject;
36
+ };
37
+
38
+ export const testSearch =
39
+ quanticBase.extend<QuanticSearchBoxSuggestionsListE2ESearchFixtures>({
40
+ pageUrl: searchBoxSuggestionsListUrl,
41
+ options: {},
42
+ analyticsMode: AnalyticsModeEnum.legacy,
43
+ recentQueries: [],
44
+ search: async ({page}, use) => {
45
+ await use(new SearchObject(page, searchRequestRegex));
46
+ },
47
+ querySuggest: async ({page}, use) => {
48
+ await use(new QuerySuggestObject(page, querySuggestRegex));
49
+ },
50
+ searchBoxSuggestionsList: async (
51
+ {
52
+ page,
53
+ options,
54
+ configuration,
55
+ search,
56
+ analytics,
57
+ querySuggest,
58
+ recentQueries,
59
+ },
60
+ use
61
+ ) => {
62
+ await page.goto(searchBoxSuggestionsListUrl);
63
+ if (recentQueries.length > 0) {
64
+ await querySuggest.setRecentQueries(recentQueries);
65
+ }
66
+
67
+ configuration.configure(options);
68
+ await search.waitForSearchResponse();
69
+ await use(new SearchBoxSuggestionsListObject(page, analytics));
70
+ },
71
+ });
72
+
73
+ export const testInsight =
74
+ quanticBase.extend<QuanticSearchBoxSuggestionsListE2eInsightFixtures>({
75
+ pageUrl: searchBoxSuggestionsListUrl,
76
+ options: {},
77
+ analyticsMode: AnalyticsModeEnum.legacy,
78
+ recentQueries: [],
79
+ search: async ({page}, use) => {
80
+ await use(new SearchObject(page, insightSearchRequestRegex));
81
+ },
82
+ querySuggest: async ({page}, use) => {
83
+ await use(new QuerySuggestObject(page, insightQuerySuggestRegex));
84
+ },
85
+ insightSetup: async ({page}, use) => {
86
+ await use(new InsightSetupObject(page));
87
+ },
88
+ searchBoxSuggestionsList: async (
89
+ {
90
+ page,
91
+ options,
92
+ configuration,
93
+ insightSetup,
94
+ querySuggest,
95
+ analytics,
96
+ recentQueries,
97
+ },
98
+ use
99
+ ) => {
100
+ await page.goto(searchBoxSuggestionsListUrl);
101
+ if (recentQueries.length > 0) {
102
+ await querySuggest.setRecentQueries(recentQueries);
103
+ }
104
+ configuration.configure({...options, useCase: useCaseEnum.insight});
105
+ await insightSetup.waitForInsightInterfaceInitialization();
106
+ await use(new SearchBoxSuggestionsListObject(page, analytics));
107
+ },
108
+ });
109
+
110
+ export {expect} from '@playwright/test';