Skip to content

Commit 0f770a5

Browse files
committed
MC-21228: Support partial word search in Elasticsearch
- Unskipping tests
1 parent c163f4f commit 0f770a5

10 files changed

+32
-32
lines changed

app/code/Magento/Bundle/Test/Mftf/Test/StorefrontAdvanceCatalogSearchBundleBySkuWithHyphenTest.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@
1818
<testCaseId value="MC-20359"/>
1919
<group value="Bundle"/>
2020
<group value="SearchEngineElasticsearch"/>
21-
<skip>
22-
<issueId value="MC-21228"/>
23-
</skip>
21+
<!-- <skip>-->
22+
<!-- <issueId value="MC-21228"/>-->
23+
<!-- </skip>-->
2424
</annotations>
2525
<before>
2626
<createData entity="ApiProductWithDescription" stepKey="simple1" before="simple2"/>

app/code/Magento/Catalog/Test/Mftf/Test/StorefrontAdvanceCatalogSearchSimpleProductBySkuWithHyphenTest.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@
1818
<testCaseId value="MC-20361"/>
1919
<group value="Catalog"/>
2020
<group value="SearchEngineElasticsearch"/>
21-
<skip>
22-
<issueId value="MC-21228"/>
23-
</skip>
21+
<!-- <skip>-->
22+
<!-- <issueId value="MC-21228"/>-->
23+
<!-- </skip>-->
2424
</annotations>
2525
<before>
2626
<createData entity="ApiProductWithDescription" stepKey="product"/>

app/code/Magento/Catalog/Test/Mftf/Test/StorefrontAdvanceCatalogSearchVirtualProductBySkuWithHyphenTest.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@
1818
<testCaseId value="MC-20385"/>
1919
<group value="Catalog"/>
2020
<group value="SearchEngineElasticsearch"/>
21-
<skip>
22-
<issueId value="MC-21228"/>
23-
</skip>
21+
<!-- <skip>-->
22+
<!-- <issueId value="MC-21228"/>-->
23+
<!-- </skip>-->
2424
</annotations>
2525
<before>
2626
<createData entity="ApiVirtualProductWithDescription" stepKey="product"/>

app/code/Magento/CatalogSearch/Test/Mftf/Test/SearchEntityResultsTest/QuickSearchProductByNameWithThreeLettersTest.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@
1717
<group value="CatalogSearch"/>
1818
<group value="SearchEngineElasticsearch"/>
1919
<group value="mtf_migrated"/>
20-
<skip>
21-
<issueId value="MC-21228"/>
22-
</skip>
20+
<!-- <skip>-->
21+
<!-- <issueId value="MC-21228"/>-->
22+
<!-- </skip>-->
2323
</annotations>
2424
<executeJS function="var s = '$createSimpleProduct.name$'; var ret=s.substring(0,3); return ret;" stepKey="getFirstThreeLetters" before="searchStorefront"/>
2525
<actionGroup ref="StorefrontCheckQuickSearchStringActionGroup" stepKey="searchStorefront">

app/code/Magento/CatalogSearch/Test/Mftf/Test/SearchEntityResultsTest/QuickSearchTwoProductsWithSameWeightTest.xml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@
1717
<group value="CatalogSearch"/>
1818
<group value="SearchEngineElasticsearch"/>
1919
<group value="mtf_migrated"/>
20-
<skip>
21-
<issueId value="MC-21228"/>
22-
</skip>
20+
<!-- <skip>-->
21+
<!-- <issueId value="MC-21228"/>-->
22+
<!-- </skip>-->
2323
</annotations>
2424
<before>
2525
<createData entity="_defaultCategory" stepKey="createCategory"/>
@@ -31,7 +31,6 @@
3131
</createData>
3232
<actionGroup ref="AdminLoginActionGroup" stepKey="loginAsAdmin1"/>
3333

