![]() 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/cartforge.co/vendor/magento/framework/View/Test/Unit/Element/Html/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ declare(strict_types=1); namespace Magento\Framework\View\Test\Unit\Element\Html; use Magento\Framework\TestFramework\Unit\Helper\ObjectManager; use Magento\Framework\View\Element\AbstractBlock; use Magento\Framework\View\Element\Html\Link; use Magento\Framework\View\Element\Html\Links; use Magento\Framework\View\Element\Template\Context; use PHPUnit\Framework\MockObject\MockObject; use PHPUnit\Framework\TestCase; class LinksTest extends TestCase { /** * @var ObjectManager|MockObject */ protected $objectManagerHelper; /** * @var Links|MockObject */ protected $block; /** * @var Context|MockObject */ protected $context; /** * @inheritdoc */ protected function setUp(): void { $this->objectManagerHelper = new ObjectManager($this); /** @var Context $context */ $this->context = $this->objectManagerHelper->getObject(Context::class); $this->block = new Links($this->context); } /** * @return void */ public function testGetLinks(): void { $blocks = [0 => 'blocks']; $name = 'test_name'; $this->context->getLayout() ->expects($this->once()) ->method('getChildBlocks') ->with($name) ->willReturn($blocks); $this->block->setNameInLayout($name); $this->assertEquals($blocks, $this->block->getLinks()); } /** * @return void */ public function testSetActive(): void { $link = $this->createMock(Link::class); $link ->method('__call') ->withConsecutive(['getPath', []], ['setIsHighlighted', [true]]) ->willReturnOnConsecutiveCalls('test/path'); $name = 'test_name'; $this->context->getLayout() ->expects($this->once()) ->method('getChildBlocks') ->with($name) ->willReturn([$link]); $this->block->setNameInLayout($name); $this->block->setActive('test/path'); } /** * @return void */ public function testRenderLink(): void { $blockHtml = 'test'; $name = 'test_name'; $this->context->getLayout() ->expects($this->once()) ->method('renderElement') ->with($name) ->willReturn($blockHtml); /** @var AbstractBlock $link */ $link = $this->getMockBuilder(AbstractBlock::class) ->disableOriginalConstructor() ->getMock(); $link ->expects($this->once()) ->method('getNameInLayout') ->willReturn($name); $this->assertEquals($blockHtml, $this->block->renderLink($link)); } }