| Current Path : /home/rtorresani/www/vendor/magento/module-customer/Test/Unit/Block/Account/ |
| Current File : //home/rtorresani/www/vendor/magento/module-customer/Test/Unit/Block/Account/ResetpasswordTest.php |
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
declare(strict_types=1);
namespace Magento\Customer\Test\Unit\Block\Account;
use Magento\Customer\Block\Account\Resetpassword;
use Magento\Customer\Model\AccountManagement;
use Magento\Framework\App\Config;
use Magento\Framework\App\Config\ScopeConfigInterface;
use Magento\Framework\TestFramework\Unit\Helper\ObjectManager;
use Magento\Framework\View\Element\Template\Context;
use PHPUnit\Framework\MockObject\MockObject;
use PHPUnit\Framework\TestCase;
/**
* Test class for \Magento\Customer\Block\Account\Resetpassword
*/
class ResetpasswordTest extends TestCase
{
/**
* @var ScopeConfigInterface|MockObject
*/
protected $scopeConfigMock;
/**
* @var Resetpassword
*/
protected $block;
/**
* Init mocks for tests
* @return void
*/
protected function setUp(): void
{
$this->scopeConfigMock = $this->createPartialMock(Config::class, ['getValue']);
/** @var Context|MockObject $context */
$context = $this->createMock(Context::class);
$context->expects($this->any())
->method('getScopeConfig')
->willReturn($this->scopeConfigMock);
$objectManager = new ObjectManager($this);
$this->block = $objectManager->getObject(
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());
}
}