-
Notifications
You must be signed in to change notification settings - Fork 9.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6667 from magento-tsg/2.4.3-develop-pr129
[Condor] Fixes for 2.4 (pr129) (2.4.3-develop)
- Loading branch information
Showing
11 changed files
with
321 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
24 changes: 24 additions & 0 deletions
24
...ento/Catalog/Test/Mftf/ActionGroup/StorefrontRemoveFirstProductFromCompareActionGroup.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!-- | ||
/** | ||
* Copyright © Magento, Inc. All rights reserved. | ||
* See COPYING.txt for license details. | ||
*/ | ||
--> | ||
|
||
<actionGroups xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:noNamespaceSchemaLocation="urn:magento:mftf:Test/etc/actionGroupSchema.xsd"> | ||
<actionGroup name="StorefrontRemoveFirstProductFromCompareActionGroup"> | ||
<annotations> | ||
<description>Open Compare Products list and remove a product</description> | ||
</annotations> | ||
|
||
<amOnPage url="{{StorefrontProductComparePage.url}}" stepKey="navigateToComparePage"/> | ||
<waitForElementVisible selector="{{StorefrontProductCompareMainSection.removeFirstItem}}" stepKey="waitForButton"/> | ||
<click selector="{{StorefrontProductCompareMainSection.removeFirstItem}}" stepKey="clickOnButton"/> | ||
<waitForElementVisible selector="{{ModalConfirmationSection.OkButton}}" stepKey="waitForModal"/> | ||
<scrollTo selector="{{ModalConfirmationSection.OkButton}}" stepKey="scrollToModal"/> | ||
<click selector="{{ModalConfirmationSection.OkButton}}" stepKey="ClickOkButton"/> | ||
<waitForElementVisible selector="{{StorefrontMessagesSection.success}}" stepKey="waitForSuccessMessage"/> | ||
</actionGroup> | ||
</actionGroups> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
<?php | ||
/** | ||
* Copyright © Magento, Inc. All rights reserved. | ||
* See COPYING.txt for license details. | ||
*/ | ||
declare(strict_types=1); | ||
|
||
namespace Magento\Customer\Model\Validator; | ||
|
||
use Magento\Customer\Model\Customer; | ||
use Magento\Framework\Validator\AbstractValidator; | ||
|
||
/** | ||
* Customer name fields validator. | ||
*/ | ||
class Name extends AbstractValidator | ||
{ | ||
private const PATTERN_NAME = '/(?:[\p{L}\p{M}\,\-\_\.\'\s\d]){1,255}+/u'; | ||
|
||
/** | ||
* Validate name fields. | ||
* | ||
* @param Customer $customer | ||
* @return bool | ||
*/ | ||
public function isValid($customer) | ||
{ | ||
if (!$this->isValidName($customer->getFirstname())) { | ||
parent::_addMessages([['firstname' => 'First Name is not valid!']]); | ||
} | ||
|
||
if (!$this->isValidName($customer->getLastname())) { | ||
parent::_addMessages([['lastname' => 'Last Name is not valid!']]); | ||
} | ||
|
||
if (!$this->isValidName($customer->getMiddlename())) { | ||
parent::_addMessages([['middlename' => 'Middle Name is not valid!']]); | ||
} | ||
|
||
return count($this->_messages) == 0; | ||
} | ||
|
||
/** | ||
* Check if name field is valid. | ||
* | ||
* @param string|null $nameValue | ||
* @return bool | ||
*/ | ||
private function isValidName($nameValue) | ||
{ | ||
if ($nameValue != null) { | ||
if (preg_match(self::PATTERN_NAME, $nameValue, $matches)) { | ||
return $matches[0] == $nameValue; | ||
} | ||
} | ||
|
||
return true; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.