![]() 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/cartforge.co/vendor/magento/module-cms/Test/Unit/Model/Page/Source/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ declare(strict_types=1); namespace Magento\Cms\Test\Unit\Model\Page\Source; use Magento\Cms\Model\Page\Source\PageLayout; use Magento\Framework\TestFramework\Unit\Helper\ObjectManager; use Magento\Framework\View\Model\PageLayout\Config\BuilderInterface; use Magento\Framework\View\PageLayout\Config; use PHPUnit\Framework\MockObject\MockObject; use PHPUnit\Framework\TestCase; class PageLayoutTest extends TestCase { /** * @var BuilderInterface|MockObject */ protected $builderMock; /** * @var Config|MockObject */ protected $pageLayoutConfigMock; /** * @var ObjectManager */ protected $objectManagerHelper; /** * @var PageLayout */ protected $object; /** * {@inheritdoc} */ protected function setUp(): void { $this->objectManagerHelper = new ObjectManager($this); $this->builderMock = $this->getMockBuilder( BuilderInterface::class )->disableOriginalConstructor() ->setMethods(['getPageLayoutsConfig']) ->getMock(); $this->pageLayoutConfigMock = $this->getMockBuilder(Config::class) ->disableOriginalConstructor() ->setMethods(['getOptions']) ->getMock(); $this->builderMock->expects($this->any()) ->method('getPageLayoutsConfig') ->willReturn($this->pageLayoutConfigMock); $this->object = $this->objectManagerHelper->getObject($this->getSourceClassName(), [ 'pageLayoutBuilder' => $this->builderMock, ]); } /** * @return string */ protected function getSourceClassName() { return PageLayout::class; } /** * @param array $options * @param array $expected * @return void * @dataProvider getOptionsDataProvider */ public function testToOptionArray(array $options, array $expected) { $this->pageLayoutConfigMock->expects($this->once()) ->method('getOptions') ->willReturn($options); $this->assertSame($expected, $this->object->toOptionArray()); } /** * @return array */ public function getOptionsDataProvider() { return [ [ [], [], ], [ ['testStatus' => 'testValue'], [['label' => 'testValue', 'value' => 'testStatus']], ], ]; } }