![]() 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/framework/Css/Test/Unit/PreProcessor/File/Collector/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ declare(strict_types=1); namespace Magento\Framework\Css\Test\Unit\PreProcessor\File\Collector; use Magento\Framework\App\Filesystem\DirectoryList; use Magento\Framework\Component\ComponentRegistrar; use Magento\Framework\Component\ComponentRegistrarInterface; use Magento\Framework\Css\PreProcessor\File\Collector\Library; use Magento\Framework\Css\PreProcessor\File\FileList\Collator; use Magento\Framework\Filesystem; use Magento\Framework\Filesystem\Directory\ReadFactory; use Magento\Framework\Filesystem\Directory\ReadInterface; use Magento\Framework\Filesystem\DriverPool; use Magento\Framework\View\Design\ThemeInterface; use Magento\Framework\View\File\FileList; use Magento\Framework\View\File\FileList\Factory; use PHPUnit\Framework\MockObject\MockObject; use PHPUnit\Framework\TestCase; /** * Tests Library * * @SuppressWarnings(PHPMD.CouplingBetweenObjects) */ class LibraryTest extends TestCase { /** * @var Library */ private $library; /** * @var Factory|MockObject */ protected $fileListFactoryMock; /** * @var Filesystem|MockObject */ protected $fileSystemMock; /** * @var \Magento\Framework\View\File\Factory|MockObject */ protected $fileFactoryMock; /** * @var FileList|MockObject */ protected $fileListMock; /** * @var ReadInterface|MockObject */ protected $libraryDirectoryMock; /** * @var ReadFactory|MockObject */ private $readFactoryMock; /** * Component registry * * @var ComponentRegistrarInterface|MockObject */ private $componentRegistrarMock; /** * @var ThemeInterface|MockObject */ protected $themeMock; /** * Setup tests * @return void */ protected function setup(): void { $this->fileListFactoryMock = $this->getMockBuilder(Factory::class) ->disableOriginalConstructor() ->getMock(); $this->fileListMock = $this->getMockBuilder(FileList::class) ->disableOriginalConstructor() ->getMock(); $this->fileListFactoryMock->expects($this->any()) ->method('create') ->with(Collator::class) ->willReturn($this->fileListMock); $this->readFactoryMock = $this->getMockBuilder(ReadFactory::class) ->disableOriginalConstructor() ->getMock(); $this->componentRegistrarMock = $this->getMockBuilder( ComponentRegistrarInterface::class )->disableOriginalConstructor() ->getMock(); $this->fileSystemMock = $this->getMockBuilder(Filesystem::class) ->disableOriginalConstructor() ->getMock(); $this->libraryDirectoryMock = $this->getMockBuilder( ReadInterface::class )->getMock(); $this->fileSystemMock->expects($this->any())->method('getDirectoryRead') ->willReturnMap( [ [DirectoryList::LIB_WEB, DriverPool::FILE, $this->libraryDirectoryMock], ] ); $this->fileFactoryMock = $this->getMockBuilder(\Magento\Framework\View\File\Factory::class) ->disableOriginalConstructor() ->getMock(); $this->themeMock = $this->getMockBuilder(ThemeInterface::class) ->getMock(); $this->library = new Library( $this->fileListFactoryMock, $this->fileSystemMock, $this->fileFactoryMock, $this->readFactoryMock, $this->componentRegistrarMock ); } public function testGetFilesEmpty() { $this->libraryDirectoryMock->expects($this->any())->method('search')->willReturn([]); $this->themeMock->expects($this->any())->method('getInheritedThemes')->willReturn([]); // Verify search/replace are never called if no inheritedThemes $this->readFactoryMock->expects($this->never()) ->method('create'); $this->componentRegistrarMock->expects($this->never()) ->method('getPath'); $this->library->getFiles($this->themeMock, '*'); } /** * * @dataProvider getFilesDataProvider * * @param array $libraryFiles Files in lib directory * @param array $themeFiles Files in theme * * * @return void */ public function testGetFiles($libraryFiles, $themeFiles) { $this->fileListMock->expects($this->any())->method('getAll')->willReturn(['returnedFile']); $this->libraryDirectoryMock->expects($this->any())->method('search')->willReturn($libraryFiles); $this->libraryDirectoryMock->expects($this->any())->method('getAbsolutePath')->willReturnCallback( function ($file) { return '/opt/Magento/lib/' . $file; } ); $themePath = '/var/Magento/ATheme'; $subPath = '*'; $readerMock = $this->getMockBuilder(ReadInterface::class) ->getMock(); $this->readFactoryMock->expects($this->once()) ->method('create') ->willReturn($readerMock); $this->componentRegistrarMock->expects($this->once()) ->method('getPath') ->with(ComponentRegistrar::THEME, $themePath) ->willReturn(['/path/to/theme']); $readerMock->expects($this->once()) ->method('search') ->willReturn($themeFiles); $inheritedThemeMock = $this->getMockBuilder(ThemeInterface::class) ->getMock(); $inheritedThemeMock->expects($this->any())->method('getFullPath')->willReturn($themePath); $this->themeMock->expects($this->any())->method('getInheritedThemes') ->willReturn([$inheritedThemeMock]); $this->assertEquals(['returnedFile'], $this->library->getFiles($this->themeMock, $subPath)); } /** * Provides test data for testGetFiles() * * @return array */ public function getFilesDataProvider() { return [ 'all files' => [['file1'], ['file2']], 'no library' => [[], ['file1', 'file2']], ]; } }