![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/old/vendor/magento/module-cms/Test/Unit/Block/Adminhtml/Page/Widget/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ declare(strict_types=1); namespace Magento\Cms\Test\Unit\Block\Adminhtml\Page\Widget; use Magento\Backend\Block\Template\Context; use Magento\Cms\Block\Adminhtml\Page\Widget\Chooser; use Magento\Cms\Model\Page; use Magento\Cms\Model\PageFactory; use Magento\Framework\Data\Form\Element\AbstractElement; use Magento\Framework\Escaper; use Magento\Framework\Math\Random; use Magento\Framework\TestFramework\Unit\Helper\ObjectManager; use Magento\Framework\UrlInterface; use Magento\Framework\View\Element\BlockInterface; use Magento\Framework\View\LayoutInterface; use PHPUnit\Framework\MockObject\MockObject; use PHPUnit\Framework\TestCase; /** * @covers \Magento\Cms\Block\Adminhtml\Page\Widget\Chooser * @SuppressWarnings(PHPMD.CouplingBetweenObjects) */ class ChooserTest extends TestCase { /** * @var Chooser */ protected $this; /** * @var Context */ protected $context; /** * @var Random|MockObject */ protected $mathRandomMock; /** * @var UrlInterface|MockObject */ protected $urlBuilderMock; /** * @var Escaper|MockObject */ protected $escaper; /** * @var Page|MockObject */ protected $cmsPageMock; /** * @var LayoutInterface|MockObject */ protected $layoutMock; /** * @var PageFactory|MockObject */ protected $pageFactoryMock; /** * @var AbstractElement|MockObject */ protected $elementMock; /** * @var BlockInterface|MockObject */ protected $chooserMock; protected function setUp(): void { $this->layoutMock = $this->getMockBuilder(LayoutInterface::class) ->disableOriginalConstructor() ->getMockForAbstractClass(); $this->mathRandomMock = $this->getMockBuilder(Random::class) ->disableOriginalConstructor() ->getMock(); $this->urlBuilderMock = $this->getMockBuilder(UrlInterface::class) ->disableOriginalConstructor() ->getMockForAbstractClass(); $this->escaper = $this->getMockBuilder(Escaper::class) ->disableOriginalConstructor() ->setMethods( [ 'escapeHtml', ] ) ->getMock(); $this->pageFactoryMock = $this->getMockBuilder(PageFactory::class) ->setMethods( [ 'create', ] ) ->disableOriginalConstructor() ->getMock(); $this->elementMock = $this->getMockBuilder(AbstractElement::class) ->disableOriginalConstructor() ->setMethods( [ 'getId', 'getValue', 'setData', ] ) ->getMock(); $this->cmsPageMock = $this->getMockBuilder(Page::class) ->disableOriginalConstructor() ->setMethods( [ 'getTitle', 'load', 'getId', ] ) ->getMock(); $this->chooserMock = $this->getMockBuilder(BlockInterface::class) ->disableOriginalConstructor() ->setMethods( [ 'setElement', 'setConfig', 'setFieldsetId', 'setSourceUrl', 'setUniqId', 'setLabel', 'toHtml', ] ) ->getMockForAbstractClass(); $objectManager = new ObjectManager($this); $this->context = $objectManager->getObject( Context::class, [ 'layout' => $this->layoutMock, 'mathRandom' => $this->mathRandomMock, 'urlBuilder' => $this->urlBuilderMock, 'escaper' => $this->escaper, ] ); $this->this = $objectManager->getObject( Chooser::class, [ 'context' => $this->context, 'pageFactory' => $this->pageFactoryMock ] ); } /** * @covers \Magento\Cms\Block\Adminhtml\Block\Widget\Chooser::prepareElementHtml * * @param string $elementValue * @param integer|null $cmsPageId * * @dataProvider prepareElementHtmlDataProvider */ public function testPrepareElementHtml($elementValue, $cmsPageId) { //$elementValue = 12345; //$cmsPageId = 1; $elementId = 1; $uniqId = '126hj4h3j73hk7b347jhkl37gb34'; $sourceUrl = 'cms/page_widget/chooser/126hj4h3j73hk7b347jhkl37gb34'; $config = ['key1' => 'value1']; $fieldsetId = 2; $html = 'some html'; $title = 'some "><img src=y onerror=prompt(document.domain)>; title'; $titleEscaped = 'some "><img src=y onerror=prompt(document.domain)>; title'; $this->this->setConfig($config); $this->this->setFieldsetId($fieldsetId); $this->elementMock->expects($this->atLeastOnce()) ->method('getId') ->willReturn($elementId); $this->mathRandomMock->expects($this->atLeastOnce()) ->method('getUniqueHash') ->with($elementId) ->willReturn($uniqId); $this->urlBuilderMock->expects($this->atLeastOnce()) ->method('getUrl') ->with('cms/page_widget/chooser', ['uniq_id' => $uniqId]) ->willReturn($sourceUrl); $this->layoutMock->expects($this->atLeastOnce()) ->method('createBlock') ->with(\Magento\Widget\Block\Adminhtml\Widget\Chooser::class) ->willReturn($this->chooserMock); $this->chooserMock->expects($this->atLeastOnce()) ->method('setElement') ->with($this->elementMock) ->willReturnSelf(); $this->chooserMock->expects($this->atLeastOnce()) ->method('setConfig') ->with($config) ->willReturnSelf(); $this->chooserMock->expects($this->atLeastOnce()) ->method('setFieldsetId') ->with($fieldsetId) ->willReturnSelf(); $this->chooserMock->expects($this->atLeastOnce()) ->method('setSourceUrl') ->with($sourceUrl) ->willReturnSelf(); $this->chooserMock->expects($this->atLeastOnce()) ->method('setUniqId') ->with($uniqId) ->willReturnSelf(); $this->elementMock->expects($this->atLeastOnce()) ->method('getValue') ->willReturn($elementValue); $this->pageFactoryMock->expects($this->any()) ->method('create') ->willReturn($this->cmsPageMock); $this->cmsPageMock->expects($this->any()) ->method('load') ->with((int)$elementValue) ->willReturnSelf(); $this->cmsPageMock->expects($this->any()) ->method('getId') ->willReturn($cmsPageId); $this->cmsPageMock->expects($this->any()) ->method('getTitle') ->willReturn($title); $this->chooserMock->expects($this->atLeastOnce()) ->method('toHtml') ->willReturn($html); if (!empty($elementValue) && !empty($cmsPageId)) { $this->escaper->expects(($this->atLeastOnce())) ->method('escapeHtml') ->willReturn($titleEscaped); $this->chooserMock->expects($this->atLeastOnce()) ->method('setLabel') ->with($titleEscaped) ->willReturnSelf(); } $this->elementMock->expects($this->atLeastOnce()) ->method('setData') ->with('after_element_html', $html) ->willReturnSelf(); $this->assertEquals($this->elementMock, $this->this->prepareElementHtml($this->elementMock)); } /** * @return array */ public function prepareElementHtmlDataProvider() { return [ 'elementValue NOT EMPTY, modelBlockId NOT EMPTY' => [ 'elementValue' => 'some value', 'cmsPageId' => 1, ], 'elementValue NOT EMPTY, modelBlockId IS EMPTY' => [ 'elementValue' => 'some value', 'cmsPageId' => null, ], 'elementValue IS EMPTY, modelBlockId NEVER REACHED' => [ 'elementValue' => '', 'cmsPageId' => 1, ] ]; } /** * @covers \Magento\Cms\Block\Adminhtml\Page\Widget\Chooser::getGridUrl */ public function testGetGridUrl() { $url = 'some url'; $this->urlBuilderMock->expects($this->atLeastOnce()) ->method('getUrl') ->with('cms/page_widget/chooser', ['_current' => true]) ->willReturn($url); $this->assertEquals($url, $this->this->getGridUrl()); } }