![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/old/vendor/magento/module-customer/Test/Unit/Block/Form/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ declare(strict_types=1); namespace Magento\Customer\Test\Unit\Block\Form; use Magento\Customer\Block\Form\Edit; use Magento\Customer\Model\AccountManagement; 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\Form\Edit */ class EditTest extends TestCase { /** * @var ScopeConfigInterface */ protected $scopeConfigMock; /** * @var Edit */ protected $block; /** * Init mocks for tests * @return void */ protected function setUp(): void { $this->scopeConfigMock = $this->getMockBuilder(ScopeConfigInterface::class) ->disableOriginalConstructor() ->getMockForAbstractClass(); /** @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( Edit::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()); } }