![]() 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/Account/ |
<?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\AuthorizationLink; use Magento\Customer\Model\Url; use Magento\Framework\App\Http\Context; use Magento\Framework\TestFramework\Unit\Helper\ObjectManager; use PHPUnit\Framework\TestCase; /** * Test class for \Magento\Customer\Block\Account\AuthorizationLink */ class AuthorizationLinkTest extends TestCase { /** * @var ObjectManager */ protected $_objectManager; /** * \Magento\Framework\App\Http\Context */ protected $httpContext; /** * @var Url */ protected $_customerUrl; /** * @var AuthorizationLink */ protected $_block; protected function setUp(): void { $this->_objectManager = new ObjectManager($this); $this->httpContext = $this->getMockBuilder(Context::class) ->disableOriginalConstructor() ->setMethods(['getValue']) ->getMock(); $this->_customerUrl = $this->getMockBuilder(Url::class) ->disableOriginalConstructor() ->setMethods(['getLogoutUrl', 'getLoginUrl']) ->getMock(); $context = $this->_objectManager->getObject(\Magento\Framework\View\Element\Template\Context::class); $this->_block = $this->_objectManager->getObject( AuthorizationLink::class, [ 'context' => $context, 'httpContext' => $this->httpContext, 'customerUrl' => $this->_customerUrl, ] ); } public function testGetLabelLoggedIn() { $this->httpContext->expects($this->once()) ->method('getValue') ->willReturn(true); $this->assertEquals('Sign Out', $this->_block->getLabel()); } public function testGetLabelLoggedOut() { $this->httpContext->expects($this->once()) ->method('getValue') ->willReturn(false); $this->assertEquals('Sign In', $this->_block->getLabel()); } public function testGetHrefLoggedIn() { $this->httpContext->expects($this->once()) ->method('getValue') ->willReturn(true); $this->_customerUrl->expects($this->once())->method('getLogoutUrl')->willReturn('logout url'); $this->assertEquals('logout url', $this->_block->getHref()); } public function testGetHrefLoggedOut() { $this->httpContext->expects($this->once()) ->method('getValue') ->willReturn(false); $this->_customerUrl->expects($this->once())->method('getLoginUrl')->willReturn('login url'); $this->assertEquals('login url', $this->_block->getHref()); } }