123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\AsynchronousOperations\Test\Unit\Controller\Adminhtml\Bulk;
- /**
- * @SuppressWarnings(PHPMD.CouplingBetweenObjects)
- */
- class DetailsTest extends \PHPUnit\Framework\TestCase
- {
- /**
- * @var \PHPUnit_Framework_MockObject_MockObject
- */
- private $viewMock;
-
- /**
- * @var \PHPUnit_Framework_MockObject_MockObject
- */
- private $requestMock;
- /**
- * @var \Magento\AsynchronousOperations\Controller\Adminhtml\Bulk\Details
- */
- private $model;
- /**
- * @var \PHPUnit_Framework_MockObject_MockObject
- */
- private $resultFactoryMock;
- protected function setUp()
- {
- $objectManager = new \Magento\Framework\TestFramework\Unit\Helper\ObjectManager($this);
- $this->viewMock = $this->createMock(\Magento\Framework\App\ViewInterface::class);
- $this->requestMock = $this->createMock(\Magento\Framework\App\RequestInterface::class);
- $this->resultFactoryMock = $this->createMock(\Magento\Framework\View\Result\PageFactory::class);
- $this->model = $objectManager->getObject(
- \Magento\AsynchronousOperations\Controller\Adminhtml\Bulk\Details::class,
- [
- 'request' => $this->requestMock,
- 'resultPageFactory' => $this->resultFactoryMock,
- 'view' => $this->viewMock,
- ]
- );
- }
- public function testExecute()
- {
- $id = '42';
- $parameterName = 'uuid';
- $itemId = 'Magento_AsynchronousOperations::system_magento_logging_bulk_operations';
- $layoutMock = $this->createMock(\Magento\Framework\View\LayoutInterface::class);
- $blockMock = $this->createPartialMock(
- \Magento\Framework\View\Element\BlockInterface::class,
- ['setActive', 'getMenuModel', 'toHtml']
- );
- $menuModelMock = $this->createMock(\Magento\Backend\Model\Menu::class);
- $this->viewMock->expects($this->once())->method('getLayout')->willReturn($layoutMock);
- $layoutMock->expects($this->once())->method('getBlock')->willReturn($blockMock);
- $blockMock->expects($this->once())->method('setActive')->with($itemId);
- $blockMock->expects($this->once())->method('getMenuModel')->willReturn($menuModelMock);
- $menuModelMock->expects($this->once())->method('getParentItems')->willReturn([]);
- $pageMock = $this->createMock(\Magento\Framework\View\Result\Page::class);
- $pageConfigMock = $this->createMock(\Magento\Framework\View\Page\Config::class);
- $titleMock = $this->createMock(\Magento\Framework\View\Page\Title::class);
- $this->resultFactoryMock->expects($this->once())->method('create')->willReturn($pageMock);
- $this->requestMock->expects($this->once())->method('getParam')->with($parameterName)->willReturn($id);
- $pageMock->expects($this->once())->method('getConfig')->willReturn($pageConfigMock);
- $pageConfigMock->expects($this->once())->method('getTitle')->willReturn($titleMock);
- $titleMock->expects($this->once())->method('prepend')->with($this->stringContains($id));
- $pageMock->expects($this->once())->method('initLayout');
- $this->assertEquals($pageMock, $this->model->execute());
- }
- }
|