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/framework/Css/Test/Unit/PreProcessor/Instruction/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : //home/corals/old/vendor/magento/framework/Css/Test/Unit/PreProcessor/Instruction/ImportTest.php
<?php
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */
declare(strict_types=1);

namespace Magento\Framework\Css\Test\Unit\PreProcessor\Instruction;

use Magento\Framework\Css\PreProcessor\FileGenerator\RelatedGenerator;
use Magento\Framework\Css\PreProcessor\Instruction\Import;
use Magento\Framework\View\Asset\ContextInterface;
use Magento\Framework\View\Asset\File;
use Magento\Framework\View\Asset\NotationResolver\Module;
use Magento\Framework\View\Asset\PreProcessor\Chain;
use PHPUnit\Framework\MockObject\MockObject;
use PHPUnit\Framework\TestCase;

class ImportTest extends TestCase
{
    /**
     * @var Module|MockObject
     */
    private $notationResolver;

    /**
     * @var File|MockObject
     */
    private $asset;

    /**
     * @var Import
     */
    private $object;

    /**
     * @var RelatedGenerator
     */
    private $relatedFileGeneratorMock;

    protected function setUp(): void
    {
        $this->notationResolver = $this->createMock(Module::class);
        $contextMock = $this->getMockForAbstractClass(
            ContextInterface::class,
            [],
            '',
            false
        );
        $contextMock->expects($this->any())->method('getPath')->willReturn('');
        $this->asset = $this->createMock(File::class);
        $this->asset->expects($this->any())->method('getContentType')->willReturn('css');
        $this->asset->expects($this->any())->method('getContext')->willReturn($contextMock);

        $this->relatedFileGeneratorMock = $this->getMockBuilder(RelatedGenerator::class)
            ->disableOriginalConstructor()
            ->getMock();

        $this->object = new Import($this->notationResolver, $this->relatedFileGeneratorMock);
    }

    /**
     * @param string $originalContent
     * @param string $foundPath
     * @param string $resolvedPath
     * @param string $expectedContent
     *
     * @dataProvider processDataProvider
     */
    public function testProcess($originalContent, $foundPath, $resolvedPath, $expectedContent)
    {
        $chain = new Chain(
            $this->asset,
            $originalContent,
            'less',
            'path'
        );
        $invoke =  $this->once();
        if (preg_match('/^(http:|https:|\/+)/', $foundPath)) {
            $invoke = $this->never();
        }
        $this->notationResolver->expects($invoke)
            ->method('convertModuleNotationToPath')
            ->with($this->asset, $foundPath)
            ->willReturn($resolvedPath);
        $this->object->process($chain);
        $this->assertEquals($expectedContent, $chain->getContent());
        $this->assertEquals('less', $chain->getContentType());
    }

    /**
     * @return array
     */
    public function processDataProvider()
    {
        return [
            'non-modular notation, no extension' => [
                '@import (type) \'some/file\' media;',
                'some/file.less',
                'some/file.less',
                '@import (type) \'some/file.less\' media;',
            ],
            'modular, with extension' => [
                '@import (type) "Magento_Module::something.css" media;',
                'Magento_Module::something.css',
                'Magento_Module/something.css',
                '@import (type) "Magento_Module/something.css" media;',
            ],
            'remote file import url()' => [
                '@import (type) url("http://example.com/css/some.css") media;',
                'http://example.com/css/some.css',
                null,
                '@import (type) url("http://example.com/css/some.css") media;',
            ],
            'invalid path' => [
                '@import (type) url("/example.com/css/some.css") media;',
                '/example.com/css/some.css',
                null,
                '@import (type) url("/example.com/css/some.css") media;',
            ],
            'modular, no extension' => [
                '@import (type) "Magento_Module::something" media;',
                'Magento_Module::something.less',
                'Magento_Module/something.less',
                '@import (type) "Magento_Module/something.less" media;',
            ],
            'no type' => [
                '@import "Magento_Module::something.css" media;',
                'Magento_Module::something.css',
                'Magento_Module/something.css',
                '@import "Magento_Module/something.css" media;',
            ],
            'no media' => [
                '@import (type) "Magento_Module::something.css";',
                'Magento_Module::something.css',
                'Magento_Module/something.css',
                '@import (type) "Magento_Module/something.css";',
            ],
            'with single line comment, replace' => [
                '@import (type) "some/file" media;' . PHP_EOL
                . '// @import (type) "unnecessary/file.css" media;',
                'some/file.less',
                'some/file.less',
                '@import (type) "some/file.less" media;' . PHP_EOL,
            ],
            'with single line comment, no replace' => [
                '@import (type) "some/file.less" media;' . PHP_EOL
                . '// @import (type) "unnecessary/file" media;',
                'some/file.less',
                'some/file.less',
                '@import (type) "some/file.less" media;' . PHP_EOL
                . '// @import (type) "unnecessary/file" media;',
            ],
            'with multi line comment' => [
                '@import (type) "some/file" media;' . PHP_EOL
                    . '/* @import (type) "unnecessary/file.css" media;' . PHP_EOL
                    . '@import (type) "another/unnecessary/file.css" media; */',
                'some/file.less',
                'some/file.less',
                '@import (type) "some/file.less" media;' . PHP_EOL,
            ],
        ];
    }

    public function testProcessNoImport()
    {
        $originalContent = 'color: #000000;';
        $expectedContent = 'color: #000000;';

        $chain = new Chain(
            $this->asset,
            $originalContent,
            'css',
            'path'
        );
        $this->notationResolver->expects($this->never())
            ->method('convertModuleNotationToPath');
        $this->object->process($chain);
        $this->assertEquals($expectedContent, $chain->getContent());
        $this->assertEquals('css', $chain->getContentType());
    }

    /**
     * @covers \Magento\Framework\Css\PreProcessor\Instruction\Import::resetRelatedFiles
     */
    public function testGetRelatedFiles()
    {
        $this->assertSame([], $this->object->getRelatedFiles());

        $this->notationResolver->expects($this->once())
            ->method('convertModuleNotationToPath')
            ->with($this->asset, 'Magento_Module::something.css')
            ->willReturn('Magento_Module/something.css');
        $chain = new Chain(
            $this->asset,
            '@import (type) "Magento_Module::something.css" media;',
            'css',
            'path'
        );
        $this->object->process($chain);
        $chain = new Chain(
            $this->asset,
            'color: #000000;',
            'css',
            'path'
        );
        $this->object->process($chain);

        $expected = [['Magento_Module::something.css', $this->asset]];
        $this->assertSame($expected, $this->object->getRelatedFiles());

        $this->object->resetRelatedFiles();
        $this->assertSame([], $this->object->getRelatedFiles());
    }
}

Spamworldpro Mini