123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Customer\Test\Unit\Model\Customer;
- use Magento\Framework\TestFramework\Unit\Helper\ObjectManager as ObjectManagerHelper;
- class CredentialsValidatorTest extends \PHPUnit\Framework\TestCase
- {
- /**
- * @var ObjectManagerHelper
- */
- private $objectManagerHelper;
- /**
- * @var \Magento\Customer\Model\Customer\CredentialsValidator
- */
- private $object;
- protected function setUp()
- {
- $this->objectManagerHelper = new ObjectManagerHelper($this);
- $this->object = $this->objectManagerHelper
- ->getObject(\Magento\Customer\Model\Customer\CredentialsValidator::class);
- }
- /**
- * @expectedException \Magento\Framework\Exception\InputException
- */
- public function testCheckPasswordDifferentFromEmail()
- {
- $email = 'test1@example.com';
- $password = strtoupper($email); // for case-insensitive check
- $this->object->checkPasswordDifferentFromEmail($email, $password);
- $this->expectExceptionMessage(
- "The password can't be the same as the email address. Create a new password and try again."
- );
- }
- }
|