![]() 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-import-export/Test/Unit/Model/Export/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ declare(strict_types=1); namespace Magento\ImportExport\Test\Unit\Model\Export; use Magento\Framework\Config\CacheInterface; use Magento\Framework\Serialize\SerializerInterface; use Magento\ImportExport\Model\Export\Config; use Magento\ImportExport\Model\Export\Config\Reader; use PHPUnit\Framework\MockObject\MockObject; use PHPUnit\Framework\TestCase; class ConfigTest extends TestCase { /** * @var Reader|MockObject */ private $readerMock; /** * @var CacheInterface|MockObject */ private $cacheMock; /** * @var SerializerInterface|MockObject */ private $serializerMock; /** * @var string */ private $cacheId = 'some_id'; /** * @var Config */ private $model; protected function setUp(): void { $this->readerMock = $this->createMock(Reader::class); $this->cacheMock = $this->getMockForAbstractClass(CacheInterface::class); $this->serializerMock = $this->getMockForAbstractClass(SerializerInterface::class); } /** * @param array $value * @param null|string $expected * @dataProvider getEntitiesDataProvider */ public function testGetEntities($value, $expected) { $this->cacheMock->expects( $this->any() )->method( 'load' )->with( $this->cacheId )->willReturn( false ); $this->readerMock->expects($this->any())->method('read')->willReturn($value); $this->model = new Config( $this->readerMock, $this->cacheMock, $this->cacheId, $this->serializerMock ); $this->assertEquals($expected, $this->model->getEntities('entities')); } /** * @return array */ public function getEntitiesDataProvider() { return [ 'entities_key_exist' => [['entities' => 'value'], 'value'], 'return_default_value' => [['key_one' => 'value'], null] ]; } /** * @param array $configData * @param string $entity * @param string[] $expectedResult * @dataProvider getEntityTypesDataProvider */ public function testGetEntityTypes($configData, $entity, $expectedResult) { $this->cacheMock->expects( $this->any() )->method( 'load' )->with( $this->cacheId )->willReturn( false ); $this->readerMock->expects($this->any())->method('read')->willReturn($configData); $this->model = new Config( $this->readerMock, $this->cacheMock, $this->cacheId, $this->serializerMock ); $this->assertEquals($expectedResult, $this->model->getEntityTypes($entity)); } /** * @return array */ public function getEntityTypesDataProvider() { return [ 'valid type' => [ [ 'entities' => [ 'catalog_product' => [ 'types' => ['configurable', 'simple'], ], ], ], 'catalog_product', ['configurable', 'simple'], ], 'not existing entity' => [ [ 'entities' => [ 'catalog_product' => [ 'types' => ['configurable', 'simple'], ], ], ], 'not existing entity', [], ], ]; } /** * @param array $value * @param null|string $expected * @dataProvider getFileFormatsDataProvider */ public function testGetFileFormats($value, $expected) { $this->cacheMock->expects( $this->any() )->method( 'load' )->with( $this->cacheId )->willReturn( false ); $this->readerMock->expects($this->any())->method('read')->willReturn($value); $this->model = new Config( $this->readerMock, $this->cacheMock, $this->cacheId, $this->serializerMock ); $this->assertEquals($expected, $this->model->getFileFormats('fileFormats')); } /** * @return array */ public function getFileFormatsDataProvider() { return [ 'fileFormats_key_exist' => [['fileFormats' => 'value'], 'value'], 'return_default_value' => [['key_one' => 'value'], null] ]; } }