![]() 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-catalog/Test/Unit/Model/Config/Source/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ declare(strict_types=1); namespace Magento\Catalog\Test\Unit\Model\Config\Source; use Magento\Catalog\Model\ResourceModel\Category; use Magento\Catalog\Model\ResourceModel\Category\Collection; use Magento\Catalog\Model\ResourceModel\Category\CollectionFactory; use Magento\Framework\TestFramework\Unit\Helper\ObjectManager; use PHPUnit\Framework\MockObject\MockObject; use PHPUnit\Framework\TestCase; class CategoryTest extends TestCase { /** * @var \Magento\Catalog\Model\Config\Source\Category */ private $model; /** * @var Collection|MockObject */ private $categoryCollection; /** * @var \Magento\Catalog\Model\ResourceModel\Category|MockObject */ private $category; protected function setUp(): void { $this->categoryCollection = $this->getMockBuilder( Collection::class ) ->disableOriginalConstructor() ->getMock(); $this->category = $this->getMockBuilder(Category::class) ->setMethods(['getName', 'getId']) ->disableOriginalConstructor() ->getMock(); /** * @var CollectionFactory|MockObject $categoryCollectionFactory */ $categoryCollectionFactory = $this->getMockBuilder(CollectionFactory::class) ->setMethods(['create']) ->disableOriginalConstructor() ->getMock(); $categoryCollectionFactory->expects($this->any())->method('create')->willReturn( $this->categoryCollection ); $helper = new ObjectManager($this); $this->model = $helper->getObject( \Magento\Catalog\Model\Config\Source\Category::class, ['categoryCollectionFactory' => $categoryCollectionFactory] ); } public function testToOptionArray() { $expect = [ ['label' => __('-- Please Select a Category --'), 'value' => ''], ['label' => 'name', 'value' => 3], ]; $this->categoryCollection->expects($this->once())->method('addAttributeToSelect')->with( 'name' )->willReturn($this->categoryCollection); $this->categoryCollection->expects($this->once())->method('addRootLevelFilter')->willReturn( $this->categoryCollection ); $this->categoryCollection->expects($this->once())->method('load'); $this->categoryCollection->expects($this->any())->method('getIterator')->willReturn( new \ArrayIterator([$this->category]) ); $this->category->expects($this->once())->method('getName')->willReturn('name'); $this->category->expects($this->once())->method('getId')->willReturn(3); $this->assertEquals($expect, $this->model->toOptionArray()); } }