sonarrradarrplexorganizrnginxdashboardmuximuxlandingpagestartpagelandinghtpcserverhomepagesabnzbdheimdallembycouchpotatonzbgetbookmarkapplication-dashboard
		
		
		
		
			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.
		
		
		
		
		
			
		
			
				
					
					
						
							103 lines
						
					
					
						
							4.2 KiB
						
					
					
				
			
		
		
		
			
			
			
				
					
				
				
					
				
			
		
		
	
	
							103 lines
						
					
					
						
							4.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', 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)); | |
|     } | |
| 
 | |
|     /** | |
|      * @group legacy | |
|      * @expectedDeprecation The default value for $readerServiceId will change in 4.0 to "translation.reader". | |
|      * | |
|      * A test that verifies the deprecated "translation.loader" gets the LoaderInterfaces added. | |
|      * | |
|      * This test should be removed in 4.0. | |
|      */ | |
|     public function testValidCollectorWithDeprecatedTranslationLoader() | |
|     { | |
|         $loader = (new Definition()) | |
|             ->addTag('translation.loader', array('alias' => 'xliff', 'legacy-alias' => 'xlf')); | |
| 
 | |
|         $legacyReader = new Definition(); | |
|         $reader = new Definition(); | |
| 
 | |
|         $translator = (new Definition()) | |
|             ->setArguments(array(null, null, null, null)); | |
| 
 | |
|         $container = new ContainerBuilder(); | |
|         $container->setDefinition('translator.default', $translator); | |
|         $container->setDefinition('translation.loader', $legacyReader); | |
|         $container->setDefinition('translation.reader', $reader); | |
|         $container->setDefinition('translation.xliff_loader', $loader); | |
| 
 | |
|         $pass = new TranslatorPass(); | |
|         $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, $legacyReader); | |
|         $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)); | |
|     } | |
| }
 | |
| 
 |