Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

MFTF: Sharing Wishlist with more than allowed Text Length Limit #28812

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
-->

<tests xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="urn:magento:mftf:Test/etc/testSchema.xsd">
<test name="StorefrontShareWishlistWithMoreThanMaximumAllowedTextLengthLimitTest">
<annotations>
<features value="Wishlist"/>
<stories value="Sharing wishlist with more than Maximum Allowed Text Length Limit"/>
<title value="Sharing wishlist with more than Maximum Allowed Text Length Limit"/>
<description value="Customer should not have a possibility share wishlist with more than maximum allowed Email Text Length Limit"/>
<testCaseId value="MC-35647"/>
<group value="wishlist"/>
<group value="configuration"/>
</annotations>
<before>
<magentoCLI command="config:set wishlist/email/text_limit 10" stepKey="changeTextLengthLimit"/>
<magentoCLI command="cache:clean config" stepKey="cleanCache"/>
<createData entity="SimpleSubCategory" stepKey="createCategory"/>
<createData entity="SimpleProduct" stepKey="createProduct">
<requiredEntity createDataKey="createCategory"/>
</createData>
<magentoCLI command="cron:run --group=index" stepKey="runCronIndexer"/>
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We have magentoCron command available 👍

<createData entity="Simple_US_Customer" stepKey="createCustomer"/>
</before>
<after>
<magentoCLI command="config:set wishlist/email/text_limit 255" stepKey="returnDefaultValue"/>
<magentoCLI command="cache:clean config" stepKey="cacheClean"/>
<deleteData createDataKey="createCategory" stepKey="deleteCategory"/>
<deleteData createDataKey="createProduct" stepKey="deleteProduct"/>
<actionGroup ref="StorefrontCustomerLogoutActionGroup" stepKey="logoutCustomer"/>
<deleteData createDataKey="createCustomer" stepKey="deleteCustomer"/>
</after>

<actionGroup ref="LoginToStorefrontActionGroup" stepKey="loginToStorefrontAccount">
<argument name="Customer" value="$createCustomer$"/>
</actionGroup>
<actionGroup ref="OpenStoreFrontProductPageActionGroup" stepKey="openProductPage">
<argument name="productUrlKey" value="$$createProduct.custom_attributes[url_key]$$"/>
</actionGroup>
<actionGroup ref="StorefrontCustomerAddProductToWishlistActionGroup" stepKey="addToWishlistProduct">
<argument name="productVar" value="$createProduct$"/>
</actionGroup>
<actionGroup ref="StorefrontShareCustomerWishlistActionGroup" stepKey="shareWishList">
<argument name="email" value="{{Wishlist.shareInfo_emails}}"/>
<argument name="message" value="{{Wishlist.shareInfo_message}}"/>
</actionGroup>
<actionGroup ref="AssertMessageCustomerChangeAccountInfoActionGroup" stepKey="assertMessage">
<argument name="message" value="Message length must not exceed 10 symbols"/>
<argument name="messageType" value="error"/>
</actionGroup>
</test>
</tests>