123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Cms\Test\Unit\Controller\Adminhtml\Page;
- use Magento\Cms\Controller\Adminhtml\Page\InlineEdit;
- /**
- * @SuppressWarnings(PHPMD.CouplingBetweenObjects)
- */
- class InlineEditTest extends \PHPUnit\Framework\TestCase
- {
- /** @var \Magento\Framework\App\RequestInterface|\PHPUnit_Framework_MockObject_MockObject */
- protected $request;
- /** @var \Magento\Framework\Message\ManagerInterface|\PHPUnit_Framework_MockObject_MockObject */
- protected $messageManager;
- /** @var \Magento\Framework\Message\MessageInterface|\PHPUnit_Framework_MockObject_MockObject */
- protected $message;
- /** @var \Magento\Framework\Message\Collection|\PHPUnit_Framework_MockObject_MockObject */
- protected $messageCollection;
- /** @var \Magento\Cms\Model\Page|\PHPUnit_Framework_MockObject_MockObject */
- protected $cmsPage;
- /** @var \Magento\Backend\App\Action\Context|\PHPUnit_Framework_MockObject_MockObject */
- protected $context;
- /** @var \Magento\Cms\Controller\Adminhtml\Page\PostDataProcessor|\PHPUnit_Framework_MockObject_MockObject */
- protected $dataProcessor;
- /** @var \Magento\Cms\Api\PageRepositoryInterface|\PHPUnit_Framework_MockObject_MockObject */
- protected $pageRepository;
- /** @var \Magento\Framework\Controller\Result\JsonFactory|\PHPUnit_Framework_MockObject_MockObject */
- protected $jsonFactory;
- /** @var \Magento\Framework\Controller\Result\Json|\PHPUnit_Framework_MockObject_MockObject */
- protected $resultJson;
- /** @var InlineEdit */
- protected $controller;
- protected function setUp()
- {
- $helper = new \Magento\Framework\TestFramework\Unit\Helper\ObjectManager($this);
- $this->request = $this->getMockForAbstractClass(\Magento\Framework\App\RequestInterface::class);
- $this->messageManager = $this->getMockForAbstractClass(\Magento\Framework\Message\ManagerInterface::class);
- $this->messageCollection = $this->createMock(\Magento\Framework\Message\Collection::class);
- $this->message = $this->getMockForAbstractClass(\Magento\Framework\Message\MessageInterface::class);
- $this->cmsPage = $this->createMock(\Magento\Cms\Model\Page::class);
- $this->context = $helper->getObject(
- \Magento\Backend\App\Action\Context::class,
- [
- 'request' => $this->request,
- 'messageManager' => $this->messageManager
- ]
- );
- $this->dataProcessor = $this->createMock(\Magento\Cms\Controller\Adminhtml\Page\PostDataProcessor::class);
- $this->pageRepository = $this->getMockForAbstractClass(\Magento\Cms\Api\PageRepositoryInterface::class);
- $this->resultJson = $this->createMock(\Magento\Framework\Controller\Result\Json::class);
- $this->jsonFactory = $this->createPartialMock(
- \Magento\Framework\Controller\Result\JsonFactory::class,
- ['create']
- );
- $this->controller = new InlineEdit(
- $this->context,
- $this->dataProcessor,
- $this->pageRepository,
- $this->jsonFactory
- );
- }
- public function prepareMocksForTestExecute()
- {
- $postData = [
- 1 => [
- 'title' => '404 Not Found',
- 'identifier' => 'no-route',
- 'custom_theme' => '1',
- 'custom_root_template' => '2'
- ]
- ];
- $this->request->expects($this->any())
- ->method('getParam')
- ->willReturnMap(
- [
- ['isAjax', null, true],
- ['items', [], $postData]
- ]
- );
- $this->pageRepository->expects($this->once())
- ->method('getById')
- ->with(1)
- ->willReturn($this->cmsPage);
- $this->dataProcessor->expects($this->once())
- ->method('filter')
- ->with($postData[1])
- ->willReturnArgument(0);
- $this->dataProcessor->expects($this->once())
- ->method('validate')
- ->with($postData[1])
- ->willReturn(false);
- $this->messageManager->expects($this->once())
- ->method('getMessages')
- ->with(true)
- ->willReturn($this->messageCollection);
- $this->messageCollection
- ->expects($this->once())
- ->method('getItems')
- ->willReturn([$this->message]);
- $this->message->expects($this->once())
- ->method('getText')
- ->willReturn('Error message');
- $this->cmsPage->expects($this->atLeastOnce())
- ->method('getId')
- ->willReturn('1');
- $this->cmsPage->expects($this->atLeastOnce())
- ->method('getData')
- ->willReturn([
- 'layout' => '1column',
- 'identifier' => 'test-identifier'
- ]);
- $this->cmsPage->expects($this->once())
- ->method('setData')
- ->with([
- 'layout' => '1column',
- 'title' => '404 Not Found',
- 'identifier' => 'no-route',
- 'custom_theme' => '1',
- 'custom_root_template' => '2'
- ]);
- $this->jsonFactory->expects($this->once())
- ->method('create')
- ->willReturn($this->resultJson);
- }
- public function testExecuteWithLocalizedException()
- {
- $this->prepareMocksForTestExecute();
- $this->pageRepository->expects($this->once())
- ->method('save')
- ->with($this->cmsPage)
- ->willThrowException(new \Magento\Framework\Exception\LocalizedException(__('LocalizedException')));
- $this->resultJson->expects($this->once())
- ->method('setData')
- ->with([
- 'messages' => [
- '[Page ID: 1] Error message',
- '[Page ID: 1] LocalizedException'
- ],
- 'error' => true
- ])
- ->willReturnSelf();
- $this->assertSame($this->resultJson, $this->controller->execute());
- }
- public function testExecuteWithRuntimeException()
- {
- $this->prepareMocksForTestExecute();
- $this->pageRepository->expects($this->once())
- ->method('save')
- ->with($this->cmsPage)
- ->willThrowException(new \RuntimeException(__('RuntimeException')));
- $this->resultJson->expects($this->once())
- ->method('setData')
- ->with([
- 'messages' => [
- '[Page ID: 1] Error message',
- '[Page ID: 1] RuntimeException'
- ],
- 'error' => true
- ])
- ->willReturnSelf();
- $this->assertSame($this->resultJson, $this->controller->execute());
- }
- public function testExecuteWithException()
- {
- $this->prepareMocksForTestExecute();
- $this->pageRepository->expects($this->once())
- ->method('save')
- ->with($this->cmsPage)
- ->willThrowException(new \Exception(__('Exception')));
- $this->resultJson->expects($this->once())
- ->method('setData')
- ->with([
- 'messages' => [
- '[Page ID: 1] Error message',
- '[Page ID: 1] Something went wrong while saving the page.'
- ],
- 'error' => true
- ])
- ->willReturnSelf();
- $this->assertSame($this->resultJson, $this->controller->execute());
- }
- public function testExecuteWithoutData()
- {
- $this->jsonFactory->expects($this->once())
- ->method('create')
- ->willReturn($this->resultJson);
- $this->request->expects($this->any())
- ->method('getParam')
- ->willReturnMap(
- [
- ['items', [], []],
- ['isAjax', null, true]
- ]
- );
- $this->resultJson->expects($this->once())
- ->method('setData')
- ->with([
- 'messages' => [
- 'Please correct the data sent.'
- ],
- 'error' => true
- ])
- ->willReturnSelf();
- $this->assertSame($this->resultJson, $this->controller->execute());
- }
- public function testSetCmsPageData()
- {
- $extendedPageData = [
- 'page_id' => '2',
- 'title' => 'Home Page',
- 'page_layout' => '1column',
- 'identifier' => 'home',
- 'content_heading' => 'Home Page',
- 'content' => 'CMS homepage content goes here.',
- 'is_active' => '1',
- 'sort_order' => '1',
- 'custom_theme' => '3',
- 'store_id' => ['0']
- ];
- $pageData = [
- 'page_id' => '2',
- 'title' => 'Home Page',
- 'page_layout' => '1column',
- 'identifier' => 'home',
- 'is_active' => '1',
- 'custom_theme' => '3',
- ];
- $getData = [
- 'page_id' => '2',
- 'title' => 'Home Page',
- 'page_layout' => '1column',
- 'identifier' => 'home',
- 'content_heading' => 'Home Page',
- 'content' => 'CMS homepage content goes here.',
- 'is_active' => '1',
- 'sort_order' => '1',
- 'custom_theme' => '3',
- 'custom_root_template' => '1column',
- 'store_id' => ['0']
- ];
- $mergedData = [
- 'page_id' => '2',
- 'title' => 'Home Page',
- 'page_layout' => '1column',
- 'identifier' => 'home',
- 'content_heading' => 'Home Page',
- 'content' => 'CMS homepage content goes here.',
- 'is_active' => '1',
- 'sort_order' => '1',
- 'custom_theme' => '3',
- 'custom_root_template' => '1column',
- 'store_id' => ['0']
- ];
- $this->cmsPage->expects($this->once())->method('getData')->willReturn($getData);
- $this->cmsPage->expects($this->once())->method('setData')->with($mergedData)->willReturnSelf();
- $this->assertSame(
- $this->controller,
- $this->controller->setCmsPageData($this->cmsPage, $extendedPageData, $pageData)
- );
- }
- }
|