| Current Path : /home/rtorresani/www/vendor/magento/module-cms/Test/Unit/Model/Page/Source/ |
| Current File : //home/rtorresani/www/vendor/magento/module-cms/Test/Unit/Model/Page/Source/IsActiveTest.php |
<?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;
use Magento\Cms\Model\Page\Source\IsActive;
use Magento\Framework\TestFramework\Unit\Helper\ObjectManager;
use PHPUnit\Framework\MockObject\MockObject;
use PHPUnit\Framework\TestCase;
class IsActiveTest extends TestCase
{
/**
* @var Page|MockObject
*/
protected $cmsPageMock;
/**
* @var ObjectManager
*/
protected $objectManagerHelper;
/**
* @var Page\Source\IsActive
*/
protected $object;
/**
* {@inheritdoc}
*/
protected function setUp(): void
{
$this->objectManagerHelper = new ObjectManager($this);
$this->cmsPageMock = $this->getMockBuilder(Page::class)
->disableOriginalConstructor()
->setMethods(['getAvailableStatuses'])
->getMock();
$this->object = $this->objectManagerHelper->getObject($this->getSourceClassName(), [
'cmsPage' => $this->cmsPageMock,
]);
}
/**
* @return string
*/
protected function getSourceClassName()
{
return IsActive::class;
}
/**
* @param array $availableStatuses
* @param array $expected
* @return void
* @dataProvider getAvailableStatusesDataProvider
*/
public function testToOptionArray(array $availableStatuses, array $expected)
{
$this->cmsPageMock->expects($this->once())
->method('getAvailableStatuses')
->willReturn($availableStatuses);
$this->assertSame($expected, $this->object->toOptionArray());
}
/**
* @return array
*/
public function getAvailableStatusesDataProvider()
{
return [
[
[],
[],
],
[
['testStatus' => 'testValue'],
[['label' => 'testValue', 'value' => 'testStatus']],
],
];
}
}