You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
57 lines
2.2 KiB
57 lines
2.2 KiB
<?php
|
|
|
|
/*
|
|
* This file is part of the Symfony package.
|
|
*
|
|
* (c) Fabien Potencier <fabien@symfony.com>
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace Symfony\Component\Translation\Tests\DependencyInjection;
|
|
|
|
use PHPUnit\Framework\TestCase;
|
|
use Symfony\Component\DependencyInjection\Argument\ServiceClosureArgument;
|
|
use Symfony\Component\DependencyInjection\ContainerBuilder;
|
|
use Symfony\Component\DependencyInjection\Definition;
|
|
use Symfony\Component\DependencyInjection\Reference;
|
|
use Symfony\Component\Translation\DependencyInjection\TranslatorPass;
|
|
|
|
class TranslationPassTest extends TestCase
|
|
{
|
|
public function testValidCollector()
|
|
{
|
|
$loader = (new Definition())
|
|
->addTag('translation.loader', ['alias' => 'xliff', 'legacy-alias' => 'xlf']);
|
|
|
|
$reader = new Definition();
|
|
|
|
$translator = (new Definition())
|
|
->setArguments([null, null, null, null]);
|
|
|
|
$container = new ContainerBuilder();
|
|
$container->setDefinition('translator.default', $translator);
|
|
$container->setDefinition('translation.reader', $reader);
|
|
$container->setDefinition('translation.xliff_loader', $loader);
|
|
|
|
$pass = new TranslatorPass('translator.default', 'translation.reader');
|
|
$pass->process($container);
|
|
|
|
$expectedReader = (new Definition())
|
|
->addMethodCall('addLoader', ['xliff', new Reference('translation.xliff_loader')])
|
|
->addMethodCall('addLoader', ['xlf', new Reference('translation.xliff_loader')])
|
|
;
|
|
$this->assertEquals($expectedReader, $reader);
|
|
|
|
$expectedLoader = (new Definition())
|
|
->addTag('translation.loader', ['alias' => 'xliff', 'legacy-alias' => 'xlf'])
|
|
;
|
|
$this->assertEquals($expectedLoader, $loader);
|
|
|
|
$this->assertSame(['translation.xliff_loader' => ['xliff', 'xlf']], $translator->getArgument(3));
|
|
|
|
$expected = ['translation.xliff_loader' => new ServiceClosureArgument(new Reference('translation.xliff_loader'))];
|
|
$this->assertEquals($expected, $container->getDefinition((string) $translator->getArgument(0))->getArgument(0));
|
|
}
|
|
}
|
|
|