34-
3534
<!-- Create and Assign Attribute to product1-->
3635
<actionGroup ref="AdminProductPageOpenByIdActionGroup" stepKey="goToProduct1">
3736
<argument name="productId" value="$product1.id$"/>
@@ -79,18 +78,19 @@
7978
<deleteData stepKey="deleteProduct1" createDataKey="product1"/>
8079
<deleteData stepKey="deleteProduct2" createDataKey="product2"/>
8180
<deleteData stepKey="deleteCategory" createDataKey="createCategory"/>
81+
8282
</after>
8383
<amOnPage url="{{StorefrontHomePage.url}}" stepKey="goToFrontPage"/>
8484
<actionGroup ref="StorefrontCheckQuickSearchStringActionGroup" stepKey="searchStorefront">
8585
<argument name="phrase" value="{{_defaultProduct.name}}"/>
8686
</actionGroup>
8787
<actionGroup ref="StorefrontQuickSearchCheckProductNameInGridActionGroup" stepKey="assertProduct1Position">
8888
<argument name="productName" value="$product1.name$"/>
89-
<argument name="index" value="2"/>
89+
<argument name="index" value="1"/>
9090
</actionGroup>
9191
<actionGroup ref="StorefrontQuickSearchCheckProductNameInGridActionGroup" stepKey="assertProduct2Position">
9292
<argument name="productName" value="$product2.name$"/>
93-
<argument name="index" value="1"/>
93+
<argument name="index" value="2"/>
9494
</actionGroup>
9595
</test>
9696
</tests>

app/code/Magento/CatalogSearch/Test/Mftf/Test/StorefrontPartialWordQuickSearchUsingElasticSearchTest.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@
1313
<features value="Search"/>
1414
<stories value="Partial Word search using Elasticsearch"/>
1515
<title value="Support partial word search in Elasticsearch"/>
16-
<description value="User should be able to search decimal attribute using ElasticSearch"/>
16+
<description value="Support quick search with Partial word search using ES"/>
1717
<severity value="CRITICAL"/>
18-
<testCaseId value="MC-21228"/>
18+
<testCaseId value="MC-34205"/>
1919
<group value="SearchEngineElasticsearch" />
2020
</annotations>
2121
<before>

app/code/Magento/ConfigurableProduct/Test/Mftf/Test/StorefrontAdvanceCatalogSearchConfigurableBySkuWithHyphenTest.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@
1818
<testCaseId value="MC-20389"/>
1919
<group value="ConfigurableProduct"/>
2020
<group value="SearchEngineElasticsearch"/>
21-
<skip>
22-
<issueId value="MC-21228"/>
23-
</skip>
21+
<!-- <skip>-->
22+
<!-- <issueId value="MC-21228"/>-->
23+
<!-- </skip>-->
2424
</annotations>
2525
<before>
2626
<createData entity="SimpleSubCategory" stepKey="categoryHandle" before="simple1Handle"/>

app/code/Magento/ConfigurableProduct/Test/Mftf/Test/StorefrontConfigurableProductChildSearchTest.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@
1818
<testCaseId value="MC-249"/>
1919
<group value="ConfigurableProduct"/>
2020
<group value="SearchEngineElasticsearch"/>
21-
<skip>
22-
<issueId value="MC-21228"/>
23-
</skip>
21+
<!-- <skip>-->
22+
<!-- <issueId value="MC-21228"/>-->
23+
<!-- </skip>-->
2424
</annotations>
2525
<before>
2626
<!-- TODO: This should be converted to an actionGroup once MQE-993 is fixed. -->

app/code/Magento/Downloadable/Test/Mftf/Test/StorefrontAdvanceCatalogSearchDownloadableBySkuWithHyphenTest.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@
1818
<testCaseId value="MC-252"/>
1919
<group value="Downloadable"/>
2020
<group value="SearchEngineElasticsearch"/>
21-
<skip>
22-
<issueId value="MC-21228"/>
23-
</skip>
21+
<!-- <skip>-->
22+
<!-- <issueId value="MC-21228"/>-->
23+
<!-- </skip>-->
2424
</annotations>
2525
<before>
2626
<magentoCLI command="downloadable:domains:add example.com static.magento.com" before="product" stepKey="addDownloadableDomain"/>

app/code/Magento/GroupedProduct/Test/Mftf/Test/StorefrontAdvanceCatalogSearchGroupedProductBySkuWithHyphenTest.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@
1818
<testCaseId value="MC-20519"/>
1919
<group value="GroupedProduct"/>
2020
<group value="SearchEngineElasticsearch"/>
21-
<skip>
22-
<issueId value="MC-21228"/>
23-
</skip>
21+
<!-- <skip>-->
22+
<!-- <issueId value="MC-21228"/>-->
23+
<!-- </skip>-->
2424

2525
</annotations>
2626
<before>

0 commit comments

Comments
 (0)