58 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			58 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?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', array('alias' => 'xliff', 'legacy-alias' => 'xlf'));
 | |
| 
 | |
|         $reader = new Definition();
 | |
| 
 | |
|         $translator = (new Definition())
 | |
|             ->setArguments(array(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', array('xliff', new Reference('translation.xliff_loader')))
 | |
|             ->addMethodCall('addLoader', array('xlf', new Reference('translation.xliff_loader')))
 | |
|         ;
 | |
|         $this->assertEquals($expectedReader, $reader);
 | |
| 
 | |
|         $expectedLoader = (new Definition())
 | |
|             ->addTag('translation.loader', array('alias' => 'xliff', 'legacy-alias' => 'xlf'))
 | |
|         ;
 | |
|         $this->assertEquals($expectedLoader, $loader);
 | |
| 
 | |
|         $this->assertSame(array('translation.xliff_loader' => array('xliff', 'xlf')), $translator->getArgument(3));
 | |
| 
 | |
|         $expected = array('translation.xliff_loader' => new ServiceClosureArgument(new Reference('translation.xliff_loader')));
 | |
|         $this->assertEquals($expected, $container->getDefinition((string) $translator->getArgument(0))->getArgument(0));
 | |
|     }
 | |
| }
 | 
