![]() 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-sales/Test/Unit/Block/Adminhtml/Items/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ declare(strict_types=1); namespace Magento\Sales\Test\Unit\Block\Adminhtml\Items; use Magento\Backend\Block\Template\Context; use Magento\Framework\TestFramework\Unit\Helper\ObjectManager; use Magento\Framework\View\Element\AbstractBlock; use Magento\Framework\View\Layout; use Magento\Sales\Block\Adminhtml\Items\AbstractItems; use PHPUnit\Framework\TestCase; class AbstractTest extends TestCase { /** * @var ObjectManager */ protected $_objectManager; /** * @inheirtDoc */ protected function setUp(): void { $this->_objectManager = new ObjectManager($this); } /** * @return void */ public function testGetItemRenderer(): void { $renderer = $this->createMock(AbstractBlock::class); $layout = $this->createPartialMock( Layout::class, ['getChildName', 'getBlock', 'getGroupChildNames'] ); $layout->method('getChildName') ->with(null, 'some-type') ->willReturn('some-block-name'); $layout->method('getBlock') ->with('some-block-name') ->willReturn($renderer); /** @var AbstractItems $block */ $block = $this->_objectManager->getObject( AbstractItems::class, [ 'context' => $this->_objectManager->getObject( Context::class, ['layout' => $layout] ) ] ); $this->assertSame($renderer, $block->getItemRenderer('some-type')); } /** * @return void */ public function testGetItemRendererThrowsExceptionForNonexistentRenderer(): void { $this->expectException('RuntimeException'); $this->expectExceptionMessage('Renderer for type "some-type" does not exist.'); $renderer = $this->createMock(\stdClass::class); $layout = $this->createPartialMock( Layout::class, ['getChildName', 'getBlock'] ); $layout->method('getChildName') ->with(null, 'some-type') ->willReturn('some-block-name'); $layout->method('getBlock') ->with('some-block-name') ->willReturn($renderer); /** @var AbstractItems $block */ $block = $this->_objectManager->getObject( AbstractItems::class, [ 'context' => $this->_objectManager->getObject( Context::class, ['layout' => $layout] ) ] ); $block->getItemRenderer('some-type'); } }