@coveo/quantic 3.33.0 → 3.33.2

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 (296) hide show
  1. package/README.md +15 -15
  2. package/force-app/main/default/lwc/quanticAriaLive/__tests__/quanticAriaLive.test.js +106 -0
  3. package/force-app/main/default/lwc/quanticBreadcrumbManager/__tests__/quanticBreadcrumbManager.test.js +752 -0
  4. package/force-app/main/default/lwc/quanticBreadcrumbManager/e2e/fixture.ts +76 -0
  5. package/force-app/main/default/lwc/quanticBreadcrumbManager/e2e/pageObject.ts +282 -0
  6. package/force-app/main/default/lwc/quanticBreadcrumbManager/e2e/quanticBreadcrumbManager.e2e.ts +167 -0
  7. package/force-app/main/default/lwc/quanticCarousel/__tests__/quanticCarousel.test.js +262 -0
  8. package/force-app/main/default/lwc/quanticCaseClassification/__tests__/quanticCaseClassification.test.js +819 -0
  9. package/force-app/main/default/lwc/quanticCaseClassification/e2e/data.ts +23 -0
  10. package/force-app/main/default/lwc/quanticCaseClassification/e2e/fixture.ts +51 -0
  11. package/force-app/main/default/lwc/quanticCaseClassification/e2e/pageObject.ts +152 -0
  12. package/force-app/main/default/lwc/quanticCaseClassification/e2e/quanticCaseClassification.e2e.ts +269 -0
  13. package/force-app/main/default/lwc/quanticCategoryFacet/__tests__/quanticCategoryFacet.test.js +1183 -0
  14. package/force-app/main/default/lwc/quanticCategoryFacet/e2e/data.ts +27 -0
  15. package/force-app/main/default/lwc/quanticCategoryFacet/e2e/fixture.ts +75 -0
  16. package/force-app/main/default/lwc/quanticCategoryFacet/e2e/pageObject.ts +55 -0
  17. package/force-app/main/default/lwc/quanticCategoryFacet/e2e/quanticCategoryFacet.e2e.ts +199 -0
  18. package/force-app/main/default/lwc/quanticCitation/__tests__/quanticCitation.test.js +371 -0
  19. package/force-app/main/default/lwc/quanticColoredResultBadge/__tests__/quanticColoredResultBadge.test.js +212 -0
  20. package/force-app/main/default/lwc/quanticDateFacet/__tests__/quanticDateFacet.test.js +688 -0
  21. package/force-app/main/default/lwc/quanticDateFacet/e2e/data.ts +24 -0
  22. package/force-app/main/default/lwc/quanticDateFacet/e2e/fixture.ts +68 -0
  23. package/force-app/main/default/lwc/quanticDateFacet/e2e/pageObject.ts +27 -0
  24. package/force-app/main/default/lwc/quanticDateFacet/e2e/quanticDateFacet.e2e.ts +145 -0
  25. package/force-app/main/default/lwc/quanticDidYouMean/__tests__/quanticDidYouMean.test.js +348 -0
  26. package/force-app/main/default/lwc/quanticDidYouMean/e2e/data.ts +48 -0
  27. package/force-app/main/default/lwc/quanticDidYouMean/e2e/fixture.ts +80 -0
  28. package/force-app/main/default/lwc/quanticDidYouMean/e2e/pageObject.ts +173 -0
  29. package/force-app/main/default/lwc/quanticDidYouMean/e2e/quanticDidYouMean.e2e.ts +219 -0
  30. package/force-app/main/default/lwc/quanticDocumentSuggestion/__tests__/quanticDocumentSuggestion.test.js +404 -0
  31. package/force-app/main/default/lwc/quanticDocumentSuggestion/e2e/fixture.ts +38 -0
  32. package/force-app/main/default/lwc/quanticDocumentSuggestion/e2e/pageObject.ts +52 -0
  33. package/force-app/main/default/lwc/quanticDocumentSuggestion/e2e/quanticDocumentSuggestion.e2e.ts +102 -0
  34. package/force-app/main/default/lwc/quanticFacet/__tests__/quanticFacet.test.js +1105 -0
  35. package/force-app/main/default/lwc/quanticFacet/e2e/data.ts +21 -0
  36. package/force-app/main/default/lwc/quanticFacet/e2e/fixture.ts +73 -0
  37. package/force-app/main/default/lwc/quanticFacet/e2e/pageObject.ts +67 -0
  38. package/force-app/main/default/lwc/quanticFacet/e2e/quanticFacet.e2e.ts +208 -0
  39. package/force-app/main/default/lwc/quanticFacetCaption/__tests__/quanticFacetCaption.test.js +28 -0
  40. package/force-app/main/default/lwc/quanticFacetManager/__tests__/quanticFacetManager.test.js +178 -0
  41. package/force-app/main/default/lwc/quanticFacetManager/e2e/fixture.ts +64 -0
  42. package/force-app/main/default/lwc/quanticFacetManager/e2e/pageObject.ts +23 -0
  43. package/force-app/main/default/lwc/quanticFacetManager/e2e/quanticFacetManager.e2e.ts +82 -0
  44. package/force-app/main/default/lwc/quanticFeedback/__tests__/quanticFeedback.test.js +392 -0
  45. package/force-app/main/default/lwc/quanticFeedbackModal/__tests__/quanticFeedbackModal.test.js +448 -0
  46. package/force-app/main/default/lwc/quanticFeedbackModalQna/__tests__/quanticFeedbackModalQna.test.js +298 -0
  47. package/force-app/main/default/lwc/quanticFoldedResultList/__tests__/quanticFoldedResultList.test.js +323 -0
  48. package/force-app/main/default/lwc/quanticFoldedResultList/e2e/fixture.ts +70 -0
  49. package/force-app/main/default/lwc/quanticFoldedResultList/e2e/pageObject.ts +81 -0
  50. package/force-app/main/default/lwc/quanticFoldedResultList/e2e/quanticFoldedResultList.e2e.ts +69 -0
  51. package/force-app/main/default/lwc/quanticGeneratedAnswer/__tests__/quanticGeneratedAnswer.test.js +1158 -0
  52. package/force-app/main/default/lwc/quanticGeneratedAnswer/e2e/data.ts +56 -0
  53. package/force-app/main/default/lwc/quanticGeneratedAnswer/e2e/fixture.ts +185 -0
  54. package/force-app/main/default/lwc/quanticGeneratedAnswer/e2e/pageObject.ts +451 -0
  55. package/force-app/main/default/lwc/quanticGeneratedAnswer/e2e/quanticGeneratedAnswer.e2e.ts +337 -0
  56. package/force-app/main/default/lwc/quanticGeneratedAnswerContent/__tests__/quanticGeneratedAnswerContent.test.js +151 -0
  57. package/force-app/main/default/lwc/quanticHeading/__tests__/quanticHeading.test.js +71 -0
  58. package/force-app/main/default/lwc/quanticHeadlessLoader/__tests__/quanticHeadlessLoader.test.js +651 -0
  59. package/force-app/main/default/lwc/quanticInsightInterface/__tests__/quanticInsightInterface.test.js +194 -0
  60. package/force-app/main/default/lwc/quanticInsightSummary/__tests__/quanticInsightSummary.test.js +230 -0
  61. package/force-app/main/default/lwc/quanticModal/__tests__/quanticModal.test.js +205 -0
  62. package/force-app/main/default/lwc/quanticNotifications/__tests__/quanticNotifications.test.js +309 -0
  63. package/force-app/main/default/lwc/quanticNotifications/e2e/fixture.ts +58 -0
  64. package/force-app/main/default/lwc/quanticNotifications/e2e/pageObject.ts +55 -0
  65. package/force-app/main/default/lwc/quanticNotifications/e2e/quanticNotifications.e2e.ts +47 -0
  66. package/force-app/main/default/lwc/quanticNumericFacet/__tests__/quanticNumericFacet.test.js +953 -0
  67. package/force-app/main/default/lwc/quanticNumericFacet/e2e/data.ts +28 -0
  68. package/force-app/main/default/lwc/quanticNumericFacet/e2e/fixture.ts +71 -0
  69. package/force-app/main/default/lwc/quanticNumericFacet/e2e/pageObject.ts +59 -0
  70. package/force-app/main/default/lwc/quanticNumericFacet/e2e/quanticNumericFacet.e2e.ts +164 -0
  71. package/force-app/main/default/lwc/quanticPager/__tests__/quanticPager.test.js +430 -0
  72. package/force-app/main/default/lwc/quanticPager/e2e/fixture.ts +65 -0
  73. package/force-app/main/default/lwc/quanticPager/e2e/pageObject.ts +69 -0
  74. package/force-app/main/default/lwc/quanticPager/e2e/quanticPager.e2e.ts +106 -0
  75. package/force-app/main/default/lwc/quanticPlaceholder/__tests__/quanticPlaceholder.test.js +47 -0
  76. package/force-app/main/default/lwc/quanticQuickviewContent/__tests__/data/defaultTestCase.json +13 -0
  77. package/force-app/main/default/lwc/quanticQuickviewContent/__tests__/data/youtubeTestCase.json +14 -0
  78. package/force-app/main/default/lwc/quanticQuickviewContent/__tests__/quanticQuickviewContent.test.js +82 -0
  79. package/force-app/main/default/lwc/quanticRadioButtonsGroup/__tests__/quanticRadioButtonsGroup.test.js +273 -0
  80. package/force-app/main/default/lwc/quanticRecentQueriesList/__tests__/quanticRecentQueriesList.test.js +448 -0
  81. package/force-app/main/default/lwc/quanticRecentQueriesList/e2e/fixture.ts +42 -0
  82. package/force-app/main/default/lwc/quanticRecentQueriesList/e2e/pageObject.ts +55 -0
  83. package/force-app/main/default/lwc/quanticRecentQueriesList/e2e/quanticRecentQueriesList.e2e.ts +93 -0
  84. package/force-app/main/default/lwc/quanticRecentResultsList/__tests__/quanticRecentResultsList.test.js +516 -0
  85. package/force-app/main/default/lwc/quanticRecentResultsList/e2e/fixture.ts +42 -0
  86. package/force-app/main/default/lwc/quanticRecentResultsList/e2e/pageObject.ts +61 -0
  87. package/force-app/main/default/lwc/quanticRecentResultsList/e2e/quanticRecentResultsList.e2e.ts +48 -0
  88. package/force-app/main/default/lwc/quanticRecommendationList/__tests__/quanticRecommendationList.test.js +491 -0
  89. package/force-app/main/default/lwc/quanticRecommendationList/e2e/fixture.ts +35 -0
  90. package/force-app/main/default/lwc/quanticRecommendationList/e2e/pageObject.ts +52 -0
  91. package/force-app/main/default/lwc/quanticRecommendationList/e2e/quanticRecommendationList.e2e.ts +53 -0
  92. package/force-app/main/default/lwc/quanticRefineModalContent/__tests__/quanticRefineModalContent.test.js +747 -0
  93. package/force-app/main/default/lwc/quanticRefineToggle/__tests__/quanticRefineToggle.test.js +542 -0
  94. package/force-app/main/default/lwc/quanticResultAction/__tests__/quanticResultAction.test.js +262 -0
  95. package/force-app/main/default/lwc/quanticResultActionBar/__tests__/quanticResultActionBar.test.js +141 -0
  96. package/force-app/main/default/lwc/quanticResultChildren/__tests__/quanticResultChildren.test.js +340 -0
  97. package/force-app/main/default/lwc/quanticResultCopyToClipboard/__tests__/quanticResultCopyToClipboard.test.js +300 -0
  98. package/force-app/main/default/lwc/quanticResultCopyToClipboard/e2e/fixture.ts +46 -0
  99. package/force-app/main/default/lwc/quanticResultCopyToClipboard/e2e/pageObject.ts +49 -0
  100. package/force-app/main/default/lwc/quanticResultCopyToClipboard/e2e/quanticResultCopyToClipboard.e2e.ts +40 -0
  101. package/force-app/main/default/lwc/quanticResultDate/__tests__/quanticResultDate.test.js +144 -0
  102. package/force-app/main/default/lwc/quanticResultField/__tests__/quanticResultField.test.js +120 -0
  103. package/force-app/main/default/lwc/quanticResultHighlightedTextField/__tests__/quanticResultHighlightedTextField.test.js +209 -0
  104. package/force-app/main/default/lwc/quanticResultLink/__tests__/quanticResultLink.test.js +261 -0
  105. package/force-app/main/default/lwc/quanticResultList/__tests__/quanticResultList.test.js +342 -0
  106. package/force-app/main/default/lwc/quanticResultList/e2e/fixture.ts +66 -0
  107. package/force-app/main/default/lwc/quanticResultList/e2e/pageObject.ts +81 -0
  108. package/force-app/main/default/lwc/quanticResultList/e2e/quanticResultList.e2e.ts +69 -0
  109. package/force-app/main/default/lwc/quanticResultMultiValueText/__tests__/quanticResultMultiValueText.test.js +235 -0
  110. package/force-app/main/default/lwc/quanticResultNumber/__tests__/quanticResultNumber.test.js +144 -0
  111. package/force-app/main/default/lwc/quanticResultPrintableUri/__tests__/quanticResultPrintableUri.test.js +324 -0
  112. package/force-app/main/default/lwc/quanticResultQuickview/__tests__/quanticResultQuickview.test.js +301 -0
  113. package/force-app/main/default/lwc/quanticResultQuickview/e2e/fixture.ts +81 -0
  114. package/force-app/main/default/lwc/quanticResultQuickview/e2e/pageObject.ts +38 -0
  115. package/force-app/main/default/lwc/quanticResultQuickview/e2e/quanticResultQuickView.e2e.ts +66 -0
  116. package/force-app/main/default/lwc/quanticResultTemplate/__tests__/quanticResultTemplate.test.js +90 -0
  117. package/force-app/main/default/lwc/quanticResultText/__tests__/quanticResultText.test.js +155 -0
  118. package/force-app/main/default/lwc/quanticResultsPerPage/__tests__/quanticResultsPerPage.test.js +464 -0
  119. package/force-app/main/default/lwc/quanticResultsPerPage/e2e/fixture.ts +74 -0
  120. package/force-app/main/default/lwc/quanticResultsPerPage/e2e/pageObject.ts +85 -0
  121. package/force-app/main/default/lwc/quanticResultsPerPage/e2e/quanticResultsPerPage.e2e.ts +97 -0
  122. package/force-app/main/default/lwc/quanticSearchBox/__tests__/quanticSearchBox.test.js +487 -0
  123. package/force-app/main/default/lwc/quanticSearchBox/e2e/fixture.ts +84 -0
  124. package/force-app/main/default/lwc/quanticSearchBox/e2e/pageObject.ts +45 -0
  125. package/force-app/main/default/lwc/quanticSearchBox/e2e/quanticSearchBox.e2e.ts +159 -0
  126. package/force-app/main/default/lwc/quanticSearchBoxInput/__tests__/quanticSearchBoxInput.test.js +743 -0
  127. package/force-app/main/default/lwc/quanticSearchBoxSuggestionsList/__tests__/quanticSearchBoxSuggestionsList.test.js +571 -0
  128. package/force-app/main/default/lwc/quanticSearchBoxSuggestionsList/e2e/fixture.ts +110 -0
  129. package/force-app/main/default/lwc/quanticSearchBoxSuggestionsList/e2e/pageObject.ts +113 -0
  130. package/force-app/main/default/lwc/quanticSearchBoxSuggestionsList/e2e/quanticSearchBoxSuggestionsList.e2e.ts +299 -0
  131. package/force-app/main/default/lwc/quanticSmartSnippet/__tests__/quanticSmartSnippet.test.js +341 -0
  132. package/force-app/main/default/lwc/quanticSmartSnippet/e2e/data.ts +21 -0
  133. package/force-app/main/default/lwc/quanticSmartSnippet/e2e/fixture.ts +91 -0
  134. package/force-app/main/default/lwc/quanticSmartSnippet/e2e/pageObject.ts +196 -0
  135. package/force-app/main/default/lwc/quanticSmartSnippet/e2e/quanticSmartSnippet.e2e.ts +192 -0
  136. package/force-app/main/default/lwc/quanticSmartSnippetAnswer/__tests__/quanticSmartSnippetAnswer.test.js +126 -0
  137. package/force-app/main/default/lwc/quanticSmartSnippetSource/__tests__/quanticSmartSnippetSource.test.js +290 -0
  138. package/force-app/main/default/lwc/quanticSmartSnippetSuggestions/__tests__/quanticSmartSnippetSuggestions.test.js +329 -0
  139. package/force-app/main/default/lwc/quanticSmartSnippetSuggestions/e2e/data.ts +31 -0
  140. package/force-app/main/default/lwc/quanticSmartSnippetSuggestions/e2e/fixture.ts +93 -0
  141. package/force-app/main/default/lwc/quanticSmartSnippetSuggestions/e2e/pageObject.ts +160 -0
  142. package/force-app/main/default/lwc/quanticSmartSnippetSuggestions/e2e/quanticSmartSnippetSuggestions.e2e.ts +127 -0
  143. package/force-app/main/default/lwc/quanticSort/__tests__/quanticSort.test.js +416 -0
  144. package/force-app/main/default/lwc/quanticSort/e2e/fixture.ts +61 -0
  145. package/force-app/main/default/lwc/quanticSort/e2e/pageObject.ts +89 -0
  146. package/force-app/main/default/lwc/quanticSort/e2e/quanticSort.e2e.ts +91 -0
  147. package/force-app/main/default/lwc/quanticSourceCitations/__tests__/quanticSourceCitations.test.js +136 -0
  148. package/force-app/main/default/lwc/quanticStandaloneSearchBox/__tests__/quanticStandaloneSearchBox.test.js +387 -0
  149. package/force-app/main/default/lwc/quanticStandaloneSearchBox/e2e/fixture.ts +53 -0
  150. package/force-app/main/default/lwc/quanticStandaloneSearchBox/e2e/pageObject.ts +54 -0
  151. package/force-app/main/default/lwc/quanticStandaloneSearchBox/e2e/quanticStandaloneSearchBox.e2e.ts +72 -0
  152. package/force-app/main/default/lwc/quanticStatefulButton/__tests__/quanticStatefulButton.test.js +222 -0
  153. package/force-app/main/default/lwc/quanticSummary/__tests__/quanticSummary.test.js +244 -0
  154. package/force-app/main/default/lwc/quanticTab/__tests__/quanticTab.test.js +333 -0
  155. package/force-app/main/default/lwc/quanticTab/e2e/fixture.ts +56 -0
  156. package/force-app/main/default/lwc/quanticTab/e2e/pageObject.ts +68 -0
  157. package/force-app/main/default/lwc/quanticTab/e2e/quanticTab.e2e.ts +72 -0
  158. package/force-app/main/default/lwc/quanticTabBar/__tests__/quanticTabBar.test.js +331 -0
  159. package/force-app/main/default/lwc/quanticTabBar/e2e/fixture.ts +61 -0
  160. package/force-app/main/default/lwc/quanticTabBar/e2e/pageObject.ts +80 -0
  161. package/force-app/main/default/lwc/quanticTabBar/e2e/quanticTabBar.e2e.ts +171 -0
  162. package/force-app/main/default/lwc/quanticTimeframeFacet/__tests__/quanticTimeframeFacet.test.js +1037 -0
  163. package/force-app/main/default/lwc/quanticTimeframeFacet/e2e/fixture.ts +58 -0
  164. package/force-app/main/default/lwc/quanticTimeframeFacet/e2e/pageObject.ts +43 -0
  165. package/force-app/main/default/lwc/quanticTimeframeFacet/e2e/quanticTimeframeFacet.e2e.ts +160 -0
  166. package/force-app/main/default/lwc/quanticTooltip/__tests__/quanticTooltip.test.js +107 -0
  167. package/force-app/main/default/lwc/quanticUserAction/__tests__/quanticUserAction.test.js +427 -0
  168. package/force-app/main/default/lwc/quanticUserActionsSession/__tests__/quanticUserActionsSession.test.js +269 -0
  169. package/force-app/main/default/lwc/quanticUserActionsTimeline/__tests__/data/userActionsState.json +89 -0
  170. package/force-app/main/default/lwc/quanticUserActionsTimeline/__tests__/quanticUserActionsTimeline.test.js +511 -0
  171. package/force-app/main/default/lwc/quanticUserActionsToggle/__tests__/quanticUserActionsToggle.test.js +229 -0
  172. package/force-app/main/default/lwc/quanticUserActionsToggle/e2e/data.ts +32 -0
  173. package/force-app/main/default/lwc/quanticUserActionsToggle/e2e/fixture.ts +32 -0
  174. package/force-app/main/default/lwc/quanticUserActionsToggle/e2e/pageObject.ts +71 -0
  175. package/force-app/main/default/lwc/quanticUserActionsToggle/e2e/quanticUserActionsToggle.e2e.ts +39 -0
  176. package/force-app/main/default/lwc/quanticUtils/__tests__/citationAnchoringUtils.test.js +84 -0
  177. package/force-app/main/default/lwc/quanticUtils/__tests__/facetDependenciesUtils.test.js +92 -0
  178. package/force-app/main/default/lwc/quanticUtils/__tests__/markdownUtils.test.js +71 -0
  179. package/force-app/main/default/lwc/quanticUtils/__tests__/quanticUtils.test.js +223 -0
  180. package/force-app/main/default/lwc/quanticViewedByCustomerBadge/__tests__/quanticViewedByCustomerBadge.test.js +131 -0
  181. package/force-app/main/default/staticresources/coveoheadless/case-assist/headless.js +2 -2
  182. package/force-app/main/default/staticresources/coveoheadless/definitions/app/case-assist-engine/case-assist-engine.d.ts +3 -3
  183. package/force-app/main/default/staticresources/coveoheadless/definitions/app/commerce-engine/commerce-engine.d.ts +16 -16
  184. package/force-app/main/default/staticresources/coveoheadless/definitions/app/common-reducers.d.ts +1 -1
  185. package/force-app/main/default/staticresources/coveoheadless/definitions/app/insight-engine/insight-engine.d.ts +5 -5
  186. package/force-app/main/default/staticresources/coveoheadless/definitions/app/recommendation-engine/recommendation-engine.d.ts +4 -4
  187. package/force-app/main/default/staticresources/coveoheadless/definitions/app/search-engine/search-engine.d.ts +4 -4
  188. package/force-app/main/default/staticresources/coveoheadless/definitions/app/store.d.ts +2 -2
  189. package/force-app/main/default/staticresources/coveoheadless/definitions/controllers/commerce/core/facets/headless-core-commerce-facet.d.ts +1 -1
  190. package/force-app/main/default/staticresources/coveoheadless/definitions/controllers/core/facets/range-facet/headless-core-range-facet.d.ts +1 -1
  191. package/force-app/main/default/staticresources/coveoheadless/definitions/features/actions-history/ipx-actions-history-actions.d.ts +1 -1
  192. package/force-app/main/default/staticresources/coveoheadless/definitions/features/advanced-search-queries/advanced-search-queries-slice.d.ts +1 -1
  193. package/force-app/main/default/staticresources/coveoheadless/definitions/features/attached-results/attached-results-slice.d.ts +1 -1
  194. package/force-app/main/default/staticresources/coveoheadless/definitions/features/case-assist-configuration/case-assist-configuration-slice.d.ts +1 -1
  195. package/force-app/main/default/staticresources/coveoheadless/definitions/features/case-context/case-context-slice.d.ts +1 -1
  196. package/force-app/main/default/staticresources/coveoheadless/definitions/features/case-field/case-field-actions.d.ts +1 -1
  197. package/force-app/main/default/staticresources/coveoheadless/definitions/features/case-field/case-field-slice.d.ts +1 -1
  198. package/force-app/main/default/staticresources/coveoheadless/definitions/features/case-input/case-input-slice.d.ts +1 -1
  199. package/force-app/main/default/staticresources/coveoheadless/definitions/features/commerce/configuration/configuration-slice.d.ts +1 -1
  200. package/force-app/main/default/staticresources/coveoheadless/definitions/features/commerce/context/cart/cart-actions.d.ts +2 -2
  201. package/force-app/main/default/staticresources/coveoheadless/definitions/features/commerce/context/cart/cart-slice.d.ts +1 -1
  202. package/force-app/main/default/staticresources/coveoheadless/definitions/features/commerce/context/context-slice.d.ts +1 -1
  203. package/force-app/main/default/staticresources/coveoheadless/definitions/features/commerce/did-you-mean/did-you-mean-slice.d.ts +1 -1
  204. package/force-app/main/default/staticresources/coveoheadless/definitions/features/commerce/facets/facet-search-set/commerce-facet-search-actions.d.ts +2 -2
  205. package/force-app/main/default/staticresources/coveoheadless/definitions/features/commerce/facets/facet-set/facet-set-slice.d.ts +1 -1
  206. package/force-app/main/default/staticresources/coveoheadless/definitions/features/commerce/facets/field-suggestions-order/field-suggestions-order-slice.d.ts +1 -1
  207. package/force-app/main/default/staticresources/coveoheadless/definitions/features/commerce/facets/numeric-facet/manual-numeric-facet-slice.d.ts +1 -1
  208. package/force-app/main/default/staticresources/coveoheadless/definitions/features/commerce/instant-products/instant-products-slice.d.ts +1 -1
  209. package/force-app/main/default/staticresources/coveoheadless/definitions/features/commerce/pagination/pagination-slice.d.ts +1 -1
  210. package/force-app/main/default/staticresources/coveoheadless/definitions/features/commerce/parameters/parameters-slice.d.ts +1 -1
  211. package/force-app/main/default/staticresources/coveoheadless/definitions/features/commerce/product/product-actions.d.ts +2 -2
  212. package/force-app/main/default/staticresources/coveoheadless/definitions/features/commerce/product-listing/product-listing-actions.d.ts +2 -2
  213. package/force-app/main/default/staticresources/coveoheadless/definitions/features/commerce/product-listing/product-listing-slice.d.ts +1 -1
  214. package/force-app/main/default/staticresources/coveoheadless/definitions/features/commerce/query/query-slice.d.ts +1 -1
  215. package/force-app/main/default/staticresources/coveoheadless/definitions/features/commerce/query-suggest/query-suggest-actions.d.ts +1 -1
  216. package/force-app/main/default/staticresources/coveoheadless/definitions/features/commerce/recent-queries/recent-queries-slice.d.ts +1 -1
  217. package/force-app/main/default/staticresources/coveoheadless/definitions/features/commerce/recommendations/recommendations-actions.d.ts +2 -2
  218. package/force-app/main/default/staticresources/coveoheadless/definitions/features/commerce/recommendations/recommendations-slice.d.ts +1 -1
  219. package/force-app/main/default/staticresources/coveoheadless/definitions/features/commerce/search/search-actions.d.ts +4 -4
  220. package/force-app/main/default/staticresources/coveoheadless/definitions/features/commerce/search/search-slice.d.ts +1 -1
  221. package/force-app/main/default/staticresources/coveoheadless/definitions/features/commerce/sort/sort-slice.d.ts +1 -1
  222. package/force-app/main/default/staticresources/coveoheadless/definitions/features/commerce/standalone-search-box-set/standalone-search-box-set-actions.d.ts +1 -1
  223. package/force-app/main/default/staticresources/coveoheadless/definitions/features/commerce/standalone-search-box-set/standalone-search-box-set-slice.d.ts +1 -1
  224. package/force-app/main/default/staticresources/coveoheadless/definitions/features/commerce/triggers/triggers-slice.d.ts +1 -1
  225. package/force-app/main/default/staticresources/coveoheadless/definitions/features/configuration/configuration-slice.d.ts +1 -1
  226. package/force-app/main/default/staticresources/coveoheadless/definitions/features/context/context-slice.d.ts +1 -1
  227. package/force-app/main/default/staticresources/coveoheadless/definitions/features/debug/debug-slice.d.ts +1 -1
  228. package/force-app/main/default/staticresources/coveoheadless/definitions/features/debug/version-slice.d.ts +1 -1
  229. package/force-app/main/default/staticresources/coveoheadless/definitions/features/dictionary-field-context/dictionary-field-context-slice.d.ts +1 -1
  230. package/force-app/main/default/staticresources/coveoheadless/definitions/features/did-you-mean/did-you-mean-slice.d.ts +1 -1
  231. package/force-app/main/default/staticresources/coveoheadless/definitions/features/document-suggestion/document-suggestion-actions.d.ts +1 -1
  232. package/force-app/main/default/staticresources/coveoheadless/definitions/features/document-suggestion/document-suggestion-slice.d.ts +1 -1
  233. package/force-app/main/default/staticresources/coveoheadless/definitions/features/excerpt-length/excerpt-length-slice.d.ts +1 -1
  234. package/force-app/main/default/staticresources/coveoheadless/definitions/features/facet-options/facet-options-slice.d.ts +1 -1
  235. package/force-app/main/default/staticresources/coveoheadless/definitions/features/facets/automatic-facet-set/automatic-facet-set-slice.d.ts +1 -1
  236. package/force-app/main/default/staticresources/coveoheadless/definitions/features/facets/category-facet-set/category-facet-set-slice.d.ts +1 -1
  237. package/force-app/main/default/staticresources/coveoheadless/definitions/features/facets/facet-order/facet-order-slice.d.ts +1 -1
  238. package/force-app/main/default/staticresources/coveoheadless/definitions/features/facets/facet-search-set/category/category-facet-search-set-slice.d.ts +1 -1
  239. package/force-app/main/default/staticresources/coveoheadless/definitions/features/facets/facet-search-set/generic/generic-facet-search-actions.d.ts +2 -2
  240. package/force-app/main/default/staticresources/coveoheadless/definitions/features/facets/facet-search-set/specific/specific-facet-search-set-slice.d.ts +1 -1
  241. package/force-app/main/default/staticresources/coveoheadless/definitions/features/facets/facet-set/facet-set-controller-actions.d.ts +2 -2
  242. package/force-app/main/default/staticresources/coveoheadless/definitions/features/facets/facet-set/facet-set-slice.d.ts +1 -1
  243. package/force-app/main/default/staticresources/coveoheadless/definitions/features/facets/range-facets/date-facet-set/date-facet-controller-actions.d.ts +2 -2
  244. package/force-app/main/default/staticresources/coveoheadless/definitions/features/facets/range-facets/date-facet-set/date-facet-set-slice.d.ts +1 -1
  245. package/force-app/main/default/staticresources/coveoheadless/definitions/features/facets/range-facets/numeric-facet-set/numeric-facet-controller-actions.d.ts +2 -2
  246. package/force-app/main/default/staticresources/coveoheadless/definitions/features/facets/range-facets/numeric-facet-set/numeric-facet-set-slice.d.ts +1 -1
  247. package/force-app/main/default/staticresources/coveoheadless/definitions/features/fields/fields-actions.d.ts +1 -1
  248. package/force-app/main/default/staticresources/coveoheadless/definitions/features/fields/fields-slice.d.ts +1 -1
  249. package/force-app/main/default/staticresources/coveoheadless/definitions/features/folding/folding-actions.d.ts +1 -1
  250. package/force-app/main/default/staticresources/coveoheadless/definitions/features/folding/folding-slice.d.ts +1 -1
  251. package/force-app/main/default/staticresources/coveoheadless/definitions/features/folding/insight-folding-actions.d.ts +1 -1
  252. package/force-app/main/default/staticresources/coveoheadless/definitions/features/generated-answer/generated-answer-actions.d.ts +2 -2
  253. package/force-app/main/default/staticresources/coveoheadless/definitions/features/generated-answer/generated-answer-slice.d.ts +1 -1
  254. package/force-app/main/default/staticresources/coveoheadless/definitions/features/history/history-actions.d.ts +3 -3
  255. package/force-app/main/default/staticresources/coveoheadless/definitions/features/history/history-slice.d.ts +2 -2
  256. package/force-app/main/default/staticresources/coveoheadless/definitions/features/insight-configuration/insight-configuration-slice.d.ts +1 -1
  257. package/force-app/main/default/staticresources/coveoheadless/definitions/features/insight-interface/insight-interface-actions.d.ts +1 -1
  258. package/force-app/main/default/staticresources/coveoheadless/definitions/features/insight-interface/insight-interface-slice.d.ts +1 -1
  259. package/force-app/main/default/staticresources/coveoheadless/definitions/features/insight-search/insight-search-actions.d.ts +5 -5
  260. package/force-app/main/default/staticresources/coveoheadless/definitions/features/insight-search/legacy/insight-search-actions.d.ts +4 -4
  261. package/force-app/main/default/staticresources/coveoheadless/definitions/features/insight-user-actions/insight-user-actions-actions.d.ts +1 -1
  262. package/force-app/main/default/staticresources/coveoheadless/definitions/features/insight-user-actions/insight-user-actions-slice.d.ts +1 -1
  263. package/force-app/main/default/staticresources/coveoheadless/definitions/features/instant-results/instant-results-slice.d.ts +1 -1
  264. package/force-app/main/default/staticresources/coveoheadless/definitions/features/pagination/pagination-slice.d.ts +1 -1
  265. package/force-app/main/default/staticresources/coveoheadless/definitions/features/pipeline/pipeline-slice.d.ts +1 -1
  266. package/force-app/main/default/staticresources/coveoheadless/definitions/features/query/query-slice.d.ts +1 -1
  267. package/force-app/main/default/staticresources/coveoheadless/definitions/features/query-set/query-set-slice.d.ts +1 -1
  268. package/force-app/main/default/staticresources/coveoheadless/definitions/features/query-suggest/query-suggest-actions.d.ts +1 -1
  269. package/force-app/main/default/staticresources/coveoheadless/definitions/features/query-suggest/query-suggest-slice.d.ts +1 -1
  270. package/force-app/main/default/staticresources/coveoheadless/definitions/features/question-answering/question-answering-slice.d.ts +1 -1
  271. package/force-app/main/default/staticresources/coveoheadless/definitions/features/recent-queries/recent-queries-slice.d.ts +1 -1
  272. package/force-app/main/default/staticresources/coveoheadless/definitions/features/recent-results/recent-results-slice.d.ts +1 -1
  273. package/force-app/main/default/staticresources/coveoheadless/definitions/features/recommendation/recommendation-actions.d.ts +1 -1
  274. package/force-app/main/default/staticresources/coveoheadless/definitions/features/recommendation/recommendation-slice.d.ts +1 -1
  275. package/force-app/main/default/staticresources/coveoheadless/definitions/features/result-preview/result-preview-actions.d.ts +2 -2
  276. package/force-app/main/default/staticresources/coveoheadless/definitions/features/result-preview/result-preview-slice.d.ts +1 -1
  277. package/force-app/main/default/staticresources/coveoheadless/definitions/features/search/legacy/search-actions.d.ts +5 -5
  278. package/force-app/main/default/staticresources/coveoheadless/definitions/features/search/search-actions.d.ts +6 -6
  279. package/force-app/main/default/staticresources/coveoheadless/definitions/features/search/search-slice.d.ts +1 -1
  280. package/force-app/main/default/staticresources/coveoheadless/definitions/features/search-hub/search-hub-slice.d.ts +1 -1
  281. package/force-app/main/default/staticresources/coveoheadless/definitions/features/sort-criteria/sort-criteria-slice.d.ts +1 -1
  282. package/force-app/main/default/staticresources/coveoheadless/definitions/features/standalone-search-box-set/standalone-search-box-set-actions.d.ts +1 -1
  283. package/force-app/main/default/staticresources/coveoheadless/definitions/features/standalone-search-box-set/standalone-search-box-set-slice.d.ts +1 -1
  284. package/force-app/main/default/staticresources/coveoheadless/definitions/features/static-filter-set/static-filter-set-slice.d.ts +1 -1
  285. package/force-app/main/default/staticresources/coveoheadless/definitions/features/tab-set/tab-set-slice.d.ts +1 -1
  286. package/force-app/main/default/staticresources/coveoheadless/definitions/features/triggers/triggers-slice.d.ts +1 -1
  287. package/force-app/main/default/staticresources/coveoheadless/definitions/ssr/commerce/factories/build-factory.d.ts +6 -1
  288. package/force-app/main/default/staticresources/coveoheadless/definitions/ssr/common/access-token-manager.d.ts +19 -0
  289. package/force-app/main/default/staticresources/coveoheadless/definitions/ssr-next/commerce/types/engine.d.ts +4 -2
  290. package/force-app/main/default/staticresources/coveoheadless/definitions/ssr-next/common/access-token-manager.d.ts +19 -0
  291. package/force-app/main/default/staticresources/coveoheadless/definitions/ssr-next/search/engine/search-engine.ssr.d.ts +2 -2
  292. package/force-app/main/default/staticresources/coveoheadless/definitions/test/mock-ssr-controller-definitions.d.ts +2 -2
  293. package/force-app/main/default/staticresources/coveoheadless/headless.js +2 -2
  294. package/force-app/main/default/staticresources/coveoheadless/insight/headless.js +2 -2
  295. package/force-app/main/default/staticresources/coveoheadless/recommendation/headless.js +2 -2
  296. package/package.json +46 -44
