Spamworldpro Mini Shell
Spamworldpro


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-theme/Test/Unit/Model/Theme/Image/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /home/corals/old/vendor/magento/module-theme/Test/Unit/Model/Theme/Image/PathTest.php
<?php
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */
declare(strict_types=1);

/**
 * Test of image path model
 */
namespace Magento\Theme\Test\Unit\Model\Theme\Image;

use Magento\Framework\App\Filesystem\DirectoryList;
use Magento\Framework\Filesystem;
use Magento\Framework\Filesystem\Directory\ReadInterface;
use Magento\Framework\View\Asset\Repository;
use Magento\Framework\View\Design\Theme\Image\PathInterface;
use Magento\Store\Model\Store;
use Magento\Store\Model\StoreManager;
use Magento\Theme\Model\Theme;
use Magento\Theme\Model\Theme\Image\Path;

use PHPUnit\Framework\MockObject\MockObject;
use PHPUnit\Framework\TestCase;

class PathTest extends TestCase
{
    /**
     * @var Path|MockObject
     */
    protected $model;

    /**
     * @var MockObject
     */
    protected $filesystem;

    /**
     * @var MockObject|Repository
     */
    protected $_assetRepo;

    /**
     * @var MockObject|StoreManager
     */
    protected $_storeManager;

    /**
     * @var MockObject|ReadInterface
     */
    protected $mediaDirectory;

    /**
     * @inheritDoc
     */
    protected function setUp(): void
    {
        $this->filesystem = $this->createMock(Filesystem::class);
        $this->mediaDirectory = $this->getMockForAbstractClass(ReadInterface::class);
        $this->_assetRepo = $this->createMock(Repository::class);
        $this->_storeManager = $this->createMock(StoreManager::class);

        $this->mediaDirectory->expects($this->any())
            ->method('getRelativePath')
            ->with('theme/origin')
            ->willReturn('theme/origin');

        $this->filesystem->expects($this->any())->method('getDirectoryRead')
            ->with(DirectoryList::MEDIA)
            ->willReturn($this->mediaDirectory);

        $this->model = new Path(
            $this->filesystem,
            $this->_assetRepo,
            $this->_storeManager
        );
    }

    public function testGetPreviewImageUrl()
    {
        /** @var Theme|\PHPUnit\Framework\MockObject\MockObject $theme */
        $theme = $this->getMockBuilder(Theme::class)
            ->addMethods(['getPreviewImage'])
            ->onlyMethods(['isPhysical', '__wakeup'])
            ->disableOriginalConstructor()
            ->getMock();
        $theme->expects($this->any())
            ->method('getPreviewImage')
            ->willReturn('image.png');

        $store = $this->createMock(Store::class);
        $store->expects($this->any())->method('getBaseUrl')->willReturn('http://localhost/');
        $this->_storeManager->expects($this->any())->method('getStore')->willReturn($store);
        $this->assertEquals('http://localhost/theme/preview/image.png', $this->model->getPreviewImageUrl($theme));
    }

    public function testGetPreviewImagePath()
    {
        $previewImage = 'preview.jpg';
        $expectedPath = 'theme/preview/preview.jpg';

        /** @var Theme|\PHPUnit\Framework\MockObject\MockObject $theme */
        $theme = $this->getMockBuilder(Theme::class)
            ->addMethods(['getPreviewImage'])
            ->onlyMethods(['isPhysical', '__wakeup'])
            ->disableOriginalConstructor()
            ->getMock();

        $this->mediaDirectory->expects($this->once())
            ->method('getAbsolutePath')
            ->with(PathInterface::PREVIEW_DIRECTORY_PATH . '/' . $previewImage)
            ->willReturn($expectedPath);

        $theme->expects($this->once())
            ->method('getPreviewImage')
            ->willReturn($previewImage);

        $result = $this->model->getPreviewImagePath($theme);

        $this->assertEquals($expectedPath, $result);
    }

    /**
     * @covers Magento\Theme\Model\Theme\Image\Path::getPreviewImageDefaultUrl
     */
    public function testDefaultPreviewImageUrlGetter()
    {
        $this->_assetRepo->expects($this->once())->method('getUrl')
            ->with(Path::DEFAULT_PREVIEW_IMAGE);
        $this->model->getPreviewImageDefaultUrl();
    }

    /**
     * @covers \Magento\Theme\Model\Theme\Image\Path::getImagePreviewDirectory
     */
    public function testImagePreviewDirectoryGetter()
    {
        $this->mediaDirectory->expects($this->any())
            ->method('getAbsolutePath')
            ->with(PathInterface::PREVIEW_DIRECTORY_PATH)
            ->willReturn('/theme/preview');
        $this->assertEquals(
            '/theme/preview',
            $this->model->getImagePreviewDirectory()
        );
    }

    /**
     * @covers \Magento\Theme\Model\Theme\Image\Path::getTemporaryDirectory
     */
    public function testTemporaryDirectoryGetter()
    {
        $this->mediaDirectory->expects($this->any())
            ->method('getAbsolutePath')
            ->willReturn('/foo/theme/origin');
        $this->assertEquals(
            '/foo/theme/origin',
            $this->model->getTemporaryDirectory()
        );
    }
}

Spamworldpro Mini