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/setup/src/Magento/Setup/Test/Unit/Module/I18n/Dictionary/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /home/corals/old/setup/src/Magento/Setup/Test/Unit/Module/I18n/Dictionary/GeneratorTest.php
<?php
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */
declare(strict_types=1);

namespace Magento\Setup\Test\Unit\Module\I18n\Dictionary;

use Magento\Framework\TestFramework\Unit\Helper\ObjectManager;
use Magento\Setup\Module\I18n\Dictionary\Generator;
use Magento\Setup\Module\I18n\Dictionary\Options\Resolver;
use Magento\Setup\Module\I18n\Dictionary\Options\ResolverFactory;
use Magento\Setup\Module\I18n\Dictionary\Phrase;
use Magento\Setup\Module\I18n\Dictionary\WriterInterface;
use Magento\Setup\Module\I18n\Factory;
use Magento\Setup\Module\I18n\Parser\Contextual;
use Magento\Setup\Module\I18n\Parser\Parser;
use PHPUnit\Framework\MockObject\MockObject;
use PHPUnit\Framework\TestCase;

class GeneratorTest extends TestCase
{
    /**
     * @var Parser|MockObject
     */
    protected $parserMock;

    /**
     * @var Contextual|MockObject
     */
    protected $contextualParserMock;

    /**
     * @var Factory|MockObject
     */
    protected $factoryMock;

    /**
     * @var WriterInterface|MockObject
     */
    protected $writerMock;

    /**
     * @var Generator
     */
    protected $generator;

    /**
     * @var ResolverFactory|MockObject
     */
    protected $optionsResolverFactory;

    /**
     * @inheritdoc
     */
    protected function setUp(): void
    {
        $this->parserMock = $this->createMock(Parser::class);
        $this->contextualParserMock = $this->createMock(Contextual::class);
        $this->writerMock = $this->getMockForAbstractClass(WriterInterface::class);
        $this->factoryMock = $this->createMock(Factory::class);
        $this->factoryMock->expects($this->any())
            ->method('createDictionaryWriter')
            ->willReturn($this->writerMock);

        $this->optionsResolverFactory =
            $this->createMock(ResolverFactory::class);

        $objectManagerHelper = new ObjectManager($this);
        $this->generator = $objectManagerHelper->getObject(
            Generator::class,
            [
                'parser' => $this->parserMock,
                'contextualParser' => $this->contextualParserMock,
                'factory' => $this->factoryMock,
                'optionsResolver' => $this->optionsResolverFactory
            ]
        );
    }

    /**
     * @return void
     */
    public function testCreatingDictionaryWriter(): void
    {
        $outputFilename = 'test';

        $phrase = $this->createMock(Phrase::class);
        $this->factoryMock->expects($this->once())
            ->method('createDictionaryWriter')
            ->with($outputFilename)->willReturnSelf();
        $this->parserMock->expects($this->any())->method('getPhrases')->willReturn([$phrase]);
        $options = [];
        $optionResolver = $this->createMock(Resolver::class);
        $optionResolver->expects($this->once())
            ->method('getOptions')
            ->willReturn($options);
        $this->optionsResolverFactory->expects($this->once())
            ->method('create')
            ->with('', false)
            ->willReturn($optionResolver);
        $this->generator->generate('', $outputFilename);
        $property = new \ReflectionProperty($this->generator, 'writer');
        $property->setAccessible(true);
        $this->assertNull($property->getValue($this->generator));
    }

    /**
     * @return void
     */
    public function testUsingRightParserWhileWithoutContextParsing(): void
    {
        $baseDir = 'right_parser';
        $outputFilename = 'file.csv';
        $filesOptions = ['file1', 'file2'];
        $optionResolver =
            $this->createMock(Resolver::class);
        $optionResolver->expects($this->once())
            ->method('getOptions')
            ->willReturn($filesOptions);

        $this->factoryMock->expects($this->once())
            ->method('createDictionaryWriter')
            ->with($outputFilename)->willReturnSelf();

        $this->optionsResolverFactory->expects($this->once())
            ->method('create')
            ->with($baseDir, false)
            ->willReturn($optionResolver);
        $this->parserMock->expects($this->once())->method('parse')->with($filesOptions);
        $phrase = $this->createMock(Phrase::class);
        $this->parserMock->expects($this->once())->method('getPhrases')->willReturn([$phrase]);
        $this->generator->generate($baseDir, $outputFilename);
    }

    /**
     * @return void
     */
    public function testUsingRightParserWhileWithContextParsing(): void
    {
        $baseDir = 'right_parser2';
        $outputFilename = 'file.csv';
        $filesOptions = ['file1', 'file2'];
        $optionResolver =
            $this->createMock(Resolver::class);
        $optionResolver->expects($this->once())
            ->method('getOptions')
            ->willReturn($filesOptions);
        $this->optionsResolverFactory->expects($this->once())
            ->method('create')
            ->with($baseDir, true)
            ->willReturn($optionResolver);

        $this->contextualParserMock->expects($this->once())->method('parse')->with($filesOptions);
        $phrase = $this->createMock(Phrase::class);
        $this->contextualParserMock->expects($this->once())->method('getPhrases')->willReturn([$phrase]);

        $this->factoryMock->expects($this->once())
            ->method('createDictionaryWriter')
            ->with($outputFilename)->willReturnSelf();

        $this->generator->generate($baseDir, $outputFilename, true);
    }

    /**
     * @return void
     */
    public function testWritingPhrases(): void
    {
        $baseDir = 'WritingPhrases';
        $filesOptions = ['file1', 'file2'];
        $optionResolver =
            $this->createMock(Resolver::class);
        $optionResolver->expects($this->once())
            ->method('getOptions')
            ->willReturn($filesOptions);
        $this->optionsResolverFactory->expects($this->once())
            ->method('create')
            ->with($baseDir, false)
            ->willReturn($optionResolver);

        $phrases = [
            $this->createMock(Phrase::class),
            $this->createMock(Phrase::class),
        ];

        $this->parserMock->expects($this->once())->method('getPhrases')->willReturn($phrases);
        $this->writerMock
            ->method('write')
            ->withConsecutive([$phrases[0]], [$phrases[1]]);

        $this->generator->generate($baseDir, 'file.csv');
    }

    /**
     * @return void
     */
    public function testGenerateWithNoPhrases(): void
    {
        $this->expectException('UnexpectedValueException');
        $this->expectExceptionMessage('No phrases found in the specified dictionary file.');
        $baseDir = 'no_phrases';
        $outputFilename = 'no_file.csv';
        $filesOptions = ['file1', 'file2'];
        $optionResolver =
            $this->createMock(Resolver::class);
        $optionResolver->expects($this->once())
            ->method('getOptions')
            ->willReturn($filesOptions);
        $this->optionsResolverFactory->expects($this->once())
            ->method('create')
            ->with($baseDir, true)
            ->willReturn($optionResolver);

        $this->contextualParserMock->expects($this->once())->method('parse')->with($filesOptions);
        $this->contextualParserMock->expects($this->once())->method('getPhrases')->willReturn([]);
        $this->generator->generate($baseDir, $outputFilename, true);
    }
}

Spamworldpro Mini