@@ -0,0 +1,448 @@
1
+ /* eslint-disable no-import-assign */
2
+ import QuanticRecentQueriesList from 'c/quanticRecentQueriesList';
3
+ import {cleanup, flushPromises, buildCreateTestComponent} from 'c/testUtils';
4
+ import * as mockHeadlessLoader from 'c/quanticHeadlessLoader';
5
+ import * as utils from 'c/quanticUtils';
6
+
7
+ const exampleEngine = {
8
+ id: 'exampleEngineId',
9
+ };
10
+ const localStorageKey = `${exampleEngine.id}_quantic-recent-queries`;
11
+
12
+ jest.mock('c/quanticHeadlessLoader');
13
+ jest.mock(
14
+ '@salesforce/label/c.quantic_RecentQueries',
15
+ () => ({default: 'Recent Queries'}),
16
+ {
17
+ virtual: true,
18
+ }
19
+ );
20
+ jest.mock(
21
+ '@salesforce/label/c.quantic_EmptyRecentQueriesListLabel',
22
+ () => ({default: 'Your recent searches will appear here.'}),
23
+ {
24
+ virtual: true,
25
+ }
26
+ );
27
+ jest.mock(
28
+ '@salesforce/label/c.quantic_Expand',
29
+ () => ({default: 'Expand Recent queries'}),
30
+ {
31
+ virtual: true,
32
+ }
33
+ );
34
+ jest.mock(
35
+ '@salesforce/label/c.quantic_Collapse',
36
+ () => ({default: 'Collapse Recent queries'}),
37
+ {
38
+ virtual: true,
39
+ }
40
+ );
41
+
42
+ const defaultRecentQueriesTitle = 'Recent Queries';
43
+ const defaultQueries = [];
44
+ const defaultMaxLength = 10;
45
+ let isInitialized = false;
46
+ let updateRecentQueriesState;
47
+
48
+ const initialRecentQueriesListState = {
49
+ queries: defaultQueries,
50
+ maxLength: defaultMaxLength,
51
+ };
52
+ let recentQueriesListState = initialRecentQueriesListState;
53
+
54
+ const functionMocks = {
55
+ buildRecentQueriesList: jest.fn(() => ({
56
+ state: recentQueriesListState,
57
+ subscribe: functionMocks.recentQueriesListSubscriber,
58
+ executeRecentQuery: functionMocks.executeRecentQuery,
59
+ clear: functionMocks.clear,
60
+ updateRecentQueries: functionMocks.updateRecentQueries,
61
+ })),
62
+ recentQueriesListSubscriber: jest.fn((callback) => {
63
+ updateRecentQueriesState = async () => {
64
+ callback();
65
+ await flushPromises();
66
+ };
67
+ return () => {};
68
+ }),
69
+ recentQueriesListUnsubscriber: jest.fn(),
70
+ executeRecentQuery: jest.fn(),
71
+ clear: jest.fn(),
72
+ updateRecentQueries: jest.fn(),
73
+ };
74
+
75
+ const defaultOptions = {
76
+ engineId: exampleEngine.id,
77
+ label: 'Recent Queries',
78
+ hideWhenEmpty: false,
79
+ isCollapsed: false,
80
+ };
81
+
82
+ const selectors = {
83
+ initializationError: 'c-quantic-component-error',
84
+ placeholder: 'c-quantic-placeholder',
85
+ quanticCardContainer: 'c-quantic-card-container',
86
+ recentQueryItem: '[data-testid="recent-query-item"]',
87
+ recentQueryItemText: '[data-testid="recent-query-text"]',
88
+ toggleButton: '[data-testid="action-button"]',
89
+ };
90
+
91
+ const createTestComponent = buildCreateTestComponent(
92
+ QuanticRecentQueriesList,
93
+ 'c-quantic-recent-queries-list',
94
+ defaultOptions
95
+ );
96
+
97
+ function prepareHeadlessState() {
98
+ // @ts-ignore
99
+ mockHeadlessLoader.getHeadlessBundle = () => {
100
+ return {
101
+ buildRecentQueriesList: functionMocks.buildRecentQueriesList,
102
+ };
103
+ };
104
+ }
105
+
106
+ function mockSuccessfulHeadlessInitialization() {
107
+ // @ts-ignore
108
+ mockHeadlessLoader.initializeWithHeadless = (element, _, initialize) => {
109
+ if (element instanceof QuanticRecentQueriesList && !isInitialized) {
110
+ isInitialized = true;
111
+ initialize(exampleEngine);
112
+ }
113
+ };
114
+ }
115
+
116
+ function mockErroneousHeadlessInitialization() {
117
+ // @ts-ignore
118
+ mockHeadlessLoader.initializeWithHeadless = (element) => {
119
+ if (element instanceof QuanticRecentQueriesList) {
120
+ element.setInitializationError();
121
+ }
122
+ };
123
+ }
124
+
125
+ describe('c-quantic-recent-queries-list', () => {
126
+ afterEach(() => {
127
+ cleanup();
128
+ recentQueriesListState = initialRecentQueriesListState;
129
+ isInitialized = false;
130
+ });
131
+
132
+ describe('controller initialization', () => {
133
+ beforeEach(() => {
134
+ mockSuccessfulHeadlessInitialization();
135
+ prepareHeadlessState();
136
+ });
137
+
138
+ it('should display the placeholder component', async () => {
139
+ const element = createTestComponent();
140
+ await flushPromises();
141
+
142
+ const placeholder = element.shadowRoot.querySelector(
143
+ selectors.placeholder
144
+ );
145
+
146
+ expect(placeholder).not.toBeNull();
147
+ expect(
148
+ element.shadowRoot.querySelector(selectors.quanticCardContainer)
149
+ ).toBeNull();
150
+ });
151
+
152
+ it('should build the controller with the proper parameters and subscribe to its state', async () => {
153
+ createTestComponent();
154
+ await flushPromises();
155
+
156
+ expect(functionMocks.buildRecentQueriesList).toHaveBeenCalledTimes(1);
157
+ expect(functionMocks.buildRecentQueriesList).toHaveBeenCalledWith(
158
+ exampleEngine,
159
+ {
160
+ initialState: {queries: defaultQueries},
161
+ options: expect.objectContaining({
162
+ maxLength: defaultMaxLength,
163
+ }),
164
+ }
165
+ );
166
+ expect(functionMocks.recentQueriesListSubscriber).toHaveBeenCalledTimes(
167
+ 1
168
+ );
169
+ });
170
+ });
171
+
172
+ describe('when an initialization error occurs', () => {
173
+ beforeEach(() => {
174
+ mockErroneousHeadlessInitialization();
175
+ });
176
+
177
+ it('should display the error component', async () => {
178
+ const element = createTestComponent();
179
+ await flushPromises();
180
+
181
+ const initializationError = element.shadowRoot.querySelector(
182
+ selectors.initializationError
183
+ );
184
+
185
+ expect(initializationError).not.toBeNull();
186
+ });
187
+ });
188
+
189
+ describe('when the component is initialized', () => {
190
+ beforeEach(() => {
191
+ mockSuccessfulHeadlessInitialization();
192
+ prepareHeadlessState();
193
+ });
194
+
195
+ describe('the #hideWhenEmpty property', () => {
196
+ describe('when there are no recent queries', () => {
197
+ beforeEach(() => {
198
+ recentQueriesListState = {
199
+ ...recentQueriesListState,
200
+ queries: [],
201
+ };
202
+ });
203
+
204
+ it('should display an empty list when it is set to false', async () => {
205
+ const element = createTestComponent({
206
+ ...defaultOptions,
207
+ hideWhenEmpty: false,
208
+ });
209
+ updateRecentQueriesState();
210
+ await flushPromises();
211
+
212
+ const recentQueriesContainer = element.shadowRoot.querySelector(
213
+ selectors.quanticCardContainer
214
+ );
215
+ expect(recentQueriesContainer).not.toBeNull();
216
+ expect(recentQueriesContainer.title).toEqual(
217
+ defaultRecentQueriesTitle
218
+ );
219
+
220
+ const recentQueriesListItems = element.shadowRoot.querySelectorAll(
221
+ selectors.recentQueryItem
222
+ );
223
+ expect(recentQueriesListItems.length).toEqual(0);
224
+ });
225
+
226
+ it('should not display the recent queries card when it is set to true', async () => {
227
+ const element = createTestComponent({
228
+ ...defaultOptions,
229
+ hideWhenEmpty: true,
230
+ });
231
+ await flushPromises();
232
+
233
+ const recentQueriesContainer = element.shadowRoot.querySelector(
234
+ selectors.quanticCardContainer
235
+ );
236
+ expect(recentQueriesContainer).toBeNull();
237
+ });
238
+ });
239
+ });
240
+
241
+ describe('when there are recent queries', () => {
242
+ const exampleQueries = ['query1', 'query2'];
243
+
244
+ it('should no longer display the placeholder component', async () => {
245
+ const element = createTestComponent();
246
+ recentQueriesListState = {
247
+ queries: exampleQueries,
248
+ maxLength: defaultMaxLength,
249
+ };
250
+ updateRecentQueriesState();
251
+ await flushPromises();
252
+
253
+ const placeholder = element.shadowRoot.querySelector(
254
+ selectors.placeholder
255
+ );
256
+
257
+ expect(placeholder).toBeNull();
258
+ });
259
+
260
+ it('should display the recent queries list with the default options', async () => {
261
+ recentQueriesListState = {
262
+ queries: exampleQueries,
263
+ maxLength: defaultMaxLength,
264
+ };
265
+ const element = createTestComponent();
266
+ updateRecentQueriesState();
267
+ await flushPromises();
268
+
269
+ const recentQueriesContainer = element.shadowRoot.querySelector(
270
+ selectors.quanticCardContainer
271
+ );
272
+ expect(recentQueriesContainer).not.toBeNull();
273
+ expect(recentQueriesContainer.title).toEqual(defaultRecentQueriesTitle);
274
+
275
+ const recentQueriesListItems = element.shadowRoot.querySelectorAll(
276
+ selectors.recentQueryItem
277
+ );
278
+ expect(recentQueriesListItems.length).toEqual(exampleQueries.length);
279
+
280
+ recentQueriesListItems.forEach((item, index) => {
281
+ const recentQueryText = item.querySelector(
282
+ selectors.recentQueryItemText
283
+ ).textContent;
284
+ expect(recentQueryText).toEqual(exampleQueries[index]);
285
+ });
286
+ });
287
+
288
+ it('should use the correct initial state retrieved from the localstorage', async () => {
289
+ const exampleRecentQueries = ['query1', 'query2'];
290
+ const getItemFromLocalStorageSpy = jest
291
+ .spyOn(utils, 'getItemFromLocalStorage')
292
+ .mockReturnValue(exampleRecentQueries);
293
+ createTestComponent();
294
+ await flushPromises();
295
+
296
+ expect(functionMocks.buildRecentQueriesList).toHaveBeenCalledTimes(1);
297
+ expect(functionMocks.buildRecentQueriesList).toHaveBeenCalledWith(
298
+ exampleEngine,
299
+ {
300
+ initialState: {queries: exampleRecentQueries},
301
+ options: {maxLength: defaultMaxLength},
302
+ }
303
+ );
304
+
305
+ expect(getItemFromLocalStorageSpy).toHaveBeenCalledWith(
306
+ localStorageKey
307
+ );
308
+ expect(getItemFromLocalStorageSpy).toHaveBeenCalledTimes(1);
309
+ });
310
+
311
+ it('should call #setItemInLocalStorage function with the proper parameters when the recent queries change in the state', async () => {
312
+ const setItemInLocalStorageSpy = jest.spyOn(
313
+ utils,
314
+ 'setItemInLocalStorage'
315
+ );
316
+ createTestComponent();
317
+ recentQueriesListState.queries = exampleQueries;
318
+ updateRecentQueriesState();
319
+ await flushPromises();
320
+
321
+ recentQueriesListState = {
322
+ queries: exampleQueries,
323
+ maxLength: defaultMaxLength,
324
+ };
325
+
326
+ expect(setItemInLocalStorageSpy).toHaveBeenCalledWith(
327
+ localStorageKey,
328
+ exampleQueries
329
+ );
330
+ expect(setItemInLocalStorageSpy).toHaveBeenCalledTimes(1);
331
+ });
332
+ });
333
+
334
+ describe('with a custom #maxLength value', () => {
335
+ it('should set the #maxLength value in the controller', async () => {
336
+ const exampleQueries = ['query1', 'query2'];
337
+ const customMaxLength = 5;
338
+ createTestComponent({...defaultOptions, maxLength: customMaxLength});
339
+ await flushPromises();
340
+
341
+ expect(functionMocks.buildRecentQueriesList).toHaveBeenCalledTimes(1);
342
+ expect(functionMocks.buildRecentQueriesList).toHaveBeenCalledWith(
343
+ exampleEngine,
344
+ {
345
+ initialState: {queries: exampleQueries},
346
+ options: {maxLength: customMaxLength},
347
+ }
348
+ );
349
+ });
350
+ });
351
+
352
+ describe('with a custom #label value', () => {
353
+ it('should display the custom label in the title of the component', async () => {
354
+ const customLabel = 'My Custom Label';
355
+ const element = createTestComponent({
356
+ ...defaultOptions,
357
+ label: customLabel,
358
+ });
359
+ updateRecentQueriesState();
360
+ await flushPromises();
361
+
362
+ const recentQueriesContainer = element.shadowRoot.querySelector(
363
+ selectors.quanticCardContainer
364
+ );
365
+ expect(recentQueriesContainer).not.toBeNull();
366
+ expect(recentQueriesContainer.title).toEqual(customLabel);
367
+ });
368
+ });
369
+
370
+ describe('when the #isCollapsed property is true', () => {
371
+ it('should display the card title and the expand button icon but not the recent queries list', async () => {
372
+ const expandRecentQueriesLabel = 'Expand Recent queries';
373
+ const expandRecentQueriesIcon = 'utility:add';
374
+ const element = createTestComponent({
375
+ ...defaultOptions,
376
+ isCollapsed: true,
377
+ });
378
+ updateRecentQueriesState();
379
+ await flushPromises();
380
+
381
+ const recentQueriesContainer = element.shadowRoot.querySelector(
382
+ selectors.quanticCardContainer
383
+ );
384
+ expect(recentQueriesContainer).not.toBeNull();
385
+ expect(recentQueriesContainer.title).toEqual(defaultRecentQueriesTitle);
386
+
387
+ const toggleButton = element.shadowRoot.querySelector(
388
+ selectors.toggleButton
389
+ );
390
+
391
+ expect(toggleButton).not.toBeNull();
392
+ expect(toggleButton.alternativeText).toEqual(expandRecentQueriesLabel);
393
+ expect(toggleButton.iconName).toEqual(expandRecentQueriesIcon);
394
+
395
+ const recentQueriesListItems = element.shadowRoot.querySelectorAll(
396
+ selectors.recentQueryItem
397
+ );
398
+ expect(recentQueriesListItems[0]).toBeFalsy();
399
+ expect(recentQueriesListItems.length).toEqual(0);
400
+ });
401
+ });
402
+
403
+ describe('when the #isCollapsed property is false', () => {
404
+ it('should display the card title, the collapse button icon and the recent queries list', async () => {
405
+ const collapseRecentQueriesLabel = 'Collapse Recent queries';
406
+ const collapseRecentQueriesIcon = 'utility:dash';
407
+ const element = createTestComponent({
408
+ ...defaultOptions,
409
+ isCollapsed: false,
410
+ });
411
+ updateRecentQueriesState();
412
+ await flushPromises();
413
+
414
+ const recentQueriesContainer = element.shadowRoot.querySelector(
415
+ selectors.quanticCardContainer
416
+ );
417
+ expect(recentQueriesContainer).not.toBeNull();
418
+ expect(recentQueriesContainer.title).toEqual(defaultRecentQueriesTitle);
419
+
420
+ const toggleButton = element.shadowRoot.querySelector(
421
+ selectors.toggleButton
422
+ );
423
+
424
+ expect(toggleButton).not.toBeNull();
425
+ expect(toggleButton.alternativeText).toEqual(
426
+ collapseRecentQueriesLabel
427
+ );
428
+ expect(toggleButton.iconName).toEqual(collapseRecentQueriesIcon);
429
+
430
+ const recentQueriesListItems = element.shadowRoot.querySelectorAll(
431
+ selectors.recentQueryItem
432
+ );
433
+
434
+ expect(recentQueriesListItems.length).toEqual(
435
+ recentQueriesListState.queries.length
436
+ );
437
+ recentQueriesListItems.forEach((item, index) => {
438
+ const recentQueryText = item.querySelector(
439
+ selectors.recentQueryItemText
440
+ ).textContent;
441
+ expect(recentQueryText).toEqual(
442
+ recentQueriesListState.queries[index]
443
+ );
444
+ });
445
+ });
446
+ });
447
+ });
448
+ });
@@ -0,0 +1,42 @@
1
+ import {RecentQueriesListObject} from './pageObject';
2
+ import {quanticBase} from '../../../../../../playwright/fixtures/baseFixture';
3
+ import {SearchObject} from '../../../../../../playwright/page-object/searchObject';
4
+ import {searchRequestRegex} from '../../../../../../playwright/utils/requests';
5
+
6
+ const pageUrl = 's/quantic-recent-queries-list';
7
+
8
+ interface RecentQueriesListOptions {
9
+ engineId: string;
10
+ maxLength: number;
11
+ label: string;
12
+ hideWhenEmpty: boolean;
13
+ isCollapsed: boolean;
14
+ }
15
+
16
+ type QuanticRecentQueriesListE2ESearchFixtures = {
17
+ recentQueriesList: RecentQueriesListObject;
18
+ search: SearchObject;
19
+ options: Partial<RecentQueriesListOptions>;
20
+ urlHash: string;
21
+ };
22
+
23
+ export const testSearch =
24
+ quanticBase.extend<QuanticRecentQueriesListE2ESearchFixtures>({
25
+ options: {},
26
+ urlHash: '',
27
+ search: async ({page}, use) => {
28
+ await use(new SearchObject(page, searchRequestRegex));
29
+ },
30
+ recentQueriesList: async (
31
+ {page, options, configuration, search, urlHash},
32
+ use
33
+ ) => {
34
+ await page.goto(urlHash ? `${pageUrl}#${urlHash}` : pageUrl);
35
+ configuration.configure(options);
36
+ await search.waitForSearchResponse();
37
+
38
+ await use(new RecentQueriesListObject(page));
39
+ },
40
+ });
41
+
42
+ export {expect} from '@playwright/test';
@@ -0,0 +1,55 @@
1
+ import type {Locator, Page, Request} from '@playwright/test';
2
+ import {isUaSearchEvent} from '../../../../../../playwright/utils/requests';
3
+
4
+ export class RecentQueriesListObject {
5
+ constructor(public page: Page) {
6
+ this.page = page;
7
+ }
8
+
9
+ get recentQueriesList(): Locator {
10
+ return this.page.locator('c-quantic-recent-queries-list');
11
+ }
12
+
13
+ get recentQueriesListItems(): Locator {
14
+ return this.recentQueriesList.getByTestId('recent-query-item');
15
+ }
16
+
17
+ async waitForRecentQueryClickAnalytics(
18
+ expectedFields: Record<string, any>
19
+ ): Promise<Request> {
20
+ return this.waitForRecentQueriesListSearchAnalytics(
21
+ 'recentQueriesClick',
22
+ (data: Record<string, any>) => {
23
+ return Object.keys(expectedFields).every(
24
+ (key) => data?.[key] === expectedFields[key]
25
+ );
26
+ }
27
+ );
28
+ }
29
+
30
+ async waitForRecentQueriesListSearchAnalytics(
31
+ actionCause: string,
32
+ customChecker?: Function
33
+ ): Promise<Request> {
34
+ const uaRequest = this.page.waitForRequest((request) => {
35
+ if (isUaSearchEvent(request)) {
36
+ const requestBody = request.postDataJSON?.();
37
+
38
+ const expectedFields: Record<string, any> = {
39
+ actionCause: actionCause,
40
+ };
41
+
42
+ const matchesExpectedFields = Object.keys(expectedFields).every(
43
+ (key) => requestBody?.[key] === expectedFields[key]
44
+ );
45
+
46
+ return (
47
+ matchesExpectedFields &&
48
+ (customChecker ? customChecker(requestBody) : true)
49
+ );
50
+ }
51
+ return false;
52
+ });
53
+ return uaRequest;
54
+ }
55
+ }
@@ -0,0 +1,93 @@
1
+ import {testSearch, expect} from './fixture';
2
+ import {RecentQueriesListObject} from './pageObject';
3
+
4
+ const exampleQueries = ['homer', 'apu', 'homer'];
5
+
6
+ let test = testSearch;
7
+
8
+ async function assertRecentQueriesList(
9
+ recentQueriesList: RecentQueriesListObject,
10
+ expectedQueries: string[]
11
+ ) {
12
+ const recentQueriesListItems =
13
+ await recentQueriesList.recentQueriesListItems.all();
14
+ expect(recentQueriesListItems.length).toEqual(expectedQueries.length);
15
+
16
+ expectedQueries.forEach(async (expectedQuery: string, index: number) => {
17
+ // eslint-disable-next-line no-await-in-loop
18
+ await expect(recentQueriesListItems[index]).toHaveText(expectedQuery);
19
+ });
20
+ }
21
+
22
+ test.describe('quantic recent queries list', () => {
23
+ test.describe('when the query is already in the recent queries list', () => {
24
+ test('should set it as the first recent query and remove the previous one', async ({
25
+ search,
26
+ recentQueriesList,
27
+ }) => {
28
+ const firstSearchResponsePromise = search.waitForSearchResponse();
29
+ await search.triggerSearchWithInput(exampleQueries[0]);
30
+ await firstSearchResponsePromise;
31
+
32
+ const secondSearchResponsePromise = search.waitForSearchResponse();
33
+ await search.triggerSearchWithInput(exampleQueries[1]);
34
+ await secondSearchResponsePromise;
35
+
36
+ const thirdSearchResponsePromise = search.waitForSearchResponse();
37
+ await search.triggerSearchWithInput(exampleQueries[0]);
38
+ await thirdSearchResponsePromise;
39
+
40
+ await assertRecentQueriesList(recentQueriesList, [
41
+ exampleQueries[0],
42
+ exampleQueries[1],
43
+ ]);
44
+ });
45
+ });
46
+
47
+ test.describe('when passing a query value as parameter in the URL', () => {
48
+ test.use({
49
+ urlHash: `q=${exampleQueries[0]}`,
50
+ });
51
+
52
+ test('should add the query to the recent queries list', async ({
53
+ recentQueriesList,
54
+ }) => {
55
+ const firstRecentQuery =
56
+ await recentQueriesList.recentQueriesListItems.first();
57
+ const firstRecentQueryText = await firstRecentQuery.innerText();
58
+ expect(firstRecentQueryText).toEqual(exampleQueries[0]);
59
+ });
60
+ });
61
+
62
+ test.describe('when clicking on a recent query', () => {
63
+ test('should trigger a search query, log the corresponding UA analytics events and set the query in the URL hash', async ({
64
+ search,
65
+ page,
66
+ recentQueriesList,
67
+ }) => {
68
+ const searchResponsePromise = search.waitForSearchResponse();
69
+ await search.triggerSearchWithInput(exampleQueries[0]);
70
+ await searchResponsePromise;
71
+
72
+ const recentQueryClickSearchResponsePromise =
73
+ search.waitForSearchResponse();
74
+ const uaRequestPromise =
75
+ recentQueriesList.waitForRecentQueryClickAnalytics({
76
+ queryText: exampleQueries[0],
77
+ });
78
+
79
+ const firstRecentQuery =
80
+ await recentQueriesList.recentQueriesListItems.first();
81
+ await firstRecentQuery.click();
82
+
83
+ const searchResponse = await recentQueryClickSearchResponsePromise;
84
+ await uaRequestPromise;
85
+
86
+ const searchResponseBody = search.extractDataFromResponse(searchResponse);
87
+ expect(searchResponseBody.q).toEqual(exampleQueries[0]);
88
+
89
+ const urlHash = await page.url();
90
+ expect(urlHash).toContain(`q=${exampleQueries[0]}`);
91
+ });
92
+ });
93
+ });