123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Sales\Test\Unit\Controller\Adminhtml;
- use Magento\Framework\TestFramework\Unit\Helper\ObjectManager as ObjectManagerHelper;
- class PdfDocumentsMassActionTest extends \PHPUnit\Framework\TestCase
- {
- /**
- * @var \Magento\Sales\Controller\Adminhtml\Order\PdfDocumentsMassAction
- */
- private $controller;
- /**
- * @var \Magento\Backend\Model\View\Result\Redirect|\PHPUnit_Framework_MockObject_MockObject
- */
- private $resultRedirect;
- /**
- * @var \Magento\Framework\Message\Manager|\PHPUnit_Framework_MockObject_MockObject
- */
- private $messageManager;
- /**
- * @var \PHPUnit_Framework_MockObject_MockObject
- */
- private $orderCollectionFactoryMock;
- /**
- * @var \PHPUnit_Framework_MockObject_MockObject
- */
- private $orderCollectionMock;
- /**
- * @var \PHPUnit_Framework_MockObject_MockObject
- */
- private $filterMock;
- /**
- * Test setup
- */
- protected function setUp()
- {
- $objectManagerHelper = new ObjectManagerHelper($this);
- $this->messageManager = $this->createPartialMock(
- \Magento\Framework\Message\Manager::class,
- ['addSuccessMessage', 'addErrorMessage']
- );
- $this->orderCollectionMock = $this->createMock(\Magento\Sales\Model\ResourceModel\Order\Collection::class);
- $this->filterMock = $this->createMock(\Magento\Ui\Component\MassAction\Filter::class);
- $this->orderCollectionFactoryMock = $this->createPartialMock(
- \Magento\Sales\Model\ResourceModel\Order\CollectionFactory::class,
- ['create']
- );
- $this->orderCollectionFactoryMock
- ->expects($this->once())
- ->method('create')
- ->willReturn($this->orderCollectionMock);
- $this->resultRedirect = $this->createMock(\Magento\Backend\Model\View\Result\Redirect::class);
- $resultRedirectFactory = $this->createMock(\Magento\Framework\Controller\ResultFactory::class);
- $resultRedirectFactory->expects($this->any())->method('create')->willReturn($this->resultRedirect);
- $this->controller = $objectManagerHelper->getObject(
- \Magento\Sales\Controller\Adminhtml\Order\Pdfinvoices::class,
- [
- 'filter' => $this->filterMock,
- 'resultFactory' => $resultRedirectFactory,
- 'messageManager' => $this->messageManager
- ]
- );
- $objectManagerHelper
- ->setBackwardCompatibleProperty(
- $this->controller,
- 'orderCollectionFactory',
- $this->orderCollectionFactoryMock
- );
- }
- /**
- * @throws \Magento\Framework\Exception\LocalizedException
- */
- public function testExecute()
- {
- $exception = new \Exception();
- $this->filterMock
- ->expects($this->once())
- ->method('getCollection')
- ->with($this->orderCollectionMock)
- ->willThrowException($exception);
- $this->messageManager->expects($this->once())->method('addErrorMessage');
- $this->resultRedirect->expects($this->once())->method('setPath')->willReturnSelf();
- $this->controller->execute($exception);
- }
- }
|