@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,192 @@
1
+ import {testSearch, testInsight, expect} from './fixture';
2
+ import {useCaseTestCases} from '../../../../../../playwright/utils/useCase';
3
+ import smartSnippetData from './data';
4
+
5
+ const maximumSnippetHeight = 250;
6
+
7
+ const fixtures = {
8
+ search: testSearch,
9
+ insight: testInsight,
10
+ };
11
+
12
+ useCaseTestCases.forEach((useCase) => {
13
+ let test = fixtures[useCase.value];
14
+
15
+ test.describe(`quantic smart snippet ${useCase.label}`, () => {
16
+ test.use({
17
+ options: {maximumSnippetHeight},
18
+ });
19
+
20
+ test.describe('when the smart snippet is expanded', () => {
21
+ test('should send the source title analytics event when the title is clicked', async ({
22
+ smartSnippet,
23
+ }) => {
24
+ const smartSnippetTitleClickPromise =
25
+ smartSnippet.waitForSmartSnippetSourceClickUaAnalytics();
26
+ await smartSnippet.clickOnSourceTitle();
27
+ await smartSnippetTitleClickPromise;
28
+ });
29
+
30
+ test('should send the source uri analytics event when the source uri is clicked', async ({
31
+ smartSnippet,
32
+ }) => {
33
+ const smartSnippetUriClickPromise =
34
+ smartSnippet.waitForSmartSnippetSourceClickUaAnalytics();
35
+ await smartSnippet.clickOnSourceUri();
36
+ await smartSnippetUriClickPromise;
37
+ });
38
+
39
+ test('should send the inline link analytics event when the inline link is clicked', async ({
40
+ smartSnippet,
41
+ }) => {
42
+ const smartSnippetUriClickPromise =
43
+ smartSnippet.waitForSmartSnippetInlineLinkClickUaAnalytics();
44
+ await smartSnippet.clickOnFirstInlineLink();
45
+ await smartSnippetUriClickPromise;
46
+ });
47
+
48
+ test('should send the expand and collapse analytics events', async ({
49
+ smartSnippet,
50
+ }) => {
51
+ const expandSmartSnippetAnalyticsPromise =
52
+ smartSnippet.waitForExpandSmartSnippetUaAnalytics();
53
+ await smartSnippet.clickToggleButton();
54
+ await expandSmartSnippetAnalyticsPromise;
55
+
56
+ const collapseSmartSnippetAnalyticsPromise =
57
+ smartSnippet.waitForCollapseSmartSnippetUaAnalytics();
58
+ await smartSnippet.clickToggleButton();
59
+ await collapseSmartSnippetAnalyticsPromise;
60
+ });
61
+ });
62
+
63
+ test.describe('feedback modal interactions', () => {
64
+ test.describe('when clicking on the feedback like button', () => {
65
+ test('should send the like analytics event', async ({smartSnippet}) => {
66
+ const likeAnalyticsPromise =
67
+ smartSnippet.waitForLikeSmartSnippetUaAnalytics();
68
+ await smartSnippet.clickLikeButton();
69
+ await likeAnalyticsPromise;
70
+ });
71
+ });
72
+
73
+ test.describe('when clicking on the feedback dislike button', () => {
74
+ test('should send the dislike analytics event', async ({
75
+ smartSnippet,
76
+ }) => {
77
+ const dislikeAnalyticsPromise =
78
+ smartSnippet.waitForDislikeSmartSnippetUaAnalytics();
79
+ await smartSnippet.clickDislikeButton();
80
+ await dislikeAnalyticsPromise;
81
+ });
82
+
83
+ test.describe('when opening the feedback modal and providing feedback', () => {
84
+ test('should send the smart snippet reason analytics events', async ({
85
+ smartSnippet,
86
+ }, testInfo) => {
87
+ // Todo - remove .skip when the feedback modal of Smart Snippet opens in SF with LWS disabled (SFINT-6407)
88
+ test.skip(
89
+ testInfo.project.name === 'LWS-disabled',
90
+ 'Feedback modal not available when LWS is disabled (SFINT-6407)'
91
+ );
92
+
93
+ const expectedReason = 'does_not_answer';
94
+
95
+ const openFeedbackModalAnalyticsPromise =
96
+ smartSnippet.waitForOpenFeedbackModalUaAnalytics();
97
+ await smartSnippet.clickDislikeButton();
98
+ await smartSnippet.clickExplainWhyButton();
99
+ await openFeedbackModalAnalyticsPromise;
100
+
101
+ const submitFeedbackAnalyticsPromise =
102
+ smartSnippet.waitForFeedbackSubmitUaAnalytics(expectedReason);
103
+
104
+ await smartSnippet.selectFirstFeedbackOptionLabel();
105
+ await smartSnippet.clickFeedbackSubmitButton();
106
+ await submitFeedbackAnalyticsPromise;
107
+ });
108
+ });
109
+
110
+ test.describe('when closing the feedback modal', () => {
111
+ test('should send the correct close feedback modal analytics event', async ({
112
+ smartSnippet,
113
+ }, testInfo) => {
114
+ // Todo - remove .skip when the feedback modal of Smart Snippet opens in SF with LWS disabled (SFINT-6407)
115
+ test.skip(
116
+ testInfo.project.name === 'LWS-disabled',
117
+ 'Feedback modal not available when LWS is disabled (SFINT-6407)'
118
+ );
119
+
120
+ await smartSnippet.clickDislikeButton();
121
+ await smartSnippet.clickExplainWhyButton();
122
+ const closeFeedbackModalAnalyticsPromise =
123
+ smartSnippet.waitForCloseFeedbackModalUaAnalytics();
124
+ await smartSnippet.clickFeedbackModalCancelButton();
125
+ await closeFeedbackModalAnalyticsPromise;
126
+ });
127
+ });
128
+ });
129
+
130
+ test.describe('when trying to open the feedback modal after executing the same query', () => {
131
+ test('should not allow to open the feedback modal', async ({
132
+ smartSnippet,
133
+ search,
134
+ }, testInfo) => {
135
+ // Todo - remove .skip when the feedback modal of Smart Snippet opens in SF with LWS disabled (SFINT-6407)
136
+ test.skip(
137
+ testInfo.project.name === 'LWS-disabled',
138
+ 'Feedback modal not available when LWS is disabled (SFINT-6407)'
139
+ );
140
+
141
+ await smartSnippet.clickDislikeButton();
142
+ await smartSnippet.clickExplainWhyButton();
143
+ await smartSnippet.selectFirstFeedbackOptionLabel();
144
+ await smartSnippet.clickFeedbackSubmitButton();
145
+
146
+ await smartSnippet.clickFeedbackModalDoneButton();
147
+
148
+ const searchResponsePromise = search.waitForSearchResponse();
149
+ await search.performSearch();
150
+ await searchResponsePromise;
151
+
152
+ expect(smartSnippet.dislikeButton).not.toBeNull();
153
+ await smartSnippet.clickDislikeButton();
154
+ await expect(smartSnippet.explainWhyButton).not.toBeVisible();
155
+ });
156
+ });
157
+
158
+ test.describe('when trying to open the feedback modal after executing a query that gave a new answer', () => {
159
+ test('should allow to open the feedback modal', async ({
160
+ smartSnippet,
161
+ search,
162
+ }, testInfo) => {
163
+ // Todo - remove .skip when the feedback modal of Smart Snippet opens in SF with LWS disabled (SFINT-6407)
164
+ test.skip(
165
+ testInfo.project.name === 'LWS-disabled',
166
+ 'Feedback modal not available when LWS is disabled (SFINT-6407)'
167
+ );
168
+
169
+ await smartSnippet.clickDislikeButton();
170
+ await smartSnippet.clickExplainWhyButton();
171
+ await smartSnippet.selectFirstFeedbackOptionLabel();
172
+ await smartSnippet.clickFeedbackSubmitButton();
173
+
174
+ await smartSnippet.clickFeedbackModalDoneButton();
175
+
176
+ await search.mockSearchWithSmartSnippetResponse({
177
+ ...smartSnippetData,
178
+ question: 'new question',
179
+ answerSnippet: 'new answer',
180
+ });
181
+ const searchResponsePromise = search.waitForSearchResponse();
182
+ await search.performSearch();
183
+ await searchResponsePromise;
184
+
185
+ expect(smartSnippet.dislikeButton).not.toBeNull();
186
+ await smartSnippet.clickDislikeButton();
187
+ await expect(smartSnippet.explainWhyButton).toBeVisible();
188
+ });
189
+ });
190
+ });
191
+ });
192
+ });
@@ -0,0 +1,126 @@
1
+ // @ts-ignore
2
+ import {createElement} from 'lwc';
3
+ import QuanticSmartSnippetAnswer from '../quanticSmartSnippetAnswer';
4
+
5
+ const functionsMocks = {
6
+ exampleSelect: jest.fn(() => {}),
7
+ exampleBeginDelayedSelect: jest.fn(() => {}),
8
+ exampleCancelPendingSelect: jest.fn(() => {}),
9
+ };
10
+
11
+ const exampleAnswer =
12
+ '<div x-test_quanticsmartsnippetanswer=""><p x-test_quanticsmartsnippetanswer="">Example smart snippet answer</p><a href="#" x-test_quanticsmartsnippetanswer="">Example inline link</a></div>';
13
+ const exampleAnswerWithInvalidLink =
14
+ '<div><a>Example invalid inline link</a></div>';
15
+ const exampleActions = {
16
+ select: functionsMocks.exampleSelect,
17
+ beginDelayedSelect: functionsMocks.exampleBeginDelayedSelect,
18
+ cancelPendingSelect: functionsMocks.exampleCancelPendingSelect,
19
+ };
20
+
21
+ const defaultOptions = {
22
+ answer: exampleAnswer,
23
+ actions: exampleActions,
24
+ };
25
+
26
+ function createTestComponent(options = defaultOptions) {
27
+ const element = createElement('c-quantic-smart-snippet-answer', {
28
+ is: QuanticSmartSnippetAnswer,
29
+ });
30
+
31
+ for (const [key, value] of Object.entries(options)) {
32
+ element[key] = value;
33
+ }
34
+
35
+ document.body.appendChild(element);
36
+ return element;
37
+ }
38
+
39
+ // Helper function to wait until the microtask queue is empty.
40
+ function flushPromises() {
41
+ return new Promise((resolve) => setTimeout(resolve, 0));
42
+ }
43
+
44
+ const bindingsMap = {
45
+ contextmenu: functionsMocks.exampleSelect,
46
+ click: functionsMocks.exampleSelect,
47
+ mouseup: functionsMocks.exampleSelect,
48
+ mousedown: functionsMocks.exampleSelect,
49
+ touchstart: functionsMocks.exampleBeginDelayedSelect,
50
+ touchend: functionsMocks.exampleCancelPendingSelect,
51
+ };
52
+
53
+ describe('c-quantic-smart-snippet-answer', () => {
54
+ function cleanup() {
55
+ // The jsdom instance is shared across test cases in a single file so reset the DOM
56
+ while (document.body.firstChild) {
57
+ document.body.removeChild(document.body.firstChild);
58
+ }
59
+ jest.clearAllMocks();
60
+ }
61
+
62
+ afterEach(() => {
63
+ cleanup();
64
+ });
65
+
66
+ it('should properly display the smart snippet answer', async () => {
67
+ const element = createTestComponent();
68
+ await flushPromises();
69
+
70
+ const answer = element.shadowRoot.querySelector('div > p');
71
+ expect(answer).not.toBeNull();
72
+
73
+ const answerLink = element.shadowRoot.querySelector('div > a');
74
+ expect(answerLink).not.toBeNull();
75
+
76
+ // eslint-disable-next-line @lwc/lwc/no-inner-html
77
+ expect(answer.innerHTML).toBe('Example smart snippet answer');
78
+
79
+ // eslint-disable-next-line @lwc/lwc/no-inner-html
80
+ expect(answerLink.innerHTML).toEqual('Example inline link');
81
+ expect(answerLink.target).toEqual('_blank');
82
+ });
83
+
84
+ describe('the analytics bindings of the inline links within the smart snippet answer', () => {
85
+ for (const [eventName, action] of Object.entries(bindingsMap)) {
86
+ it(`should execute the proper action when the ${eventName} is triggered`, async () => {
87
+ const element = createTestComponent();
88
+ await flushPromises();
89
+
90
+ const inlineLink = element.shadowRoot.querySelector('a');
91
+ inlineLink.dispatchEvent(new CustomEvent(eventName));
92
+
93
+ expect(action).toHaveBeenCalledTimes(1);
94
+ });
95
+
96
+ it(`should not execute the proper action when the ${eventName} is triggered on an invalid link`, async () => {
97
+ const element = createTestComponent({
98
+ ...defaultOptions,
99
+ answer: exampleAnswerWithInvalidLink,
100
+ });
101
+ await flushPromises();
102
+
103
+ const inlineLink = element.shadowRoot.querySelector('a');
104
+ inlineLink.dispatchEvent(new CustomEvent(eventName));
105
+
106
+ expect(action).toHaveBeenCalledTimes(0);
107
+ });
108
+ }
109
+ });
110
+
111
+ describe('when invalid inline links are returned in the answer of the smart snippet', () => {
112
+ it('should properly assign the disabled CSS class to the invalid inline link', async () => {
113
+ const element = createTestComponent({
114
+ ...defaultOptions,
115
+ answer: exampleAnswerWithInvalidLink,
116
+ });
117
+ await flushPromises();
118
+
119
+ const answer = element.shadowRoot.querySelector(
120
+ 'div .inline-link--disabled'
121
+ );
122
+
123
+ expect(answer).not.toBeNull();
124
+ });
125
+ });
126
+ });
@@ -0,0 +1,290 @@
1
+ import {
2
+ getNavigateCalledWith,
3
+ getGenerateUrlCalledWith,
4
+ } from 'lightning/navigation';
5
+ // @ts-ignore
6
+ import {createElement} from 'lwc';
7
+ import QuanticSmartSnippetSource from '../quanticSmartSnippetSource';
8
+
9
+ const functionsMocks = {
10
+ exampleSelect: jest.fn(() => {}),
11
+ exampleBeginDelayedSelect: jest.fn(() => {}),
12
+ exampleCancelPendingSelect: jest.fn(() => {}),
13
+ };
14
+
15
+ const selectors = {
16
+ sourceUri: '.smart-snippet__source-uri',
17
+ sourceTitle: '.smart-snippet__source-title',
18
+ };
19
+
20
+ const exampleUri = 'https://www.example.com/';
21
+ const exampleTitle = 'example label';
22
+ const exampleActions = {
23
+ select: functionsMocks.exampleSelect,
24
+ beginDelayedSelect: functionsMocks.exampleBeginDelayedSelect,
25
+ cancelPendingSelect: functionsMocks.exampleCancelPendingSelect,
26
+ };
27
+
28
+ const defaultOptions = {
29
+ source: {
30
+ clickUri: exampleUri,
31
+ title: exampleTitle,
32
+ },
33
+ actions: exampleActions,
34
+ };
35
+
36
+ function createTestComponent(options = defaultOptions) {
37
+ const element = createElement('c-quantic-smart-snippet-source', {
38
+ is: QuanticSmartSnippetSource,
39
+ });
40
+
41
+ for (const [key, value] of Object.entries(options)) {
42
+ element[key] = value;
43
+ }
44
+
45
+ document.body.appendChild(element);
46
+ return element;
47
+ }
48
+
49
+ // Helper function to wait until the microtask queue is empty.
50
+ function flushPromises() {
51
+ return new Promise((resolve) => setTimeout(resolve, 0));
52
+ }
53
+
54
+ const bindingsMap = {
55
+ contextmenu: functionsMocks.exampleSelect,
56
+ click: functionsMocks.exampleSelect,
57
+ mouseup: functionsMocks.exampleSelect,
58
+ mousedown: functionsMocks.exampleSelect,
59
+ touchstart: functionsMocks.exampleBeginDelayedSelect,
60
+ touchend: functionsMocks.exampleCancelPendingSelect,
61
+ };
62
+
63
+ describe('c-quantic-smart-snippet-source', () => {
64
+ function cleanup() {
65
+ // The jsdom instance is shared across test cases in a single file so reset the DOM
66
+ while (document.body.firstChild) {
67
+ document.body.removeChild(document.body.firstChild);
68
+ }
69
+ jest.clearAllMocks();
70
+ }
71
+
72
+ afterEach(() => {
73
+ cleanup();
74
+ });
75
+
76
+ it('should properly display the source uri', async () => {
77
+ const element = createTestComponent();
78
+ await flushPromises();
79
+
80
+ const sourceUri = element.shadowRoot.querySelector(selectors.sourceUri);
81
+
82
+ expect(sourceUri).not.toBeNull();
83
+ expect(sourceUri.textContent).toBe(exampleUri);
84
+ expect(sourceUri.href).toBe(exampleUri);
85
+ });
86
+
87
+ it('should target a new tab when clicked', async () => {
88
+ const element = createTestComponent();
89
+ await flushPromises();
90
+
91
+ const sourceUri = element.shadowRoot.querySelector(selectors.sourceUri);
92
+ const sourceTitle = element.shadowRoot.querySelector(selectors.sourceTitle);
93
+
94
+ expect(sourceUri).not.toBeNull();
95
+ expect(sourceUri.target).toBe('_blank');
96
+
97
+ expect(sourceTitle).not.toBeNull();
98
+ expect(sourceTitle.target).toBe('_blank');
99
+ });
100
+
101
+ it('should properly display the source title', async () => {
102
+ const element = createTestComponent();
103
+ await flushPromises();
104
+
105
+ const sourceTitle = element.shadowRoot.querySelector(selectors.sourceTitle);
106
+
107
+ expect(sourceTitle).not.toBeNull();
108
+ expect(sourceTitle.textContent).toBe(exampleTitle);
109
+ expect(sourceTitle.href).toBe(exampleUri);
110
+ });
111
+
112
+ it('should not display the source uri when the uri option is undefined', async () => {
113
+ const element = createTestComponent({
114
+ ...defaultOptions,
115
+ source: {
116
+ clickUri: undefined,
117
+ title: exampleTitle,
118
+ },
119
+ });
120
+ await flushPromises();
121
+
122
+ const sourceUri = element.shadowRoot.querySelector(selectors.sourceUri);
123
+
124
+ expect(sourceUri).toBeNull();
125
+ });
126
+
127
+ it('should not display the source title when the title option is undefined', async () => {
128
+ const element = createTestComponent({
129
+ ...defaultOptions,
130
+ source: {
131
+ clickUri: exampleUri,
132
+ title: undefined,
133
+ },
134
+ });
135
+ await flushPromises();
136
+
137
+ const sourceTitle = element.shadowRoot.querySelector(selectors.sourceTitle);
138
+
139
+ expect(sourceTitle).toBeNull();
140
+ });
141
+
142
+ ['sourceUri', 'sourceTitle'].forEach((key) => {
143
+ describe(`the analytics bindings of the ${key}`, () => {
144
+ for (const [eventName, action] of Object.entries(bindingsMap)) {
145
+ it(`should execute the proper action when the ${eventName} is triggered`, async () => {
146
+ const element = createTestComponent({
147
+ ...defaultOptions,
148
+ source: {
149
+ clickUri: '#',
150
+ title: exampleTitle,
151
+ },
152
+ });
153
+ await flushPromises();
154
+
155
+ const sourceUri = element.shadowRoot.querySelector(selectors[key]);
156
+ sourceUri.dispatchEvent(new CustomEvent(eventName));
157
+
158
+ expect(action).toHaveBeenCalledTimes(1);
159
+ });
160
+ }
161
+ });
162
+ });
163
+
164
+ describe('when the smart snippet source is of type Salesforce', () => {
165
+ const exampleSfid = '123';
166
+ const exampleSalesforceLink = 'https://www.example-salesforce.com/';
167
+
168
+ it('should call the navigation mixin to get the Salesforce record URL', async () => {
169
+ const element = createTestComponent({
170
+ ...defaultOptions,
171
+ source: {
172
+ clickUri: exampleUri,
173
+ title: exampleTitle,
174
+ raw: {
175
+ sfid: exampleSfid,
176
+ },
177
+ },
178
+ });
179
+ await flushPromises();
180
+
181
+ const sourceTitle = element.shadowRoot.querySelector(
182
+ selectors.sourceTitle
183
+ );
184
+ const sourceUri = element.shadowRoot.querySelector(selectors.sourceUri);
185
+ const {pageReference} = getGenerateUrlCalledWith();
186
+
187
+ expect(pageReference.attributes.recordId).toBe(exampleSfid);
188
+ expect(sourceTitle.href).toBe(exampleSalesforceLink);
189
+ expect(sourceUri.href).toBe(exampleSalesforceLink);
190
+ });
191
+
192
+ it('should open the source link inside Salesforce after clicking the source title', async () => {
193
+ const element = createTestComponent({
194
+ ...defaultOptions,
195
+ source: {
196
+ clickUri: exampleUri,
197
+ title: exampleTitle,
198
+ raw: {
199
+ sfid: exampleSfid,
200
+ },
201
+ },
202
+ });
203
+ await flushPromises();
204
+
205
+ const sourceTitle = element.shadowRoot.querySelector(
206
+ selectors.sourceTitle
207
+ );
208
+ sourceTitle.click();
209
+
210
+ const {pageReference} = getNavigateCalledWith();
211
+
212
+ expect(pageReference.attributes.recordId).toBe(exampleSfid);
213
+ });
214
+
215
+ it('should open the source link inside Salesforce after clicking the source uri', async () => {
216
+ const element = createTestComponent({
217
+ ...defaultOptions,
218
+ source: {
219
+ clickUri: exampleUri,
220
+ title: exampleTitle,
221
+ raw: {
222
+ sfid: exampleSfid,
223
+ },
224
+ },
225
+ });
226
+ await flushPromises();
227
+
228
+ const sourceUri = element.shadowRoot.querySelector(selectors.sourceUri);
229
+ sourceUri.click();
230
+
231
+ const {pageReference} = getNavigateCalledWith();
232
+
233
+ expect(pageReference.attributes.recordId).toBe(exampleSfid);
234
+ });
235
+
236
+ describe('when the result is a knowledge article', () => {
237
+ it('should open the source link inside Salesforce after clicking the source title', async () => {
238
+ const exampleSfkavid = 'bar';
239
+ const element = createTestComponent({
240
+ ...defaultOptions,
241
+ source: {
242
+ clickUri: exampleUri,
243
+ title: exampleTitle,
244
+ raw: {
245
+ sfid: exampleSfid,
246
+ sfkbid: 'foo',
247
+ sfkavid: exampleSfkavid,
248
+ },
249
+ },
250
+ });
251
+ await flushPromises();
252
+
253
+ const sourceTitle = element.shadowRoot.querySelector(
254
+ selectors.sourceTitle
255
+ );
256
+ sourceTitle.click();
257
+
258
+ const {pageReference} = getNavigateCalledWith();
259
+
260
+ expect(pageReference.attributes.recordId).toBe(exampleSfkavid);
261
+ expect(sourceTitle.href).toBe(exampleSalesforceLink);
262
+ });
263
+
264
+ it('should open the source link inside Salesforce after clicking the source uri', async () => {
265
+ const exampleSfkavid = 'bar';
266
+ const element = createTestComponent({
267
+ ...defaultOptions,
268
+ source: {
269
+ clickUri: exampleUri,
270
+ title: exampleTitle,
271
+ raw: {
272
+ sfid: exampleSfid,
273
+ sfkbid: 'foo',
274
+ sfkavid: exampleSfkavid,
275
+ },
276
+ },
277
+ });
278
+ await flushPromises();
279
+
280
+ const sourceUri = element.shadowRoot.querySelector(selectors.sourceUri);
281
+ sourceUri.click();
282
+
283
+ const {pageReference} = getNavigateCalledWith();
284
+
285
+ expect(pageReference.attributes.recordId).toBe(exampleSfkavid);
286
+ expect(sourceUri.href).toBe(exampleSalesforceLink);
287
+ });
288
+ });
289
+ });
290
+ });