| Current Path : /home/rtorresani/www/vendor/magento/module-cms/Test/Unit/Controller/Adminhtml/Page/ |
| Current File : //home/rtorresani/www/vendor/magento/module-cms/Test/Unit/Controller/Adminhtml/Page/DeleteTest.php |
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
declare(strict_types=1);
namespace Magento\Cms\Test\Unit\Controller\Adminhtml\Page;
use Magento\Backend\App\Action\Context;
use Magento\Backend\Model\View\Result\Redirect;
use Magento\Backend\Model\View\Result\RedirectFactory;
use Magento\Cms\Controller\Adminhtml\Page\Delete;
use Magento\Cms\Model\Page;
use Magento\Framework\App\RequestInterface;
use Magento\Framework\Message\ManagerInterface;
use Magento\Framework\TestFramework\Unit\Helper\ObjectManager;
use PHPUnit\Framework\MockObject\MockObject;
use PHPUnit\Framework\TestCase;
class DeleteTest extends TestCase
{
/** @var Delete */
protected $deleteController;
/** @var ObjectManager */
protected $objectManager;
/** @var Context|MockObject */
protected $contextMock;
/** @var RedirectFactory|MockObject */
protected $resultRedirectFactoryMock;
/** @var Redirect|MockObject */
protected $resultRedirectMock;
/** @var ManagerInterface|MockObject */
protected $messageManagerMock;
/** @var RequestInterface|MockObject */
protected $requestMock;
/** @var \Magento\Framework\ObjectManager\ObjectManager|MockObject */
protected $objectManagerMock;
/** @var Page|MockObject $pageMock */
protected $pageMock;
/** @var \Magento\Framework\Event\ManagerInterface|MockObject */
protected $eventManagerMock;
/** @var string */
protected $title = 'This is the title of the page.';
/** @var int */
protected $pageId = 1;
protected function setUp(): void
{
$this->objectManager = new ObjectManager($this);
$this->messageManagerMock = $this->getMockForAbstractClass(ManagerInterface::class);
$this->requestMock = $this->getMockForAbstractClass(
RequestInterface::class,
[],
'',
false,
true,
true,
['getParam']
);
$this->pageMock = $this->getMockBuilder(Page::class)
->disableOriginalConstructor()
->setMethods(['load', 'delete', 'getTitle'])
->getMock();
$this->objectManagerMock = $this->getMockBuilder(\Magento\Framework\ObjectManager\ObjectManager::class)
->disableOriginalConstructor()
->setMethods(['create'])
->getMock();
$this->resultRedirectMock = $this->getMockBuilder(Redirect::class)
->setMethods(['setPath'])
->disableOriginalConstructor()
->getMock();
$this->resultRedirectFactoryMock = $this->getMockBuilder(
RedirectFactory::class
)->disableOriginalConstructor()
->setMethods(['create'])
->getMock();
$this->resultRedirectFactoryMock->expects($this->atLeastOnce())
->method('create')
->willReturn($this->resultRedirectMock);
$this->eventManagerMock = $this->createMock(\Magento\Framework\Event\ManagerInterface::class);
$this->contextMock = $this->createMock(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('getEventManager')->willReturn($this->eventManagerMock);
$this->contextMock->expects($this->any())
->method('getResultRedirectFactory')
->willReturn($this->resultRedirectFactoryMock);
$this->deleteController = $this->objectManager->getObject(
Delete::class,
[
'context' => $this->contextMock,
]
);
}
public function testDeleteAction()
{
$this->requestMock->expects($this->once())
->method('getParam')
->willReturn($this->pageId);
$this->objectManagerMock->expects($this->once())
->method('create')
->with(Page::class)
->willReturn($this->pageMock);
$this->pageMock->expects($this->once())
->method('load')
->with($this->pageId);
$this->pageMock->expects($this->once())
->method('getTitle')
->willReturn($this->title);
$this->pageMock->expects($this->once())
->method('delete');
$this->messageManagerMock->expects($this->once())
->method('addSuccessMessage')
->with(__('The page has been deleted.'));
$this->messageManagerMock->expects($this->never())
->method('addErrorMessage');
$this->eventManagerMock->expects($this->once())
->method('dispatch')
->with(
'adminhtml_cmspage_on_delete',
['title' => $this->title, 'status' => 'success']
);
$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 page 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 delete the page';
$this->requestMock->expects($this->once())
->method('getParam')
->willReturn($this->pageId);
$this->objectManagerMock->expects($this->once())
->method('create')
->with(Page::class)
->willReturn($this->pageMock);
$this->pageMock->expects($this->once())
->method('load')
->with($this->pageId);
$this->pageMock->expects($this->once())
->method('getTitle')
->willReturn($this->title);
$this->pageMock->expects($this->once())
->method('delete')
->willThrowException(new \Exception($errorMsg));
$this->eventManagerMock->expects($this->once())
->method('dispatch')
->with(
'adminhtml_cmspage_on_delete',
['title' => $this->title, 'status' => 'fail']
);
$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', ['page_id' => $this->pageId])
->willReturnSelf();
$this->assertSame($this->resultRedirectMock, $this->deleteController->execute());
}
}