12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Customer\Test\Unit\Block\Account;
- use Magento\Customer\Model\AccountManagement;
- /**
- * Test class for \Magento\Customer\Block\Account\Resetpassword
- */
- class ResetpasswordTest extends \PHPUnit\Framework\TestCase
- {
- /**
- * @var \Magento\Framework\App\Config\ScopeConfigInterface | \PHPUnit_Framework_MockObject_MockObject
- */
- protected $scopeConfigMock;
- /**
- * @var \Magento\Customer\Block\Account\Resetpassword
- */
- protected $block;
- /**
- * Init mocks for tests
- * @return void
- */
- public function setUp()
- {
- $this->scopeConfigMock = $this->createPartialMock(\Magento\Framework\App\Config::class, ['getValue']);
- /** @var \Magento\Framework\View\Element\Template\Context | \PHPUnit_Framework_MockObject_MockObject $context */
- $context = $this->createMock(\Magento\Framework\View\Element\Template\Context::class);
- $context->expects($this->any())
- ->method('getScopeConfig')
- ->willReturn($this->scopeConfigMock);
- $objectManager = new \Magento\Framework\TestFramework\Unit\Helper\ObjectManager($this);
- $this->block = $objectManager->getObject(
- \Magento\Customer\Block\Account\Resetpassword::class,
- ['context' => $context]
- );
- }
- /**
- * @return void
- */
- public function testGetMinimumPasswordLength()
- {
- $minimumPasswordLength = '8';
- $this->scopeConfigMock->expects($this->once())
- ->method('getValue')
- ->with(AccountManagement::XML_PATH_MINIMUM_PASSWORD_LENGTH)
- ->willReturn($minimumPasswordLength);
- $this->assertEquals($minimumPasswordLength, $this->block->getMinimumPasswordLength());
- }
- /**
- * @return void
- */
- public function testGetRequiredCharacterClassesNumber()
- {
- $requiredCharacterClassesNumber = '4';
- $this->scopeConfigMock->expects($this->once())
- ->method('getValue')
- ->with(AccountManagement::XML_PATH_REQUIRED_CHARACTER_CLASSES_NUMBER)
- ->willReturn($requiredCharacterClassesNumber);
- $this->assertEquals($requiredCharacterClassesNumber, $this->block->getRequiredCharacterClassesNumber());
- }
- }
|