123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Cms\Test\Unit\Controller\Adminhtml\Block;
- /**
- * @SuppressWarnings(PHPMD.CouplingBetweenObjects)
- */
- class DeleteTest extends \PHPUnit\Framework\TestCase
- {
- /**
- * @var \Magento\Cms\Controller\Adminhtml\Block\Delete
- */
- protected $deleteController;
- /**
- * @var \Magento\Framework\TestFramework\Unit\Helper\ObjectManager
- */
- protected $objectManager;
- /**
- * @var \Magento\Backend\App\Action\Context|\PHPUnit_Framework_MockObject_MockObject
- */
- protected $contextMock;
- /**
- * @var \Magento\Backend\Model\View\Result\RedirectFactory|\PHPUnit_Framework_MockObject_MockObject
- */
- protected $resultRedirectFactoryMock;
- /**
- * @var \Magento\Backend\Model\View\Result\Redirect|\PHPUnit_Framework_MockObject_MockObject
- */
- protected $resultRedirectMock;
- /**
- * @var \Magento\Framework\Message\ManagerInterface|\PHPUnit_Framework_MockObject_MockObject
- */
- protected $messageManagerMock;
- /**
- * @var \Magento\Framework\App\RequestInterface|\PHPUnit_Framework_MockObject_MockObject
- */
- protected $requestMock;
- /**
- * @var \Magento\Framework\ObjectManager\ObjectManager|\PHPUnit_Framework_MockObject_MockObject
- */
- protected $objectManagerMock;
- /**
- * @var \Magento\Cms\Model\Block|\PHPUnit_Framework_MockObject_MockObject $blockMock
- */
- protected $blockMock;
- /**
- * @var int
- */
- protected $blockId = 1;
- protected function setUp()
- {
- $this->objectManager = new \Magento\Framework\TestFramework\Unit\Helper\ObjectManager($this);
- $this->messageManagerMock = $this->createMock(\Magento\Framework\Message\ManagerInterface::class);
- $this->requestMock = $this->getMockForAbstractClass(
- \Magento\Framework\App\RequestInterface::class,
- [],
- '',
- false,
- true,
- true,
- ['getParam']
- );
- $this->blockMock = $this->getMockBuilder(\Magento\Cms\Model\Block::class)
- ->disableOriginalConstructor()
- ->setMethods(['load', 'delete'])
- ->getMock();
- $this->objectManagerMock = $this->getMockBuilder(\Magento\Framework\ObjectManager\ObjectManager::class)
- ->disableOriginalConstructor()
- ->setMethods(['create'])
- ->getMock();
- $this->resultRedirectMock = $this->getMockBuilder(\Magento\Backend\Model\View\Result\Redirect::class)
- ->setMethods(['setPath'])
- ->disableOriginalConstructor()
- ->getMock();
- $this->resultRedirectFactoryMock = $this->getMockBuilder(
- \Magento\Backend\Model\View\Result\RedirectFactory::class
- )
- ->disableOriginalConstructor()
- ->setMethods(['create'])
- ->getMock();
- $this->resultRedirectFactoryMock->expects($this->atLeastOnce())
- ->method('create')
- ->willReturn($this->resultRedirectMock);
- $this->contextMock = $this->createMock(\Magento\Backend\App\Action\Context::class);
- $this->contextMock->expects($this->any())->method('getRequest')->willReturn($this->requestMock);
- $this->contextMock->expects($this->any())->method('getMessageManager')->willReturn($this->messageManagerMock);
- $this->contextMock->expects($this->any())->method('getObjectManager')->willReturn($this->objectManagerMock);
- $this->contextMock->expects($this->any())
- ->method('getResultRedirectFactory')
- ->willReturn($this->resultRedirectFactoryMock);
- $this->deleteController = $this->objectManager->getObject(
- \Magento\Cms\Controller\Adminhtml\Block\Delete::class,
- [
- 'context' => $this->contextMock,
- ]
- );
- }
- public function testDeleteAction()
- {
- $this->requestMock->expects($this->once())
- ->method('getParam')
- ->willReturn($this->blockId);
- $this->objectManagerMock->expects($this->once())
- ->method('create')
- ->with(\Magento\Cms\Model\Block::class)
- ->willReturn($this->blockMock);
- $this->blockMock->expects($this->once())
- ->method('load')
- ->with($this->blockId);
- $this->messageManagerMock->expects($this->once())
- ->method('addSuccessMessage')
- ->with(__('You deleted the block.'));
- $this->messageManagerMock->expects($this->never())
- ->method('addErrorMessage');
- $this->resultRedirectMock->expects($this->once())
- ->method('setPath')
- ->with('*/*/')
- ->willReturnSelf();
- $this->assertSame($this->resultRedirectMock, $this->deleteController->execute());
- }
- public function testDeleteActionNoId()
- {
- $this->requestMock->expects($this->once())
- ->method('getParam')
- ->willReturn(null);
- $this->messageManagerMock->expects($this->once())
- ->method('addErrorMessage')
- ->with(__('We can\'t find a block to delete.'));
- $this->messageManagerMock->expects($this->never())
- ->method('addSuccessMessage');
- $this->resultRedirectMock->expects($this->once())
- ->method('setPath')
- ->with('*/*/')
- ->willReturnSelf();
- $this->assertSame($this->resultRedirectMock, $this->deleteController->execute());
- }
- public function testDeleteActionThrowsException()
- {
- $errorMsg = 'Can\'t create the block';
- $this->requestMock->expects($this->once())
- ->method('getParam')
- ->willReturn($this->blockId);
- $this->objectManagerMock->expects($this->once())
- ->method('create')
- ->with(\Magento\Cms\Model\Block::class)
- ->willThrowException(new \Exception(__($errorMsg)));
- $this->messageManagerMock->expects($this->once())
- ->method('addErrorMessage')
- ->with($errorMsg);
- $this->messageManagerMock->expects($this->never())
- ->method('addSuccessMessage');
- $this->resultRedirectMock->expects($this->once())
- ->method('setPath')
- ->with('*/*/edit', ['block_id' => $this->blockId])
- ->willReturnSelf();
- $this->assertSame($this->resultRedirectMock, $this->deleteController->execute());
- }
- }
|