![]() 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/module-backend/Test/Unit/Model/View/Result/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ declare(strict_types=1); namespace Magento\Backend\Test\Unit\Model\View\Result; use Magento\Backend\Block\Widget\Breadcrumbs; use Magento\Backend\Model\View\Result\Page; use Magento\Framework\TestFramework\Unit\Helper\ObjectManager as ObjectManagerHelper; use Magento\Framework\View\Element\Template\Context; use Magento\Framework\View\LayoutInterface; use PHPUnit\Framework\MockObject\MockObject; use PHPUnit\Framework\TestCase; class PageTest extends TestCase { /** * @var Page */ protected $resultPage; /** * @var Context */ protected $context; /** * @var \Magento\Framework\TestFramework\Unit\Helper\ObjectManager */ protected $objectManagerHelper; /** * @var LayoutInterface|MockObject */ protected $layoutMock; /** * @var Breadcrumbs|MockObject */ protected $breadcrumbsBlockMock; protected function setUp(): void { $this->layoutMock = $this->getMockBuilder(LayoutInterface::class) ->setMethods(['setGeneratorPool']) ->getMockForAbstractClass(); $this->breadcrumbsBlockMock = $this->getMockBuilder(Breadcrumbs::class) ->disableOriginalConstructor() ->getMock(); $this->objectManagerHelper = new ObjectManagerHelper($this); $this->context = $this->objectManagerHelper->getObject( Context::class, ['layout' => $this->layoutMock] ); $this->resultPage = $this->objectManagerHelper->getObject( Page::class, ['context' => $this->context] ); } public function testAddBreadcrumb() { $label = 'label'; $title = 'title'; $link = '/link'; $this->layoutMock->expects($this->once()) ->method('getBlock') ->with('breadcrumbs') ->willReturn($this->breadcrumbsBlockMock); $this->breadcrumbsBlockMock->expects($this->once()) ->method('addLink') ->with($label, $title, $link) ->willReturnSelf(); $this->assertSame($this->resultPage, $this->resultPage->addBreadcrumb($label, $title, $link)); } public function testAddBreadcrumbNoBlock() { $label = 'label'; $title = 'title'; $this->layoutMock->expects($this->once()) ->method('getBlock') ->with('breadcrumbs') ->willReturn(false); $this->breadcrumbsBlockMock->expects($this->never()) ->method('addLink'); $this->assertSame($this->resultPage, $this->resultPage->addBreadcrumb($label, $title)); } }