@coveo/quantic 3.33.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 (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,953 @@
1
+ /* eslint-disable no-import-assign */
2
+ import QuanticNumericFacet from 'c/quanticNumericFacet';
3
+ import * as mockHeadlessLoader from 'c/quanticHeadlessLoader';
4
+ import {generateFacetDependencyConditions} from 'c/quanticUtils';
5
+ import {buildCreateTestComponent, cleanup, flushPromises} from 'c/testUtils';
6
+
7
+ jest.mock('c/quanticUtils', () => ({
8
+ generateFacetDependencyConditions: jest.fn(),
9
+ Store: {
10
+ facetTypes: {
11
+ NUMERICFACETS: 'numericFacets',
12
+ },
13
+ },
14
+ I18nUtils: {
15
+ format: jest.fn(),
16
+ getLabelNameWithCount: jest.fn(),
17
+ },
18
+ }));
19
+ jest.mock('c/quanticHeadlessLoader');
20
+
21
+ const exampleFacetId = 'example facet id';
22
+ const exampleField = 'exampleField';
23
+ const exampleEngineId = 'exampleEngineId';
24
+ const exampleFilterId = `${exampleFacetId}_input`;
25
+ const defaultOptions = {
26
+ engineId: exampleEngineId,
27
+ field: exampleField,
28
+ facetId: exampleFacetId,
29
+ sortCriteria: 'ascending',
30
+ numberOfValues: 10,
31
+ rangeAlgorithm: 'even',
32
+ label: 'example label',
33
+ withInput: 'integer',
34
+ };
35
+ const parentFacetIdError = `The ${exampleField} c-quantic-numeric-facet requires dependsOn.parentFacetId to be a valid string.`;
36
+ const expectedValueError = `The ${exampleField} c-quantic-numeric-facet requires dependsOn.expectedValue to be a valid string.`;
37
+
38
+ const exampleFacetValues = [
39
+ {start: 1, end: 2, numberOfResults: 10},
40
+ {start: 2, end: 3, numberOfResults: 10},
41
+ ];
42
+
43
+ const initialFacetState = {
44
+ facetId: exampleFacetId,
45
+ values: [],
46
+ enabled: true,
47
+ };
48
+ let facetState = initialFacetState;
49
+
50
+ const initialFilterState = {
51
+ facetId: exampleFilterId,
52
+ };
53
+ let filterState = initialFilterState;
54
+
55
+ const initialSearchStatusState = {
56
+ hasError: false,
57
+ };
58
+ let searchStatusState = initialSearchStatusState;
59
+
60
+ const selectors = {
61
+ facetContent: '[data-testid="facet-content"]',
62
+ componentError: 'c-quantic-component-error',
63
+ placeholder: 'c-quantic-placeholder',
64
+ cardContainer: 'c-quantic-card-container',
65
+ clearSelectionButton: '[data-testid="clear-selection-button"]',
66
+ facetBody: '[data-testid="facet__body"]',
67
+ searchForm: '[data-testid="facet__search-form"]',
68
+ facetValue: 'c-quantic-facet-value',
69
+ facetCollapseToggle: 'lightning-button-icon',
70
+ };
71
+
72
+ const createTestComponent = buildCreateTestComponent(
73
+ QuanticNumericFacet,
74
+ 'c-quantic-numeric-facet',
75
+ defaultOptions
76
+ );
77
+
78
+ const functionsMocks = {
79
+ buildNumericFacet: jest.fn(() => ({
80
+ subscribe: functionsMocks.facetStateSubscriber,
81
+ state: facetState,
82
+ deselectAll: functionsMocks.deselectAll,
83
+ toggleSingleSelect: functionsMocks.toggleSingleSelect,
84
+ toggleSelect: functionsMocks.toggleSelect,
85
+ })),
86
+ buildNumericFilter: jest.fn(() => ({
87
+ subscribe: functionsMocks.filterStateSubscriber,
88
+ setRange: functionsMocks.setRange,
89
+ clear: functionsMocks.clear,
90
+ state: filterState,
91
+ })),
92
+ stopWatching: jest.fn(),
93
+ buildFacetConditionsManager: jest.fn(() => ({
94
+ stopWatching: functionsMocks.stopWatching,
95
+ })),
96
+ buildSearchStatus: jest.fn(() => ({
97
+ subscribe: functionsMocks.searchStatusStateSubscriber,
98
+ state: searchStatusState,
99
+ })),
100
+ facetStateSubscriber: jest.fn((cb) => {
101
+ cb();
102
+ return functionsMocks.facetStateUnsubscriber;
103
+ }),
104
+ filterStateSubscriber: jest.fn((cb) => {
105
+ cb();
106
+ return functionsMocks.filterStateUnsubscriber;
107
+ }),
108
+ searchStatusStateSubscriber: jest.fn((cb) => {
109
+ cb();
110
+ return functionsMocks.searchStatusStateUnsubscriber;
111
+ }),
112
+ facetStateUnsubscriber: jest.fn(),
113
+ searchStatusStateUnsubscriber: jest.fn(),
114
+ filterStateUnsubscriber: jest.fn(),
115
+ deselectAll: jest.fn(),
116
+ toggleSingleSelect: jest.fn(),
117
+ toggleSelect: jest.fn(),
118
+ registerToStore: jest.fn(),
119
+ eventHandler: jest.fn(),
120
+ deselectAllNumericFacetValues: jest.fn(),
121
+ loadNumericFacetSetActions: jest.fn(() => ({
122
+ deselectAllNumericFacetValues: functionsMocks.deselectAllNumericFacetValues,
123
+ })),
124
+ dispatch: jest.fn(),
125
+ setRange: jest.fn(),
126
+ clear: jest.fn(),
127
+ reportValidity: jest.fn(() => true),
128
+ };
129
+
130
+ const exampleEngine = {
131
+ id: exampleEngineId,
132
+ dispatch: functionsMocks.dispatch,
133
+ };
134
+
135
+ // @ts-ignore
136
+ mockHeadlessLoader.registerToStore = functionsMocks.registerToStore;
137
+
138
+ function prepareHeadlessState() {
139
+ // @ts-ignore
140
+ mockHeadlessLoader.getHeadlessBundle = () => {
141
+ return {
142
+ buildNumericFacet: functionsMocks.buildNumericFacet,
143
+ buildNumericFilter: functionsMocks.buildNumericFilter,
144
+ buildSearchStatus: functionsMocks.buildSearchStatus,
145
+ buildFacetConditionsManager: functionsMocks.buildFacetConditionsManager,
146
+ loadNumericFacetSetActions: functionsMocks.loadNumericFacetSetActions,
147
+ };
148
+ };
149
+ }
150
+
151
+ let isInitialized = false;
152
+
153
+ function mockBueno() {
154
+ // @ts-ignore
155
+ mockHeadlessLoader.getBueno = () => {
156
+ // @ts-ignore
157
+ global.Bueno = {
158
+ isString: jest
159
+ .fn()
160
+ .mockImplementation(
161
+ (value) => Object.prototype.toString.call(value) === '[object String]'
162
+ ),
163
+ };
164
+ return new Promise((resolve) => resolve());
165
+ };
166
+ }
167
+
168
+ function mockSuccessfulHeadlessInitialization() {
169
+ // @ts-ignore
170
+ mockHeadlessLoader.initializeWithHeadless = (element, _, initialize) => {
171
+ if (element instanceof QuanticNumericFacet && !isInitialized) {
172
+ isInitialized = true;
173
+ initialize(exampleEngine);
174
+ }
175
+ };
176
+ }
177
+
178
+ function mockErroneousHeadlessInitialization() {
179
+ // @ts-ignore
180
+ mockHeadlessLoader.initializeWithHeadless = (element) => {
181
+ if (element instanceof QuanticNumericFacet) {
182
+ element.setInitializationError();
183
+ }
184
+ };
185
+ }
186
+
187
+ async function submitFacetSearchForm(element) {
188
+ const form = element.shadowRoot.querySelector(selectors.searchForm);
189
+ form.dispatchEvent(
190
+ new CustomEvent('submit', {bubbles: true, composed: true})
191
+ );
192
+ await flushPromises();
193
+ }
194
+
195
+ async function mockInputReportValidity(element) {
196
+ const inputs = [...element.shadowRoot.querySelectorAll('lightning-input')];
197
+ inputs.forEach((input) => {
198
+ input.reportValidity = functionsMocks.reportValidity;
199
+ });
200
+ }
201
+
202
+ describe('c-quantic-numeric-facet', () => {
203
+ beforeEach(() => {
204
+ prepareHeadlessState();
205
+ mockSuccessfulHeadlessInitialization();
206
+ mockBueno();
207
+ });
208
+
209
+ afterEach(() => {
210
+ cleanup();
211
+ facetState = initialFacetState;
212
+ searchStatusState = initialSearchStatusState;
213
+ filterState = initialFilterState;
214
+ isInitialized = false;
215
+ });
216
+
217
+ describe('component initialization', () => {
218
+ it('should initialize the facet controller and the search status controller', async () => {
219
+ createTestComponent();
220
+ await flushPromises();
221
+
222
+ expect(functionsMocks.buildNumericFacet).toHaveBeenCalledTimes(1);
223
+ expect(functionsMocks.buildSearchStatus).toHaveBeenCalledTimes(1);
224
+ expect(functionsMocks.buildNumericFacet).toHaveBeenCalledWith(
225
+ exampleEngine,
226
+ expect.objectContaining({
227
+ options: expect.objectContaining({
228
+ field: defaultOptions.field,
229
+ facetId: defaultOptions.facetId,
230
+ generateAutomaticRanges: true,
231
+ rangeAlgorithm: defaultOptions.rangeAlgorithm,
232
+ sortCriteria: defaultOptions.sortCriteria,
233
+ numberOfValues: defaultOptions.numberOfValues,
234
+ }),
235
+ })
236
+ );
237
+ });
238
+
239
+ it('should register the facet to the quantic store', async () => {
240
+ const expectedFacetType = 'numericFacets';
241
+ const element = createTestComponent();
242
+ await flushPromises();
243
+
244
+ expect(functionsMocks.registerToStore).toHaveBeenCalledTimes(1);
245
+ expect(functionsMocks.registerToStore).toHaveBeenCalledWith(
246
+ exampleEngine.id,
247
+ expectedFacetType,
248
+ expect.objectContaining({
249
+ label: defaultOptions.label,
250
+ facetId: defaultOptions.facetId,
251
+ element: element,
252
+ })
253
+ );
254
+ });
255
+
256
+ it('should subscribe to the headless numeric facet state and search status state changes', async () => {
257
+ createTestComponent();
258
+ await flushPromises();
259
+
260
+ expect(functionsMocks.facetStateSubscriber).toHaveBeenCalledTimes(1);
261
+ expect(functionsMocks.searchStatusStateSubscriber).toHaveBeenCalledTimes(
262
+ 1
263
+ );
264
+ });
265
+
266
+ describe('the facet conditions manager', () => {
267
+ it('should build the controller when the dependsOn property is set', async () => {
268
+ const exampleFacetDependency = {
269
+ parentFacetId: 'filetype',
270
+ expectedValue: 'txt',
271
+ };
272
+ createTestComponent({
273
+ ...defaultOptions,
274
+ dependsOn: exampleFacetDependency,
275
+ });
276
+ await flushPromises();
277
+
278
+ expect(
279
+ functionsMocks.buildFacetConditionsManager
280
+ ).toHaveBeenCalledTimes(2);
281
+ expect(functionsMocks.buildFacetConditionsManager).toHaveBeenCalledWith(
282
+ exampleEngine,
283
+ {
284
+ facetId: exampleFacetId,
285
+ }
286
+ );
287
+ expect(functionsMocks.buildFacetConditionsManager).toHaveBeenCalledWith(
288
+ exampleEngine,
289
+ {
290
+ facetId: exampleFilterId,
291
+ }
292
+ );
293
+
294
+ expect(generateFacetDependencyConditions).toHaveBeenCalledTimes(2);
295
+ const expectedArg = {
296
+ [exampleFacetDependency.parentFacetId]:
297
+ exampleFacetDependency.expectedValue,
298
+ };
299
+ expect(generateFacetDependencyConditions).toHaveBeenNthCalledWith(
300
+ 1,
301
+ expectedArg
302
+ );
303
+ expect(generateFacetDependencyConditions).toHaveBeenNthCalledWith(
304
+ 2,
305
+ expectedArg
306
+ );
307
+ });
308
+
309
+ it('should not build the controller when the dependsOn property is not set', async () => {
310
+ createTestComponent();
311
+ await flushPromises();
312
+
313
+ expect(functionsMocks.buildNumericFacet).toHaveBeenCalledTimes(1);
314
+ expect(
315
+ functionsMocks.buildFacetConditionsManager
316
+ ).toHaveBeenCalledTimes(0);
317
+ expect(generateFacetDependencyConditions).toHaveBeenCalledTimes(0);
318
+ });
319
+ });
320
+
321
+ describe('the withInput property', () => {
322
+ it('should initialize the numeric filter controller and subscribe to its state changes when the property withInput is set', async () => {
323
+ createTestComponent({
324
+ ...defaultOptions,
325
+ withInput: 'integer',
326
+ });
327
+ await flushPromises();
328
+
329
+ expect(functionsMocks.buildNumericFilter).toHaveBeenCalledTimes(1);
330
+ expect(functionsMocks.buildNumericFilter).toHaveBeenCalledWith(
331
+ exampleEngine,
332
+ expect.objectContaining({
333
+ options: expect.objectContaining({
334
+ field: defaultOptions.field,
335
+ facetId: `${defaultOptions.facetId}_input`,
336
+ }),
337
+ })
338
+ );
339
+ expect(functionsMocks.filterStateSubscriber).toHaveBeenCalledTimes(1);
340
+ });
341
+
342
+ it('should not initialize the numeric filter controller and subscribe to its state changes when the property withInput is not set', async () => {
343
+ createTestComponent({
344
+ ...defaultOptions,
345
+ withInput: undefined,
346
+ });
347
+ await flushPromises();
348
+
349
+ expect(functionsMocks.buildNumericFilter).toHaveBeenCalledTimes(0);
350
+ expect(functionsMocks.filterStateSubscriber).toHaveBeenCalledTimes(0);
351
+ });
352
+ });
353
+
354
+ describe('when an initialization error occurs', () => {
355
+ beforeEach(() => {
356
+ mockErroneousHeadlessInitialization();
357
+ });
358
+
359
+ it('should display the initialization error component', async () => {
360
+ const element = createTestComponent();
361
+ await flushPromises();
362
+
363
+ const componentError = element.shadowRoot.querySelector(
364
+ selectors.componentError
365
+ );
366
+
367
+ expect(componentError).not.toBeNull();
368
+ });
369
+ });
370
+ });
371
+
372
+ describe('the facet enablement', () => {
373
+ describe('when the facet is enabled', () => {
374
+ beforeAll(() => {
375
+ facetState = {...initialFacetState, enabled: true};
376
+ });
377
+
378
+ it('should display the facet content', async () => {
379
+ const element = createTestComponent();
380
+ await flushPromises();
381
+
382
+ const facetContent = element.shadowRoot.querySelector(
383
+ selectors.facetContent
384
+ );
385
+ expect(facetContent).not.toBeNull();
386
+ });
387
+ });
388
+
389
+ describe('when the facet is not enabled', () => {
390
+ beforeAll(() => {
391
+ facetState = {...initialFacetState, enabled: false};
392
+ });
393
+
394
+ it('should not display the facet content', async () => {
395
+ const element = createTestComponent();
396
+ await flushPromises();
397
+
398
+ const facetContent = element.shadowRoot.querySelector(
399
+ selectors.facetContent
400
+ );
401
+ expect(facetContent).toBeNull();
402
+ });
403
+ });
404
+ });
405
+
406
+ describe('when the component is loading', () => {
407
+ beforeEach(() => {
408
+ searchStatusState = {
409
+ ...initialSearchStatusState,
410
+ isLoading: true,
411
+ hasError: false,
412
+ firstSearchExecuted: false,
413
+ };
414
+ });
415
+
416
+ it('should display the placeholder component', async () => {
417
+ const element = createTestComponent();
418
+ await flushPromises();
419
+
420
+ const placeholder = element.shadowRoot.querySelector(
421
+ selectors.placeholder
422
+ );
423
+ expect(placeholder).not.toBeNull();
424
+ });
425
+
426
+ describe('when the interface has an error', () => {
427
+ beforeEach(() => {
428
+ searchStatusState = {
429
+ ...initialSearchStatusState,
430
+ isLoading: true,
431
+ hasError: true,
432
+ firstSearchExecuted: false,
433
+ };
434
+ });
435
+
436
+ it('should not display the placeholder component', async () => {
437
+ const element = createTestComponent();
438
+ await flushPromises();
439
+
440
+ const placeholder = element.shadowRoot.querySelector(
441
+ selectors.placeholder
442
+ );
443
+ expect(placeholder).toBeNull();
444
+ });
445
+ });
446
+ });
447
+
448
+ describe('when the component is ready', () => {
449
+ describe('when the facet has values', () => {
450
+ beforeEach(() => {
451
+ facetState = {
452
+ ...initialFacetState,
453
+ values: exampleFacetValues,
454
+ };
455
+ });
456
+
457
+ it('should display the facet card when the facet values have results', async () => {
458
+ const element = createTestComponent();
459
+ await flushPromises();
460
+
461
+ const cardContainer = element.shadowRoot.querySelector(
462
+ selectors.cardContainer
463
+ );
464
+ expect(cardContainer).not.toBeNull();
465
+ });
466
+
467
+ it('should not display the facet card when the facet values have no results', async () => {
468
+ facetState = {
469
+ ...initialFacetState,
470
+ values: [{start: 1, end: 2, numberOfResults: 0}],
471
+ };
472
+ const element = createTestComponent();
473
+ await flushPromises();
474
+
475
+ const cardContainer = element.shadowRoot.querySelector(
476
+ selectors.cardContainer
477
+ );
478
+ expect(cardContainer).toBeNull();
479
+ });
480
+
481
+ describe.each([
482
+ ['checkbox', 'toggleSelect'],
483
+ ['link', 'toggleSingleSelect'],
484
+ ])(
485
+ 'when the property displayValuesAs is set to "%s"',
486
+ (propertyValue, expectedFunctionToBeCalled) => {
487
+ const shouldDisplayValueAsLink = propertyValue === 'link';
488
+
489
+ test(`should display the facet value as ${propertyValue}`, async () => {
490
+ const expectedFacetValues = exampleFacetValues.map(
491
+ (facetValue) => ({
492
+ ...facetValue,
493
+ checked: false,
494
+ key: `${facetValue.start}..${facetValue.end}`,
495
+ })
496
+ );
497
+ const element = createTestComponent({
498
+ ...defaultOptions,
499
+ displayValuesAs: propertyValue,
500
+ });
501
+ await flushPromises();
502
+
503
+ const facetValueElements = element.shadowRoot.querySelectorAll(
504
+ selectors.facetValue
505
+ );
506
+ expect(facetValueElements.length).toBe(exampleFacetValues.length);
507
+ expectedFacetValues.forEach((facetValue, index) => {
508
+ expect(facetValueElements[index].item).toEqual(facetValue);
509
+ expect(facetValueElements[index].isRangeFacet).toEqual(true);
510
+ expect(facetValueElements[index].displayAsLink).toEqual(
511
+ shouldDisplayValueAsLink
512
+ );
513
+ });
514
+ });
515
+
516
+ test(`should call the controller function ${expectedFunctionToBeCalled} when clicked`, async () => {
517
+ const element = createTestComponent({
518
+ ...defaultOptions,
519
+ displayValuesAs: propertyValue,
520
+ });
521
+ const selectedIndex = 0;
522
+ await flushPromises();
523
+
524
+ const facetValueElement = element.shadowRoot.querySelector(
525
+ selectors.facetValue
526
+ );
527
+ const selection = exampleFacetValues[selectedIndex];
528
+ facetValueElement.dispatchEvent(
529
+ new CustomEvent('quantic__selectvalue', {
530
+ bubbles: true,
531
+ detail: {
532
+ value: `${selection.start} - ${selection.end}`,
533
+ },
534
+ })
535
+ );
536
+ await flushPromises();
537
+
538
+ expect(
539
+ functionsMocks[expectedFunctionToBeCalled]
540
+ ).toHaveBeenCalledTimes(1);
541
+ expect(
542
+ functionsMocks[expectedFunctionToBeCalled]
543
+ ).toHaveBeenCalledWith(expect.objectContaining(selection));
544
+ });
545
+ }
546
+ );
547
+
548
+ describe('when search status has an error', () => {
549
+ beforeEach(() => {
550
+ searchStatusState = {
551
+ ...initialSearchStatusState,
552
+ hasError: true,
553
+ };
554
+ });
555
+
556
+ it('should not display the facet values', async () => {
557
+ const element = createTestComponent();
558
+ await flushPromises();
559
+
560
+ const facetValueElements = element.shadowRoot.querySelectorAll(
561
+ selectors.facetValue
562
+ );
563
+ expect(facetValueElements.length).toBe(0);
564
+ });
565
+ });
566
+
567
+ describe('when the facet has active values', () => {
568
+ beforeEach(() => {
569
+ facetState = {
570
+ ...initialFacetState,
571
+ values: [{start: 1, end: 2, numberOfResults: 10}],
572
+ hasActiveValues: true,
573
+ };
574
+ });
575
+
576
+ it('should display the clear selection button', async () => {
577
+ const element = createTestComponent();
578
+ await flushPromises();
579
+
580
+ const clearSelectionButton = element.shadowRoot.querySelector(
581
+ selectors.clearSelectionButton
582
+ );
583
+ expect(clearSelectionButton).not.toBeNull();
584
+ });
585
+
586
+ it('should call the deselectAll function of the numeric facet controller when clicking on the clear selection button', async () => {
587
+ const element = createTestComponent();
588
+ await flushPromises();
589
+
590
+ const clearSelectionButton = element.shadowRoot.querySelector(
591
+ selectors.clearSelectionButton
592
+ );
593
+
594
+ await clearSelectionButton.click();
595
+
596
+ expect(functionsMocks.deselectAll).toHaveBeenCalledTimes(1);
597
+ });
598
+ });
599
+
600
+ describe('when the facet has an active range', () => {
601
+ beforeEach(() => {
602
+ filterState = {
603
+ ...initialFilterState,
604
+ range: {start: 1, end: 2},
605
+ };
606
+ });
607
+
608
+ it('should display the clear selection button', async () => {
609
+ const element = createTestComponent();
610
+ await flushPromises();
611
+
612
+ const clearSelectionButton = element.shadowRoot.querySelector(
613
+ selectors.clearSelectionButton
614
+ );
615
+ expect(clearSelectionButton).not.toBeNull();
616
+ });
617
+
618
+ it('should call the clear function of the numeric filter controller when clicking on the clear selection button', async () => {
619
+ const element = createTestComponent();
620
+ await flushPromises();
621
+
622
+ const clearSelectionButton = element.shadowRoot.querySelector(
623
+ selectors.clearSelectionButton
624
+ );
625
+
626
+ await clearSelectionButton.click();
627
+
628
+ expect(functionsMocks.clear).toHaveBeenCalledTimes(1);
629
+ });
630
+
631
+ it('should not display the facet values', async () => {
632
+ const element = createTestComponent();
633
+ await flushPromises();
634
+
635
+ const facetValueElements = element.shadowRoot.querySelectorAll(
636
+ selectors.facetValue
637
+ );
638
+ expect(facetValueElements.length).toBe(0);
639
+ });
640
+ });
641
+
642
+ describe('when the facet is not collapsed', () => {
643
+ it('should display the facet body', async () => {
644
+ const element = createTestComponent();
645
+ await flushPromises();
646
+
647
+ const facetBody = element.shadowRoot.querySelector(
648
+ selectors.facetBody
649
+ );
650
+ expect(facetBody).not.toBeNull();
651
+ });
652
+
653
+ it('should correctly display the facet collapse toggle', async () => {
654
+ const expectedIcon = 'utility:dash';
655
+ const expectedCSSClass = 'facet__collapse';
656
+ const element = createTestComponent();
657
+ await flushPromises();
658
+
659
+ const facetCollapseToggle = element.shadowRoot.querySelector(
660
+ selectors.facetCollapseToggle
661
+ );
662
+ expect(facetCollapseToggle).not.toBeNull();
663
+ expect(facetCollapseToggle.iconName).toBe(expectedIcon);
664
+ expect(facetCollapseToggle.classList.contains(expectedCSSClass)).toBe(
665
+ true
666
+ );
667
+ });
668
+ });
669
+
670
+ describe('when the facet is collapsed', () => {
671
+ it('should not display the facet body', async () => {
672
+ const element = createTestComponent({
673
+ ...defaultOptions,
674
+ isCollapsed: true,
675
+ });
676
+ await flushPromises();
677
+
678
+ const facetBody = element.shadowRoot.querySelector(
679
+ selectors.facetBody
680
+ );
681
+ expect(facetBody).toBeNull();
682
+ });
683
+
684
+ it('should correctly display the facet collapse toggle', async () => {
685
+ const expectedIcon = 'utility:add';
686
+ const expectedCSSClass = 'facet__expand';
687
+
688
+ const element = createTestComponent({
689
+ ...defaultOptions,
690
+ isCollapsed: true,
691
+ });
692
+ await flushPromises();
693
+
694
+ const facetCollapseToggle = element.shadowRoot.querySelector(
695
+ selectors.facetCollapseToggle
696
+ );
697
+ expect(facetCollapseToggle).not.toBeNull();
698
+ expect(facetCollapseToggle.iconName).toBe(expectedIcon);
699
+ expect(facetCollapseToggle.classList.contains(expectedCSSClass)).toBe(
700
+ true
701
+ );
702
+ });
703
+
704
+ describe('when a facet value is selected', () => {
705
+ beforeEach(() => {
706
+ facetState = {
707
+ ...initialFacetState,
708
+ values: [{start: 1, end: 2, numberOfResults: 10}],
709
+ hasActiveValues: true,
710
+ };
711
+ });
712
+
713
+ it('should display the clear selection button', async () => {
714
+ const element = createTestComponent({
715
+ ...defaultOptions,
716
+ isCollapsed: true,
717
+ });
718
+ await flushPromises();
719
+
720
+ const clearSelectionButton = element.shadowRoot.querySelector(
721
+ selectors.clearSelectionButton
722
+ );
723
+ expect(clearSelectionButton).not.toBeNull();
724
+ });
725
+ });
726
+ });
727
+
728
+ describe('when a facet range is submitted', () => {
729
+ describe('when one of the inputs is invalid', () => {
730
+ it('should not call the method set range of the numeric filter controller', async () => {
731
+ const element = createTestComponent();
732
+ await flushPromises();
733
+
734
+ mockInputReportValidity(element);
735
+ // Making the first input invalid
736
+ functionsMocks.reportValidity.mockReturnValueOnce(false);
737
+
738
+ await submitFacetSearchForm(element);
739
+ expect(functionsMocks.reportValidity).toHaveBeenCalledTimes(1);
740
+ expect(functionsMocks.setRange).not.toHaveBeenCalled();
741
+ });
742
+ });
743
+
744
+ describe('when the inputs are valid', () => {
745
+ const expectedRange = {start: 1, end: 2};
746
+ beforeEach(() => {
747
+ filterState = {
748
+ ...initialFilterState,
749
+ range: expectedRange,
750
+ };
751
+ });
752
+
753
+ it('should call the method setRange of the numeric filter controller', async () => {
754
+ const element = createTestComponent();
755
+ await flushPromises();
756
+
757
+ mockInputReportValidity(element);
758
+
759
+ await submitFacetSearchForm(element);
760
+ expect(functionsMocks.reportValidity).toHaveBeenCalledTimes(2);
761
+ expect(functionsMocks.setRange).toHaveBeenCalledTimes(1);
762
+ expect(functionsMocks.setRange).toHaveBeenCalledWith(expectedRange);
763
+ });
764
+
765
+ it('should call the method deselectAllNumericFacetValues of the numeric facet controller', async () => {
766
+ const element = createTestComponent();
767
+ await flushPromises();
768
+
769
+ mockInputReportValidity(element);
770
+
771
+ await submitFacetSearchForm(element);
772
+ expect(
773
+ functionsMocks.deselectAllNumericFacetValues
774
+ ).toHaveBeenCalledTimes(1);
775
+ expect(
776
+ functionsMocks.deselectAllNumericFacetValues
777
+ ).toHaveBeenCalledWith(exampleFacetId);
778
+ });
779
+ });
780
+ });
781
+ });
782
+
783
+ describe('when the facet has no values', () => {
784
+ beforeEach(() => {
785
+ facetState = {
786
+ ...initialFacetState,
787
+ values: [],
788
+ };
789
+ });
790
+
791
+ it('should not display the facet card', async () => {
792
+ const element = createTestComponent();
793
+ await flushPromises();
794
+
795
+ const cardContainer = element.shadowRoot.querySelector(
796
+ selectors.cardContainer
797
+ );
798
+ expect(cardContainer).toBeNull();
799
+ });
800
+
801
+ describe('when a facet range is selected', () => {
802
+ beforeEach(() => {
803
+ filterState = {
804
+ ...initialFilterState,
805
+ range: {start: 1, end: 2},
806
+ };
807
+ });
808
+
809
+ it('should display the facet card', async () => {
810
+ const element = createTestComponent();
811
+ await flushPromises();
812
+
813
+ const cardContainer = element.shadowRoot.querySelector(
814
+ selectors.cardContainer
815
+ );
816
+ expect(cardContainer).not.toBeNull();
817
+ });
818
+ });
819
+
820
+ it('should display the facet card when a facet range is selected', async () => {
821
+ const element = createTestComponent();
822
+ await flushPromises();
823
+
824
+ const cardContainer = element.shadowRoot.querySelector(
825
+ selectors.cardContainer
826
+ );
827
+ expect(cardContainer).toBeNull();
828
+ });
829
+
830
+ it('should dispatch quantic__renderfacet event', async () => {
831
+ document.addEventListener(
832
+ 'quantic__renderfacet',
833
+ // @ts-ignore
834
+ (event) => functionsMocks.eventHandler(event.detail),
835
+ {once: true}
836
+ );
837
+ createTestComponent();
838
+
839
+ await flushPromises();
840
+
841
+ expect(functionsMocks.eventHandler).toHaveBeenCalledTimes(1);
842
+ expect(functionsMocks.eventHandler).toHaveBeenCalledWith({
843
+ id: exampleFacetId,
844
+ shouldRenderFacet: false,
845
+ });
846
+ });
847
+ });
848
+ });
849
+
850
+ describe('validation of the dependsOn property', () => {
851
+ let consoleError;
852
+ beforeAll(() => {
853
+ consoleError = jest.spyOn(console, 'error').mockImplementation(() => {});
854
+ });
855
+ describe('when dependsOn.parentFacetId is not provided', () => {
856
+ it('should display the error component', async () => {
857
+ const invalidFacetDependency = {
858
+ expectedValue: 'txt',
859
+ };
860
+ const element = createTestComponent({
861
+ ...defaultOptions,
862
+ dependsOn: invalidFacetDependency,
863
+ });
864
+ await flushPromises();
865
+
866
+ const componentError = element.shadowRoot.querySelector(
867
+ selectors.componentError
868
+ );
869
+ const facetContent = element.shadowRoot.querySelector(
870
+ selectors.facetContent
871
+ );
872
+
873
+ expect(consoleError).toHaveBeenCalledTimes(1);
874
+ expect(consoleError).toHaveBeenCalledWith(parentFacetIdError);
875
+ expect(componentError).not.toBeNull();
876
+ expect(facetContent).toBeNull();
877
+ });
878
+ });
879
+
880
+ describe('when dependsOn.parentFacetId is not a string', () => {
881
+ it('should display the error component', async () => {
882
+ const invalidFacetDependency = {
883
+ parentFacetId: 1,
884
+ expectedValue: 'txt',
885
+ };
886
+ const element = createTestComponent({
887
+ ...defaultOptions,
888
+ dependsOn: invalidFacetDependency,
889
+ });
890
+ await flushPromises();
891
+
892
+ const componentError = element.shadowRoot.querySelector(
893
+ selectors.componentError
894
+ );
895
+ const facetContent = element.shadowRoot.querySelector(
896
+ selectors.facetContent
897
+ );
898
+
899
+ expect(consoleError).toHaveBeenCalledTimes(1);
900
+ expect(consoleError).toHaveBeenCalledWith(parentFacetIdError);
901
+ expect(componentError).not.toBeNull();
902
+ expect(facetContent).toBeNull();
903
+ });
904
+ });
905
+
906
+ describe('when dependsOn.expectedValue is not a string', () => {
907
+ it('should display the error component', async () => {
908
+ const invalidFacetDependency = {
909
+ parentFacetId: 'filetype',
910
+ expectedValue: 2,
911
+ };
912
+ const element = createTestComponent({
913
+ ...defaultOptions,
914
+ dependsOn: invalidFacetDependency,
915
+ });
916
+ await flushPromises();
917
+
918
+ const componentError = element.shadowRoot.querySelector(
919
+ selectors.componentError
920
+ );
921
+ const facetContent = element.shadowRoot.querySelector(
922
+ selectors.facetContent
923
+ );
924
+
925
+ expect(consoleError).toHaveBeenCalledTimes(1);
926
+ expect(consoleError).toHaveBeenCalledWith(expectedValueError);
927
+ expect(componentError).not.toBeNull();
928
+ expect(facetContent).toBeNull();
929
+ });
930
+ });
931
+ });
932
+
933
+ describe('when the component is disconnected', () => {
934
+ it('should make the condition manager stop watching the facet', async () => {
935
+ const exampleFacetDependency = {
936
+ parentFacetId: 'filetype',
937
+ expectedValue: 'txt',
938
+ };
939
+ const element = createTestComponent({
940
+ ...defaultOptions,
941
+ dependsOn: exampleFacetDependency,
942
+ withInput: true,
943
+ });
944
+ await flushPromises();
945
+ expect(functionsMocks.buildFacetConditionsManager).toHaveBeenCalledTimes(
946
+ 2
947
+ );
948
+
949
+ document.body.removeChild(element);
950
+ expect(functionsMocks.stopWatching).toHaveBeenCalledTimes(2);
951
+ });
952
+ });
953
+ });