@coveo/quantic 3.32.0 → 3.33.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +15 -15
- package/docs/out/quantic-docs.json +1 -1
- package/force-app/main/default/lwc/quanticAriaLive/__tests__/quanticAriaLive.test.js +106 -0
- package/force-app/main/default/lwc/quanticBreadcrumbManager/__tests__/quanticBreadcrumbManager.test.js +752 -0
- package/force-app/main/default/lwc/quanticBreadcrumbManager/e2e/fixture.ts +76 -0
- package/force-app/main/default/lwc/quanticBreadcrumbManager/e2e/pageObject.ts +282 -0
- package/force-app/main/default/lwc/quanticBreadcrumbManager/e2e/quanticBreadcrumbManager.e2e.ts +167 -0
- package/force-app/main/default/lwc/quanticCarousel/__tests__/quanticCarousel.test.js +262 -0
- package/force-app/main/default/lwc/quanticCaseClassification/__tests__/quanticCaseClassification.test.js +819 -0
- package/force-app/main/default/lwc/quanticCaseClassification/e2e/data.ts +23 -0
- package/force-app/main/default/lwc/quanticCaseClassification/e2e/fixture.ts +51 -0
- package/force-app/main/default/lwc/quanticCaseClassification/e2e/pageObject.ts +152 -0
- package/force-app/main/default/lwc/quanticCaseClassification/e2e/quanticCaseClassification.e2e.ts +269 -0
- package/force-app/main/default/lwc/quanticCategoryFacet/__tests__/quanticCategoryFacet.test.js +1183 -0
- package/force-app/main/default/lwc/quanticCategoryFacet/e2e/data.ts +27 -0
- package/force-app/main/default/lwc/quanticCategoryFacet/e2e/fixture.ts +75 -0
- package/force-app/main/default/lwc/quanticCategoryFacet/e2e/pageObject.ts +55 -0
- package/force-app/main/default/lwc/quanticCategoryFacet/e2e/quanticCategoryFacet.e2e.ts +199 -0
- package/force-app/main/default/lwc/quanticCitation/__tests__/quanticCitation.test.js +371 -0
- package/force-app/main/default/lwc/quanticColoredResultBadge/__tests__/quanticColoredResultBadge.test.js +212 -0
- package/force-app/main/default/lwc/quanticDateFacet/__tests__/quanticDateFacet.test.js +688 -0
- package/force-app/main/default/lwc/quanticDateFacet/e2e/data.ts +24 -0
- package/force-app/main/default/lwc/quanticDateFacet/e2e/fixture.ts +68 -0
- package/force-app/main/default/lwc/quanticDateFacet/e2e/pageObject.ts +27 -0
- package/force-app/main/default/lwc/quanticDateFacet/e2e/quanticDateFacet.e2e.ts +145 -0
- package/force-app/main/default/lwc/quanticDidYouMean/__tests__/quanticDidYouMean.test.js +348 -0
- package/force-app/main/default/lwc/quanticDidYouMean/e2e/data.ts +48 -0
- package/force-app/main/default/lwc/quanticDidYouMean/e2e/fixture.ts +80 -0
- package/force-app/main/default/lwc/quanticDidYouMean/e2e/pageObject.ts +173 -0
- package/force-app/main/default/lwc/quanticDidYouMean/e2e/quanticDidYouMean.e2e.ts +219 -0
- package/force-app/main/default/lwc/quanticDocumentSuggestion/__tests__/quanticDocumentSuggestion.test.js +404 -0
- package/force-app/main/default/lwc/quanticDocumentSuggestion/e2e/fixture.ts +38 -0
- package/force-app/main/default/lwc/quanticDocumentSuggestion/e2e/pageObject.ts +52 -0
- package/force-app/main/default/lwc/quanticDocumentSuggestion/e2e/quanticDocumentSuggestion.e2e.ts +102 -0
- package/force-app/main/default/lwc/quanticFacet/__tests__/quanticFacet.test.js +1105 -0
- package/force-app/main/default/lwc/quanticFacet/e2e/data.ts +21 -0
- package/force-app/main/default/lwc/quanticFacet/e2e/fixture.ts +73 -0
- package/force-app/main/default/lwc/quanticFacet/e2e/pageObject.ts +67 -0
- package/force-app/main/default/lwc/quanticFacet/e2e/quanticFacet.e2e.ts +208 -0
- package/force-app/main/default/lwc/quanticFacetCaption/__tests__/quanticFacetCaption.test.js +28 -0
- package/force-app/main/default/lwc/quanticFacetManager/__tests__/quanticFacetManager.test.js +178 -0
- package/force-app/main/default/lwc/quanticFacetManager/e2e/fixture.ts +64 -0
- package/force-app/main/default/lwc/quanticFacetManager/e2e/pageObject.ts +23 -0
- package/force-app/main/default/lwc/quanticFacetManager/e2e/quanticFacetManager.e2e.ts +82 -0
- package/force-app/main/default/lwc/quanticFeedback/__tests__/quanticFeedback.test.js +392 -0
- package/force-app/main/default/lwc/quanticFeedbackModal/__tests__/quanticFeedbackModal.test.js +448 -0
- package/force-app/main/default/lwc/quanticFeedbackModalQna/__tests__/quanticFeedbackModalQna.test.js +298 -0
- package/force-app/main/default/lwc/quanticFoldedResultList/__tests__/quanticFoldedResultList.test.js +323 -0
- package/force-app/main/default/lwc/quanticFoldedResultList/e2e/fixture.ts +70 -0
- package/force-app/main/default/lwc/quanticFoldedResultList/e2e/pageObject.ts +81 -0
- package/force-app/main/default/lwc/quanticFoldedResultList/e2e/quanticFoldedResultList.e2e.ts +69 -0
- package/force-app/main/default/lwc/quanticGeneratedAnswer/__tests__/quanticGeneratedAnswer.test.js +1158 -0
- package/force-app/main/default/lwc/quanticGeneratedAnswer/e2e/data.ts +56 -0
- package/force-app/main/default/lwc/quanticGeneratedAnswer/e2e/fixture.ts +185 -0
- package/force-app/main/default/lwc/quanticGeneratedAnswer/e2e/pageObject.ts +451 -0
- package/force-app/main/default/lwc/quanticGeneratedAnswer/e2e/quanticGeneratedAnswer.e2e.ts +337 -0
- package/force-app/main/default/lwc/quanticGeneratedAnswerContent/__tests__/quanticGeneratedAnswerContent.test.js +151 -0
- package/force-app/main/default/lwc/quanticHeading/__tests__/quanticHeading.test.js +71 -0
- package/force-app/main/default/lwc/quanticHeadlessLoader/__tests__/quanticHeadlessLoader.test.js +651 -0
- package/force-app/main/default/lwc/quanticInsightInterface/__tests__/quanticInsightInterface.test.js +194 -0
- package/force-app/main/default/lwc/quanticInsightInterface/quanticInsightInterface.js +1 -1
- package/force-app/main/default/lwc/quanticInsightSummary/__tests__/quanticInsightSummary.test.js +230 -0
- package/force-app/main/default/lwc/quanticModal/__tests__/quanticModal.test.js +205 -0
- package/force-app/main/default/lwc/quanticNotifications/__tests__/quanticNotifications.test.js +309 -0
- package/force-app/main/default/lwc/quanticNotifications/e2e/fixture.ts +58 -0
- package/force-app/main/default/lwc/quanticNotifications/e2e/pageObject.ts +55 -0
- package/force-app/main/default/lwc/quanticNotifications/e2e/quanticNotifications.e2e.ts +47 -0
- package/force-app/main/default/lwc/quanticNumericFacet/__tests__/quanticNumericFacet.test.js +953 -0
- package/force-app/main/default/lwc/quanticNumericFacet/e2e/data.ts +28 -0
- package/force-app/main/default/lwc/quanticNumericFacet/e2e/fixture.ts +71 -0
- package/force-app/main/default/lwc/quanticNumericFacet/e2e/pageObject.ts +59 -0
- package/force-app/main/default/lwc/quanticNumericFacet/e2e/quanticNumericFacet.e2e.ts +164 -0
- package/force-app/main/default/lwc/quanticPager/__tests__/quanticPager.test.js +430 -0
- package/force-app/main/default/lwc/quanticPager/e2e/fixture.ts +65 -0
- package/force-app/main/default/lwc/quanticPager/e2e/pageObject.ts +69 -0
- package/force-app/main/default/lwc/quanticPager/e2e/quanticPager.e2e.ts +106 -0
- package/force-app/main/default/lwc/quanticPlaceholder/__tests__/quanticPlaceholder.test.js +47 -0
- package/force-app/main/default/lwc/quanticQuickviewContent/__tests__/data/defaultTestCase.json +13 -0
- package/force-app/main/default/lwc/quanticQuickviewContent/__tests__/data/youtubeTestCase.json +14 -0
- package/force-app/main/default/lwc/quanticQuickviewContent/__tests__/quanticQuickviewContent.test.js +82 -0
- package/force-app/main/default/lwc/quanticRadioButtonsGroup/__tests__/quanticRadioButtonsGroup.test.js +273 -0
- package/force-app/main/default/lwc/quanticRecentQueriesList/__tests__/quanticRecentQueriesList.test.js +448 -0
- package/force-app/main/default/lwc/quanticRecentQueriesList/e2e/fixture.ts +42 -0
- package/force-app/main/default/lwc/quanticRecentQueriesList/e2e/pageObject.ts +55 -0
- package/force-app/main/default/lwc/quanticRecentQueriesList/e2e/quanticRecentQueriesList.e2e.ts +93 -0
- package/force-app/main/default/lwc/quanticRecentResultsList/__tests__/quanticRecentResultsList.test.js +516 -0
- package/force-app/main/default/lwc/quanticRecentResultsList/e2e/fixture.ts +42 -0
- package/force-app/main/default/lwc/quanticRecentResultsList/e2e/pageObject.ts +61 -0
- package/force-app/main/default/lwc/quanticRecentResultsList/e2e/quanticRecentResultsList.e2e.ts +48 -0
- package/force-app/main/default/lwc/quanticRecommendationList/__tests__/quanticRecommendationList.test.js +491 -0
- package/force-app/main/default/lwc/quanticRecommendationList/e2e/fixture.ts +35 -0
- package/force-app/main/default/lwc/quanticRecommendationList/e2e/pageObject.ts +52 -0
- package/force-app/main/default/lwc/quanticRecommendationList/e2e/quanticRecommendationList.e2e.ts +53 -0
- package/force-app/main/default/lwc/quanticRefineModalContent/__tests__/quanticRefineModalContent.test.js +747 -0
- package/force-app/main/default/lwc/quanticRefineToggle/__tests__/quanticRefineToggle.test.js +542 -0
- package/force-app/main/default/lwc/quanticResultAction/__tests__/quanticResultAction.test.js +262 -0
- package/force-app/main/default/lwc/quanticResultActionBar/__tests__/quanticResultActionBar.test.js +141 -0
- package/force-app/main/default/lwc/quanticResultChildren/__tests__/quanticResultChildren.test.js +340 -0
- package/force-app/main/default/lwc/quanticResultCopyToClipboard/__tests__/quanticResultCopyToClipboard.test.js +300 -0
- package/force-app/main/default/lwc/quanticResultCopyToClipboard/e2e/fixture.ts +46 -0
- package/force-app/main/default/lwc/quanticResultCopyToClipboard/e2e/pageObject.ts +49 -0
- package/force-app/main/default/lwc/quanticResultCopyToClipboard/e2e/quanticResultCopyToClipboard.e2e.ts +40 -0
- package/force-app/main/default/lwc/quanticResultDate/__tests__/quanticResultDate.test.js +144 -0
- package/force-app/main/default/lwc/quanticResultField/__tests__/quanticResultField.test.js +120 -0
- package/force-app/main/default/lwc/quanticResultHighlightedTextField/__tests__/quanticResultHighlightedTextField.test.js +209 -0
- package/force-app/main/default/lwc/quanticResultLink/__tests__/quanticResultLink.test.js +261 -0
- package/force-app/main/default/lwc/quanticResultList/__tests__/quanticResultList.test.js +342 -0
- package/force-app/main/default/lwc/quanticResultList/e2e/fixture.ts +66 -0
- package/force-app/main/default/lwc/quanticResultList/e2e/pageObject.ts +81 -0
- package/force-app/main/default/lwc/quanticResultList/e2e/quanticResultList.e2e.ts +69 -0
- package/force-app/main/default/lwc/quanticResultMultiValueText/__tests__/quanticResultMultiValueText.test.js +235 -0
- package/force-app/main/default/lwc/quanticResultNumber/__tests__/quanticResultNumber.test.js +144 -0
- package/force-app/main/default/lwc/quanticResultPrintableUri/__tests__/quanticResultPrintableUri.test.js +324 -0
- package/force-app/main/default/lwc/quanticResultQuickview/__tests__/quanticResultQuickview.test.js +301 -0
- package/force-app/main/default/lwc/quanticResultQuickview/e2e/fixture.ts +81 -0
- package/force-app/main/default/lwc/quanticResultQuickview/e2e/pageObject.ts +38 -0
- package/force-app/main/default/lwc/quanticResultQuickview/e2e/quanticResultQuickView.e2e.ts +66 -0
- package/force-app/main/default/lwc/quanticResultTemplate/__tests__/quanticResultTemplate.test.js +90 -0
- package/force-app/main/default/lwc/quanticResultText/__tests__/quanticResultText.test.js +155 -0
- package/force-app/main/default/lwc/quanticResultsPerPage/__tests__/quanticResultsPerPage.test.js +464 -0
- package/force-app/main/default/lwc/quanticResultsPerPage/e2e/fixture.ts +74 -0
- package/force-app/main/default/lwc/quanticResultsPerPage/e2e/pageObject.ts +85 -0
- package/force-app/main/default/lwc/quanticResultsPerPage/e2e/quanticResultsPerPage.e2e.ts +97 -0
- package/force-app/main/default/lwc/quanticSearchBox/__tests__/quanticSearchBox.test.js +487 -0
- package/force-app/main/default/lwc/quanticSearchBox/e2e/fixture.ts +84 -0
- package/force-app/main/default/lwc/quanticSearchBox/e2e/pageObject.ts +45 -0
- package/force-app/main/default/lwc/quanticSearchBox/e2e/quanticSearchBox.e2e.ts +159 -0
- package/force-app/main/default/lwc/quanticSearchBoxInput/__tests__/quanticSearchBoxInput.test.js +743 -0
- package/force-app/main/default/lwc/quanticSearchBoxSuggestionsList/__tests__/quanticSearchBoxSuggestionsList.test.js +571 -0
- package/force-app/main/default/lwc/quanticSearchBoxSuggestionsList/e2e/fixture.ts +110 -0
- package/force-app/main/default/lwc/quanticSearchBoxSuggestionsList/e2e/pageObject.ts +113 -0
- package/force-app/main/default/lwc/quanticSearchBoxSuggestionsList/e2e/quanticSearchBoxSuggestionsList.e2e.ts +299 -0
- package/force-app/main/default/lwc/quanticSmartSnippet/__tests__/quanticSmartSnippet.test.js +341 -0
- package/force-app/main/default/lwc/quanticSmartSnippet/e2e/data.ts +21 -0
- package/force-app/main/default/lwc/quanticSmartSnippet/e2e/fixture.ts +91 -0
- package/force-app/main/default/lwc/quanticSmartSnippet/e2e/pageObject.ts +196 -0
- package/force-app/main/default/lwc/quanticSmartSnippet/e2e/quanticSmartSnippet.e2e.ts +192 -0
- package/force-app/main/default/lwc/quanticSmartSnippetAnswer/__tests__/quanticSmartSnippetAnswer.test.js +126 -0
- package/force-app/main/default/lwc/quanticSmartSnippetSource/__tests__/quanticSmartSnippetSource.test.js +290 -0
- package/force-app/main/default/lwc/quanticSmartSnippetSuggestions/__tests__/quanticSmartSnippetSuggestions.test.js +329 -0
- package/force-app/main/default/lwc/quanticSmartSnippetSuggestions/e2e/data.ts +31 -0
- package/force-app/main/default/lwc/quanticSmartSnippetSuggestions/e2e/fixture.ts +93 -0
- package/force-app/main/default/lwc/quanticSmartSnippetSuggestions/e2e/pageObject.ts +160 -0
- package/force-app/main/default/lwc/quanticSmartSnippetSuggestions/e2e/quanticSmartSnippetSuggestions.e2e.ts +127 -0
- package/force-app/main/default/lwc/quanticSort/__tests__/quanticSort.test.js +416 -0
- package/force-app/main/default/lwc/quanticSort/e2e/fixture.ts +61 -0
- package/force-app/main/default/lwc/quanticSort/e2e/pageObject.ts +89 -0
- package/force-app/main/default/lwc/quanticSort/e2e/quanticSort.e2e.ts +91 -0
- package/force-app/main/default/lwc/quanticSourceCitations/__tests__/quanticSourceCitations.test.js +136 -0
- package/force-app/main/default/lwc/quanticStandaloneSearchBox/__tests__/quanticStandaloneSearchBox.test.js +387 -0
- package/force-app/main/default/lwc/quanticStandaloneSearchBox/e2e/fixture.ts +53 -0
- package/force-app/main/default/lwc/quanticStandaloneSearchBox/e2e/pageObject.ts +54 -0
- package/force-app/main/default/lwc/quanticStandaloneSearchBox/e2e/quanticStandaloneSearchBox.e2e.ts +72 -0
- package/force-app/main/default/lwc/quanticStatefulButton/__tests__/quanticStatefulButton.test.js +222 -0
- package/force-app/main/default/lwc/quanticSummary/__tests__/quanticSummary.test.js +244 -0
- package/force-app/main/default/lwc/quanticTab/__tests__/quanticTab.test.js +333 -0
- package/force-app/main/default/lwc/quanticTab/e2e/fixture.ts +56 -0
- package/force-app/main/default/lwc/quanticTab/e2e/pageObject.ts +68 -0
- package/force-app/main/default/lwc/quanticTab/e2e/quanticTab.e2e.ts +72 -0
- package/force-app/main/default/lwc/quanticTabBar/__tests__/quanticTabBar.test.js +331 -0
- package/force-app/main/default/lwc/quanticTabBar/e2e/fixture.ts +61 -0
- package/force-app/main/default/lwc/quanticTabBar/e2e/pageObject.ts +80 -0
- package/force-app/main/default/lwc/quanticTabBar/e2e/quanticTabBar.e2e.ts +171 -0
- package/force-app/main/default/lwc/quanticTimeframeFacet/__tests__/quanticTimeframeFacet.test.js +1037 -0
- package/force-app/main/default/lwc/quanticTimeframeFacet/e2e/fixture.ts +58 -0
- package/force-app/main/default/lwc/quanticTimeframeFacet/e2e/pageObject.ts +43 -0
- package/force-app/main/default/lwc/quanticTimeframeFacet/e2e/quanticTimeframeFacet.e2e.ts +160 -0
- package/force-app/main/default/lwc/quanticTooltip/__tests__/quanticTooltip.test.js +107 -0
- package/force-app/main/default/lwc/quanticUserAction/__tests__/quanticUserAction.test.js +427 -0
- package/force-app/main/default/lwc/quanticUserActionsSession/__tests__/quanticUserActionsSession.test.js +269 -0
- package/force-app/main/default/lwc/quanticUserActionsTimeline/__tests__/data/userActionsState.json +89 -0
- package/force-app/main/default/lwc/quanticUserActionsTimeline/__tests__/quanticUserActionsTimeline.test.js +511 -0
- package/force-app/main/default/lwc/quanticUserActionsToggle/__tests__/quanticUserActionsToggle.test.js +229 -0
- package/force-app/main/default/lwc/quanticUserActionsToggle/e2e/data.ts +32 -0
- package/force-app/main/default/lwc/quanticUserActionsToggle/e2e/fixture.ts +32 -0
- package/force-app/main/default/lwc/quanticUserActionsToggle/e2e/pageObject.ts +71 -0
- package/force-app/main/default/lwc/quanticUserActionsToggle/e2e/quanticUserActionsToggle.e2e.ts +39 -0
- package/force-app/main/default/lwc/quanticUtils/__tests__/citationAnchoringUtils.test.js +84 -0
- package/force-app/main/default/lwc/quanticUtils/__tests__/facetDependenciesUtils.test.js +92 -0
- package/force-app/main/default/lwc/quanticUtils/__tests__/markdownUtils.test.js +71 -0
- package/force-app/main/default/lwc/quanticUtils/__tests__/quanticUtils.test.js +223 -0
- package/force-app/main/default/lwc/quanticUtils/recentQueriesUtils.js +20 -12
- package/force-app/main/default/lwc/quanticViewedByCustomerBadge/__tests__/quanticViewedByCustomerBadge.test.js +131 -0
- package/force-app/main/default/staticresources/coveoheadless/case-assist/headless.js +3 -3
- package/force-app/main/default/staticresources/coveoheadless/definitions/app/case-assist-engine/case-assist-engine.d.ts +3 -3
- package/force-app/main/default/staticresources/coveoheadless/definitions/app/commerce-engine/commerce-engine.d.ts +16 -16
- package/force-app/main/default/staticresources/coveoheadless/definitions/app/common-reducers.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/app/insight-engine/insight-engine.d.ts +5 -5
- package/force-app/main/default/staticresources/coveoheadless/definitions/app/recommendation-engine/recommendation-engine.d.ts +4 -4
- package/force-app/main/default/staticresources/coveoheadless/definitions/app/search-engine/search-engine.d.ts +4 -4
- package/force-app/main/default/staticresources/coveoheadless/definitions/app/store.d.ts +2 -2
- package/force-app/main/default/staticresources/coveoheadless/definitions/controllers/commerce/core/facets/headless-core-commerce-facet.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/controllers/core/facets/range-facet/headless-core-range-facet.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/controllers/core/recent-queries-list/headless-core-recent-queries-list.d.ts +91 -0
- package/force-app/main/default/staticresources/coveoheadless/definitions/controllers/insight/attach-to-case/headless-attach-to-case.d.ts +2 -0
- package/force-app/main/default/staticresources/coveoheadless/definitions/controllers/insight/attached-results/headless-attached-results.d.ts +68 -0
- package/force-app/main/default/staticresources/coveoheadless/definitions/controllers/insight/recent-queries-list/headless-insight-recent-queries-list.d.ts +14 -0
- package/force-app/main/default/staticresources/coveoheadless/definitions/controllers/recent-queries-list/headless-recent-queries-list.d.ts +2 -79
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/actions-history/ipx-actions-history-actions.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/advanced-search-queries/advanced-search-queries-slice.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/analytics/search-action-cause.d.ts +9 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/attached-results/attached-results-slice.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/attached-results/attached-results-state.d.ts +1 -0
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/case-assist-configuration/case-assist-configuration-slice.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/case-context/case-context-slice.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/case-field/case-field-actions.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/case-field/case-field-slice.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/case-input/case-input-slice.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/commerce/configuration/configuration-slice.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/commerce/context/cart/cart-actions.d.ts +2 -2
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/commerce/context/cart/cart-slice.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/commerce/context/context-slice.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/commerce/did-you-mean/did-you-mean-slice.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/commerce/facets/facet-search-set/commerce-facet-search-actions.d.ts +2 -2
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/commerce/facets/facet-set/facet-set-slice.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/commerce/facets/field-suggestions-order/field-suggestions-order-slice.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/commerce/facets/numeric-facet/manual-numeric-facet-slice.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/commerce/instant-products/instant-products-slice.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/commerce/pagination/pagination-slice.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/commerce/parameters/parameters-slice.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/commerce/product/product-actions.d.ts +2 -2
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/commerce/product-listing/product-listing-actions.d.ts +2 -2
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/commerce/product-listing/product-listing-slice.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/commerce/query/query-slice.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/commerce/query-suggest/query-suggest-actions.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/commerce/recent-queries/recent-queries-slice.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/commerce/recommendations/recommendations-actions.d.ts +2 -2
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/commerce/recommendations/recommendations-slice.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/commerce/search/search-actions.d.ts +4 -4
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/commerce/search/search-slice.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/commerce/sort/sort-slice.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/commerce/standalone-search-box-set/standalone-search-box-set-actions.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/commerce/standalone-search-box-set/standalone-search-box-set-slice.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/commerce/triggers/triggers-slice.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/configuration/configuration-slice.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/context/context-slice.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/debug/debug-slice.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/debug/version-slice.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/dictionary-field-context/dictionary-field-context-slice.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/did-you-mean/did-you-mean-slice.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/document-suggestion/document-suggestion-actions.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/document-suggestion/document-suggestion-slice.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/excerpt-length/excerpt-length-slice.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/facet-options/facet-options-slice.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/facets/automatic-facet-set/automatic-facet-set-slice.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/facets/category-facet-set/category-facet-set-slice.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/facets/facet-order/facet-order-slice.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/facets/facet-search-set/category/category-facet-search-set-slice.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/facets/facet-search-set/generic/generic-facet-search-actions.d.ts +2 -2
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/facets/facet-search-set/specific/specific-facet-search-set-slice.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/facets/facet-set/facet-set-controller-actions.d.ts +2 -2
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/facets/facet-set/facet-set-slice.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/facets/range-facets/date-facet-set/date-facet-controller-actions.d.ts +2 -2
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/facets/range-facets/date-facet-set/date-facet-set-slice.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/facets/range-facets/numeric-facet-set/numeric-facet-controller-actions.d.ts +2 -2
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/facets/range-facets/numeric-facet-set/numeric-facet-set-slice.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/fields/fields-actions.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/fields/fields-slice.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/folding/folding-actions.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/folding/folding-slice.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/folding/insight-folding-actions.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/generated-answer/generated-answer-actions.d.ts +2 -2
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/generated-answer/generated-answer-slice.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/history/history-actions.d.ts +3 -3
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/history/history-slice.d.ts +2 -2
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/insight-configuration/insight-configuration-slice.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/insight-interface/insight-interface-actions.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/insight-interface/insight-interface-slice.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/insight-search/insight-search-actions.d.ts +5 -5
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/insight-search/legacy/insight-search-actions.d.ts +4 -4
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/insight-user-actions/insight-user-actions-actions.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/insight-user-actions/insight-user-actions-slice.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/instant-results/instant-results-slice.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/pagination/pagination-slice.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/pipeline/pipeline-slice.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/query/query-slice.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/query-set/query-set-slice.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/query-suggest/query-suggest-actions.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/query-suggest/query-suggest-slice.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/question-answering/question-answering-slice.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/recent-queries/recent-queries-insight-analytics-actions.d.ts +3 -0
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/recent-queries/recent-queries-slice.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/recent-results/recent-results-slice.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/recommendation/recommendation-actions.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/recommendation/recommendation-slice.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/result-preview/result-preview-actions.d.ts +2 -2
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/result-preview/result-preview-slice.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/search/legacy/search-actions.d.ts +5 -5
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/search/search-actions.d.ts +6 -6
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/search/search-slice.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/search-hub/search-hub-slice.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/sort-criteria/sort-criteria-slice.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/standalone-search-box-set/standalone-search-box-set-actions.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/standalone-search-box-set/standalone-search-box-set-slice.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/static-filter-set/static-filter-set-slice.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/tab-set/tab-set-slice.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/triggers/triggers-slice.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/insight.index.d.ts +4 -0
- package/force-app/main/default/staticresources/coveoheadless/definitions/ssr/commerce/factories/build-factory.d.ts +6 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/ssr/commerce/types/fetch-static-state.d.ts +3 -0
- package/force-app/main/default/staticresources/coveoheadless/definitions/ssr/commerce/types/from-build-result.d.ts +6 -0
- package/force-app/main/default/staticresources/coveoheadless/definitions/ssr/commerce/types/hydrate-static-state.d.ts +3 -0
- package/force-app/main/default/staticresources/coveoheadless/definitions/ssr/common/access-token-manager.d.ts +19 -0
- package/force-app/main/default/staticresources/coveoheadless/definitions/ssr/common/augment-preprocess-request.d.ts +7 -2
- package/force-app/main/default/staticresources/coveoheadless/definitions/ssr/common/types/fetch-static-state.d.ts +3 -0
- package/force-app/main/default/staticresources/coveoheadless/definitions/ssr/common/types/hydrate-static-state.d.ts +3 -0
- package/force-app/main/default/staticresources/coveoheadless/definitions/ssr-next/commerce/types/engine.d.ts +4 -2
- package/force-app/main/default/staticresources/coveoheadless/definitions/ssr-next/common/access-token-manager.d.ts +19 -0
- package/force-app/main/default/staticresources/coveoheadless/definitions/ssr-next/common/augment-preprocess-request.d.ts +7 -2
- package/force-app/main/default/staticresources/coveoheadless/definitions/ssr-next/search/engine/search-engine.ssr.d.ts +2 -2
- package/force-app/main/default/staticresources/coveoheadless/definitions/state/insight-app-state.d.ts +2 -2
- package/force-app/main/default/staticresources/coveoheadless/definitions/test/mock-ssr-controller-definitions.d.ts +2 -2
- package/force-app/main/default/staticresources/coveoheadless/headless.js +10 -10
- package/force-app/main/default/staticresources/coveoheadless/insight/headless.js +9 -9
- package/force-app/main/default/staticresources/coveoheadless/recommendation/headless.js +3 -3
- package/package.json +46 -44
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
import type {Locator, Page, Request} from '@playwright/test';
|
|
2
|
+
import {isUaClickEvent} from '../../../../../../playwright/utils/requests';
|
|
3
|
+
|
|
4
|
+
export class ResultListObject {
|
|
5
|
+
constructor(public page: Page) {
|
|
6
|
+
this.page = page;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
get resultList(): Locator {
|
|
10
|
+
return this.page.locator('c-quantic-result-list');
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
get resultLinks(): Locator {
|
|
14
|
+
return this.resultList.locator('c-quantic-result-link a');
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
getResultLink(index: number): Locator {
|
|
18
|
+
return this.resultLinks.nth(index);
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
async preventNavigationFromResultLink(index: number): Promise<void> {
|
|
22
|
+
return this.getResultLink(index).evaluate((el) => {
|
|
23
|
+
el?.addEventListener?.('click', (event) => {
|
|
24
|
+
event.preventDefault();
|
|
25
|
+
});
|
|
26
|
+
});
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
async clickResultLink(index: number): Promise<void> {
|
|
30
|
+
await this.resultLinks.nth(index).click();
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
async captureClickEventWorkaround(): Promise<void> {
|
|
34
|
+
// Hack(?) to have the request payload in the analytics click event.
|
|
35
|
+
// Without this the payload is not available in the request.
|
|
36
|
+
return this.page.route('*analytics*', (route) => {
|
|
37
|
+
route.continue();
|
|
38
|
+
});
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
async waitForResultLinkClickUaAnalytics(
|
|
42
|
+
expectedFields: Record<string, any>
|
|
43
|
+
): Promise<Request> {
|
|
44
|
+
return this.waitForClickUaAnalytics(
|
|
45
|
+
'documentOpen',
|
|
46
|
+
(data: Record<string, any>) => {
|
|
47
|
+
const matchesExpectedFields = Object.keys(expectedFields).every(
|
|
48
|
+
(key) => data?.[key] === expectedFields[key]
|
|
49
|
+
);
|
|
50
|
+
return matchesExpectedFields;
|
|
51
|
+
}
|
|
52
|
+
);
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
async waitForClickUaAnalytics(
|
|
56
|
+
actionCause: string,
|
|
57
|
+
fieldsMatcher?: Function
|
|
58
|
+
): Promise<Request> {
|
|
59
|
+
const uaRequest = this.page.waitForRequest((request) => {
|
|
60
|
+
if (isUaClickEvent(request)) {
|
|
61
|
+
const requestBody = request.postDataJSON?.();
|
|
62
|
+
const requestData = JSON.parse(requestBody.clickEvent);
|
|
63
|
+
|
|
64
|
+
const expectedFields: Record<string, any> = {
|
|
65
|
+
actionCause,
|
|
66
|
+
};
|
|
67
|
+
|
|
68
|
+
const matchesExpectedFields = Object.keys(expectedFields).every(
|
|
69
|
+
(key) => requestData?.[key] === expectedFields[key]
|
|
70
|
+
);
|
|
71
|
+
|
|
72
|
+
return (
|
|
73
|
+
matchesExpectedFields &&
|
|
74
|
+
(fieldsMatcher ? fieldsMatcher(requestData, requestData) : true)
|
|
75
|
+
);
|
|
76
|
+
}
|
|
77
|
+
return false;
|
|
78
|
+
});
|
|
79
|
+
return uaRequest;
|
|
80
|
+
}
|
|
81
|
+
}
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
/* eslint-disable @lwc/lwc/no-document-query */
|
|
2
|
+
import {
|
|
3
|
+
useCaseEnum,
|
|
4
|
+
useCaseTestCases,
|
|
5
|
+
} from '../../../../../../playwright/utils/useCase';
|
|
6
|
+
import {testInsight, testSearch, expect} from './fixture';
|
|
7
|
+
|
|
8
|
+
const fixtures = {
|
|
9
|
+
search: testSearch,
|
|
10
|
+
insight: testInsight,
|
|
11
|
+
};
|
|
12
|
+
|
|
13
|
+
const testFieldsToInclude = 'foo,bar,baz';
|
|
14
|
+
const SEARCH_ORIGINCONTEXT = 'Search';
|
|
15
|
+
const INSIGHT_ORIGINCONTEXT = 'InsightPanel';
|
|
16
|
+
|
|
17
|
+
useCaseTestCases.forEach((useCase) => {
|
|
18
|
+
let test = fixtures[useCase.value];
|
|
19
|
+
|
|
20
|
+
test.describe(`quantic result list ${useCase.label}`, () => {
|
|
21
|
+
test.describe('fieldsToInclude in the Search API request', () => {
|
|
22
|
+
test.use({
|
|
23
|
+
options: {
|
|
24
|
+
fieldsToInclude: testFieldsToInclude,
|
|
25
|
+
},
|
|
26
|
+
});
|
|
27
|
+
test('when performing a search should send the added fieldsToInclude', async ({
|
|
28
|
+
resultList,
|
|
29
|
+
search,
|
|
30
|
+
}) => {
|
|
31
|
+
const expectedFieldsToInclude = testFieldsToInclude.split(',');
|
|
32
|
+
const searchRequestPromise = search.waitForSearchRequest();
|
|
33
|
+
await search.performSearch();
|
|
34
|
+
const requestBody = (await searchRequestPromise).postDataJSON();
|
|
35
|
+
expect(requestBody?.fieldsToInclude).toBeDefined();
|
|
36
|
+
expect(requestBody).toEqual(
|
|
37
|
+
expect.objectContaining({
|
|
38
|
+
fieldsToInclude: expect.arrayContaining(expectedFieldsToInclude),
|
|
39
|
+
})
|
|
40
|
+
);
|
|
41
|
+
await expect(resultList.resultList).toBeVisible();
|
|
42
|
+
});
|
|
43
|
+
});
|
|
44
|
+
|
|
45
|
+
test.describe('analytics request', () => {
|
|
46
|
+
test('when clicking a result link should send the expected click event with the correct data', async ({
|
|
47
|
+
resultList,
|
|
48
|
+
}) => {
|
|
49
|
+
await resultList.captureClickEventWorkaround();
|
|
50
|
+
|
|
51
|
+
const expectedOriginContext =
|
|
52
|
+
useCase.value === useCaseEnum.insight
|
|
53
|
+
? INSIGHT_ORIGINCONTEXT
|
|
54
|
+
: SEARCH_ORIGINCONTEXT;
|
|
55
|
+
const firstResultLink = resultList.getResultLink(0);
|
|
56
|
+
const firstResultLinkHref = await firstResultLink.getAttribute('href');
|
|
57
|
+
await resultList.preventNavigationFromResultLink(0);
|
|
58
|
+
|
|
59
|
+
const expectedUaRequestPromise =
|
|
60
|
+
resultList.waitForResultLinkClickUaAnalytics({
|
|
61
|
+
documentUrl: firstResultLinkHref,
|
|
62
|
+
originContext: expectedOriginContext,
|
|
63
|
+
});
|
|
64
|
+
await resultList.clickResultLink(0);
|
|
65
|
+
await expectedUaRequestPromise;
|
|
66
|
+
});
|
|
67
|
+
});
|
|
68
|
+
});
|
|
69
|
+
});
|
|
@@ -0,0 +1,235 @@
|
|
|
1
|
+
// @ts-ignore
|
|
2
|
+
import {createElement} from 'lwc';
|
|
3
|
+
import QuanticResultMultiValueText from '../quanticResultMultiValueText';
|
|
4
|
+
|
|
5
|
+
const exampleField = 'examplemultivaluefield';
|
|
6
|
+
const exampleFieldValue = ['One', 'Two', 'Three'];
|
|
7
|
+
const exampleResult = {
|
|
8
|
+
raw: {
|
|
9
|
+
[exampleField]: exampleFieldValue,
|
|
10
|
+
},
|
|
11
|
+
};
|
|
12
|
+
|
|
13
|
+
const labelSelector = '.result-text__label';
|
|
14
|
+
const valueSelector = '.result-text__value';
|
|
15
|
+
const errorSelector = '.error-message';
|
|
16
|
+
|
|
17
|
+
const defaultOptions = {
|
|
18
|
+
result: exampleResult,
|
|
19
|
+
field: exampleField,
|
|
20
|
+
};
|
|
21
|
+
|
|
22
|
+
function createTestComponent(options = defaultOptions) {
|
|
23
|
+
const element = createElement('c-quantic-result-multi-value-text', {
|
|
24
|
+
is: QuanticResultMultiValueText,
|
|
25
|
+
});
|
|
26
|
+
|
|
27
|
+
for (const [key, value] of Object.entries(options)) {
|
|
28
|
+
element[key] = value;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
document.body.appendChild(element);
|
|
32
|
+
return element;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
// Helper function to wait until the microtask queue is empty.
|
|
36
|
+
function flushPromises() {
|
|
37
|
+
return new Promise((resolve) => setTimeout(resolve, 0));
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
describe('c-quantic-result-multi-value-text', () => {
|
|
41
|
+
function cleanup() {
|
|
42
|
+
// The jsdom instance is shared across test cases in a single file so reset the DOM
|
|
43
|
+
while (document.body.firstChild) {
|
|
44
|
+
document.body.removeChild(document.body.firstChild);
|
|
45
|
+
}
|
|
46
|
+
jest.clearAllMocks();
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
beforeEach(() => {
|
|
50
|
+
console.error = jest.fn();
|
|
51
|
+
// @ts-ignore
|
|
52
|
+
global.Bueno = {
|
|
53
|
+
isString: jest
|
|
54
|
+
.fn()
|
|
55
|
+
.mockImplementation(
|
|
56
|
+
(value) => Object.prototype.toString.call(value) === '[object String]'
|
|
57
|
+
),
|
|
58
|
+
};
|
|
59
|
+
});
|
|
60
|
+
|
|
61
|
+
afterEach(() => {
|
|
62
|
+
cleanup();
|
|
63
|
+
});
|
|
64
|
+
|
|
65
|
+
describe('when no result is given', () => {
|
|
66
|
+
it('should show an error', async () => {
|
|
67
|
+
// @ts-ignore
|
|
68
|
+
const element = createTestComponent({field: exampleField});
|
|
69
|
+
await flushPromises();
|
|
70
|
+
const errorMessage = element.shadowRoot.querySelector(errorSelector);
|
|
71
|
+
|
|
72
|
+
expect(errorMessage).not.toBeNull();
|
|
73
|
+
expect(console.error).toHaveBeenCalledWith(
|
|
74
|
+
'The c-quantic-result-multi-value-text requires a result and a multi-value field to be specified.'
|
|
75
|
+
);
|
|
76
|
+
expect(console.error).toHaveBeenCalledWith(
|
|
77
|
+
'Could not parse value from field "examplemultivaluefield" as a string array.'
|
|
78
|
+
);
|
|
79
|
+
});
|
|
80
|
+
});
|
|
81
|
+
|
|
82
|
+
describe('when no field is given', () => {
|
|
83
|
+
it('should show an error', async () => {
|
|
84
|
+
// @ts-ignore
|
|
85
|
+
const element = createTestComponent({result: exampleResult});
|
|
86
|
+
await flushPromises();
|
|
87
|
+
|
|
88
|
+
const errorMessage = element.shadowRoot.querySelector(errorSelector);
|
|
89
|
+
|
|
90
|
+
expect(errorMessage).not.toBeNull();
|
|
91
|
+
expect(console.error).toHaveBeenCalledWith(
|
|
92
|
+
'The c-quantic-result-multi-value-text requires a result and a multi-value field to be specified.'
|
|
93
|
+
);
|
|
94
|
+
expect(console.error).toHaveBeenCalledWith(
|
|
95
|
+
'Could not parse value from field "undefined" as a string array.'
|
|
96
|
+
);
|
|
97
|
+
});
|
|
98
|
+
});
|
|
99
|
+
|
|
100
|
+
describe('when the field value is an empty string', () => {
|
|
101
|
+
it('should show an error', async () => {
|
|
102
|
+
const element = createTestComponent({
|
|
103
|
+
...defaultOptions,
|
|
104
|
+
result: {
|
|
105
|
+
raw: {
|
|
106
|
+
// @ts-ignore
|
|
107
|
+
[exampleField]: '',
|
|
108
|
+
},
|
|
109
|
+
},
|
|
110
|
+
});
|
|
111
|
+
await flushPromises();
|
|
112
|
+
|
|
113
|
+
const errorMessage = element.shadowRoot.querySelector(errorSelector);
|
|
114
|
+
|
|
115
|
+
expect(errorMessage).not.toBeNull();
|
|
116
|
+
expect(console.error).toHaveBeenCalledWith(
|
|
117
|
+
'Could not parse value from field "examplemultivaluefield" as a string array.'
|
|
118
|
+
);
|
|
119
|
+
});
|
|
120
|
+
});
|
|
121
|
+
|
|
122
|
+
describe('when the field value is not a valid multi-value field', () => {
|
|
123
|
+
it('should show an error', async () => {
|
|
124
|
+
const element = createTestComponent({
|
|
125
|
+
...defaultOptions,
|
|
126
|
+
result: {
|
|
127
|
+
raw: {
|
|
128
|
+
// @ts-ignore
|
|
129
|
+
[exampleField]: 1,
|
|
130
|
+
},
|
|
131
|
+
},
|
|
132
|
+
});
|
|
133
|
+
await flushPromises();
|
|
134
|
+
|
|
135
|
+
const errorMessage = element.shadowRoot.querySelector(errorSelector);
|
|
136
|
+
|
|
137
|
+
expect(errorMessage).not.toBeNull();
|
|
138
|
+
expect(console.error).toHaveBeenCalledWith(
|
|
139
|
+
'Could not parse value from field "examplemultivaluefield" as a string array.'
|
|
140
|
+
);
|
|
141
|
+
});
|
|
142
|
+
});
|
|
143
|
+
|
|
144
|
+
describe('when required props are given', () => {
|
|
145
|
+
it('should render the result field value', async () => {
|
|
146
|
+
const element = createTestComponent();
|
|
147
|
+
await flushPromises();
|
|
148
|
+
|
|
149
|
+
const fieldValueElement = element.shadowRoot.querySelector(valueSelector);
|
|
150
|
+
|
|
151
|
+
expect(fieldValueElement.textContent).toBe('One, Two, Three');
|
|
152
|
+
});
|
|
153
|
+
|
|
154
|
+
describe('when the number of values exceeds the maximum', () => {
|
|
155
|
+
const options = {
|
|
156
|
+
...defaultOptions,
|
|
157
|
+
maxValuesToDisplay: 2,
|
|
158
|
+
};
|
|
159
|
+
|
|
160
|
+
it('should hide the extra values', async () => {
|
|
161
|
+
const element = createTestComponent(options);
|
|
162
|
+
await flushPromises();
|
|
163
|
+
|
|
164
|
+
const fieldValueElement =
|
|
165
|
+
element.shadowRoot.querySelector(valueSelector);
|
|
166
|
+
|
|
167
|
+
expect(fieldValueElement.textContent).toBe('One, Two, c.quantic_NMore');
|
|
168
|
+
});
|
|
169
|
+
});
|
|
170
|
+
|
|
171
|
+
describe('when the field value is a string with a delimiter', () => {
|
|
172
|
+
const testResult = {
|
|
173
|
+
raw: {
|
|
174
|
+
[exampleField]: 'One-Two-Three',
|
|
175
|
+
},
|
|
176
|
+
};
|
|
177
|
+
const options = {
|
|
178
|
+
...defaultOptions,
|
|
179
|
+
result: testResult,
|
|
180
|
+
delimiter: '-',
|
|
181
|
+
};
|
|
182
|
+
|
|
183
|
+
it('should render the result field value', async () => {
|
|
184
|
+
// @ts-ignore
|
|
185
|
+
const element = createTestComponent(options);
|
|
186
|
+
await flushPromises();
|
|
187
|
+
|
|
188
|
+
const fieldValueElement =
|
|
189
|
+
element.shadowRoot.querySelector(valueSelector);
|
|
190
|
+
|
|
191
|
+
expect(fieldValueElement.textContent).toBe('One, Two, Three');
|
|
192
|
+
});
|
|
193
|
+
});
|
|
194
|
+
|
|
195
|
+
describe('when a label is provided', () => {
|
|
196
|
+
const testLabel = 'Numbers';
|
|
197
|
+
const options = {
|
|
198
|
+
...defaultOptions,
|
|
199
|
+
label: testLabel,
|
|
200
|
+
};
|
|
201
|
+
|
|
202
|
+
it('should hide the extra values', async () => {
|
|
203
|
+
const element = createTestComponent(options);
|
|
204
|
+
await flushPromises();
|
|
205
|
+
|
|
206
|
+
const fieldValueElement =
|
|
207
|
+
element.shadowRoot.querySelector(valueSelector);
|
|
208
|
+
const labelElement = element.shadowRoot.querySelector(labelSelector);
|
|
209
|
+
|
|
210
|
+
expect(fieldValueElement.textContent).toBe('One, Two, Three');
|
|
211
|
+
expect(labelElement.textContent).toBe(`${testLabel}:`);
|
|
212
|
+
});
|
|
213
|
+
|
|
214
|
+
describe('when the label is not a valid string', () => {
|
|
215
|
+
const invalidLabel = {};
|
|
216
|
+
const invalidOptions = {
|
|
217
|
+
...defaultOptions,
|
|
218
|
+
label: invalidLabel,
|
|
219
|
+
};
|
|
220
|
+
|
|
221
|
+
it('should show an error', async () => {
|
|
222
|
+
const element = createTestComponent(invalidOptions);
|
|
223
|
+
await flushPromises();
|
|
224
|
+
|
|
225
|
+
const errorMessage = element.shadowRoot.querySelector(errorSelector);
|
|
226
|
+
|
|
227
|
+
expect(errorMessage).not.toBeNull();
|
|
228
|
+
expect(console.error).toHaveBeenCalledWith(
|
|
229
|
+
`The "${invalidLabel}" label is not a valid string.`
|
|
230
|
+
);
|
|
231
|
+
});
|
|
232
|
+
});
|
|
233
|
+
});
|
|
234
|
+
});
|
|
235
|
+
});
|
|
@@ -0,0 +1,144 @@
|
|
|
1
|
+
// @ts-ignore
|
|
2
|
+
import {createElement} from 'lwc';
|
|
3
|
+
import QuanticResultNumber from '../quanticResultNumber';
|
|
4
|
+
|
|
5
|
+
const exampleField = 'examplenumberfield';
|
|
6
|
+
const exampleFieldValue = 1670118414000;
|
|
7
|
+
const exampleResult = {
|
|
8
|
+
raw: {
|
|
9
|
+
[exampleField]: exampleFieldValue,
|
|
10
|
+
},
|
|
11
|
+
};
|
|
12
|
+
|
|
13
|
+
const errorSelector = '.error-message';
|
|
14
|
+
|
|
15
|
+
const defaultOptions = {
|
|
16
|
+
result: exampleResult,
|
|
17
|
+
field: exampleField,
|
|
18
|
+
};
|
|
19
|
+
|
|
20
|
+
function createTestComponent(options = defaultOptions) {
|
|
21
|
+
const element = createElement('c-quantic-result-number', {
|
|
22
|
+
is: QuanticResultNumber,
|
|
23
|
+
});
|
|
24
|
+
|
|
25
|
+
for (const [key, value] of Object.entries(options)) {
|
|
26
|
+
element[key] = value;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
document.body.appendChild(element);
|
|
30
|
+
return element;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
// Helper function to wait until the microtask queue is empty.
|
|
34
|
+
function flushPromises() {
|
|
35
|
+
return new Promise((resolve) => setTimeout(resolve, 0));
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
describe('c-quantic-result-number', () => {
|
|
39
|
+
function cleanup() {
|
|
40
|
+
// The jsdom instance is shared across test cases in a single file so reset the DOM
|
|
41
|
+
while (document.body.firstChild) {
|
|
42
|
+
document.body.removeChild(document.body.firstChild);
|
|
43
|
+
}
|
|
44
|
+
jest.clearAllMocks();
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
beforeEach(() => {
|
|
48
|
+
console.error = jest.fn();
|
|
49
|
+
// @ts-ignore
|
|
50
|
+
global.Bueno = {
|
|
51
|
+
isString: jest
|
|
52
|
+
.fn()
|
|
53
|
+
.mockImplementation(
|
|
54
|
+
(value) => Object.prototype.toString.call(value) === '[object String]'
|
|
55
|
+
),
|
|
56
|
+
isNumber: jest
|
|
57
|
+
.fn()
|
|
58
|
+
.mockImplementation(
|
|
59
|
+
(value) => typeof value === 'number' && !isNaN(value)
|
|
60
|
+
),
|
|
61
|
+
};
|
|
62
|
+
});
|
|
63
|
+
|
|
64
|
+
afterEach(() => {
|
|
65
|
+
cleanup();
|
|
66
|
+
});
|
|
67
|
+
|
|
68
|
+
describe('when no result is given', () => {
|
|
69
|
+
it('should show an error', async () => {
|
|
70
|
+
// @ts-ignore
|
|
71
|
+
const element = createTestComponent({field: exampleField});
|
|
72
|
+
await flushPromises();
|
|
73
|
+
const errorMessage = element.shadowRoot.querySelector(errorSelector);
|
|
74
|
+
|
|
75
|
+
expect(errorMessage).not.toBeNull();
|
|
76
|
+
expect(console.error).toHaveBeenCalledWith(
|
|
77
|
+
'The c-quantic-result-number requires a result and a number field to be specified.'
|
|
78
|
+
);
|
|
79
|
+
expect(console.error).toHaveBeenCalledWith(
|
|
80
|
+
'The "examplenumberfield" field value is not a valid number.'
|
|
81
|
+
);
|
|
82
|
+
});
|
|
83
|
+
});
|
|
84
|
+
|
|
85
|
+
describe('when no field is given', () => {
|
|
86
|
+
it('should show an error', async () => {
|
|
87
|
+
// @ts-ignore
|
|
88
|
+
const element = createTestComponent({result: exampleResult});
|
|
89
|
+
await flushPromises();
|
|
90
|
+
|
|
91
|
+
const errorMessage = element.shadowRoot.querySelector(errorSelector);
|
|
92
|
+
|
|
93
|
+
expect(errorMessage).not.toBeNull();
|
|
94
|
+
expect(console.error).toHaveBeenCalledWith(
|
|
95
|
+
'The c-quantic-result-number requires a result and a number field to be specified.'
|
|
96
|
+
);
|
|
97
|
+
expect(console.error).toHaveBeenCalledWith(
|
|
98
|
+
'The "undefined" field value is not a valid number.'
|
|
99
|
+
);
|
|
100
|
+
});
|
|
101
|
+
});
|
|
102
|
+
|
|
103
|
+
describe('when the field value is not a valid number', () => {
|
|
104
|
+
const invalidValue = 'not-a-timestamp';
|
|
105
|
+
const invalidOptions = {
|
|
106
|
+
...defaultOptions,
|
|
107
|
+
result: {
|
|
108
|
+
raw: {
|
|
109
|
+
[exampleField]: invalidValue,
|
|
110
|
+
},
|
|
111
|
+
},
|
|
112
|
+
};
|
|
113
|
+
|
|
114
|
+
it('should show an error', async () => {
|
|
115
|
+
// @ts-ignore
|
|
116
|
+
const element = createTestComponent(invalidOptions);
|
|
117
|
+
await flushPromises();
|
|
118
|
+
|
|
119
|
+
const errorMessage = element.shadowRoot.querySelector(errorSelector);
|
|
120
|
+
|
|
121
|
+
expect(errorMessage).not.toBeNull();
|
|
122
|
+
});
|
|
123
|
+
});
|
|
124
|
+
|
|
125
|
+
describe('when a formatting function is given', () => {
|
|
126
|
+
let formattingFunctionMock;
|
|
127
|
+
|
|
128
|
+
beforeEach(() => {
|
|
129
|
+
formattingFunctionMock = jest
|
|
130
|
+
.fn()
|
|
131
|
+
.mockImplementation((value) => `formatted ${value}`);
|
|
132
|
+
});
|
|
133
|
+
|
|
134
|
+
it('should render the formatted field value', async () => {
|
|
135
|
+
createTestComponent({
|
|
136
|
+
...defaultOptions,
|
|
137
|
+
formattingFunction: formattingFunctionMock,
|
|
138
|
+
});
|
|
139
|
+
await flushPromises();
|
|
140
|
+
|
|
141
|
+
expect(formattingFunctionMock).toHaveBeenCalledWith(exampleFieldValue);
|
|
142
|
+
});
|
|
143
|
+
});
|
|
144
|
+
});
|