* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Bundle\FrameworkBundle\Tests\Command; use PHPUnit\Framework\TestCase; use Symfony\Bundle\FrameworkBundle\Console\Application; use Symfony\Component\Console\Tester\CommandTester; use Symfony\Bundle\FrameworkBundle\Command\TranslationDebugCommand; use Symfony\Component\Filesystem\Filesystem; use Symfony\Component\HttpKernel; class TranslationDebugCommandTest extends TestCase { private $fs; private $translationDir; public function testDebugMissingMessages() { $tester = $this->createCommandTester(array('foo' => 'foo')); $tester->execute(array('locale' => 'en', 'bundle' => 'foo')); $this->assertRegExp('/missing/', $tester->getDisplay()); } public function testDebugUnusedMessages() { $tester = $this->createCommandTester(array(), array('foo' => 'foo')); $tester->execute(array('locale' => 'en', 'bundle' => 'foo')); $this->assertRegExp('/unused/', $tester->getDisplay()); } public function testDebugFallbackMessages() { $tester = $this->createCommandTester(array(), array('foo' => 'foo')); $tester->execute(array('locale' => 'fr', 'bundle' => 'foo')); $this->assertRegExp('/fallback/', $tester->getDisplay()); } public function testNoDefinedMessages() { $tester = $this->createCommandTester(); $tester->execute(array('locale' => 'fr', 'bundle' => 'test')); $this->assertRegExp('/No defined or extracted messages for locale "fr"/', $tester->getDisplay()); } public function testDebugDefaultDirectory() { $tester = $this->createCommandTester(array('foo' => 'foo'), array('bar' => 'bar')); $tester->execute(array('locale' => 'en')); $this->assertRegExp('/missing/', $tester->getDisplay()); $this->assertRegExp('/unused/', $tester->getDisplay()); } public function testDebugCustomDirectory() { $kernel = $this->getMockBuilder('Symfony\Component\HttpKernel\KernelInterface')->getMock(); $kernel->expects($this->once()) ->method('getBundle') ->with($this->equalTo($this->translationDir)) ->willThrowException(new \InvalidArgumentException()); $tester = $this->createCommandTester(array('foo' => 'foo'), array('bar' => 'bar'), $kernel); $tester->execute(array('locale' => 'en', 'bundle' => $this->translationDir)); $this->assertRegExp('/missing/', $tester->getDisplay()); $this->assertRegExp('/unused/', $tester->getDisplay()); } /** * @expectedException \InvalidArgumentException */ public function testDebugInvalidDirectory() { $kernel = $this->getMockBuilder('Symfony\Component\HttpKernel\KernelInterface')->getMock(); $kernel->expects($this->once()) ->method('getBundle') ->with($this->equalTo('dir')) ->will($this->throwException(new \InvalidArgumentException())); $tester = $this->createCommandTester(array(), array(), $kernel); $tester->execute(array('locale' => 'en', 'bundle' => 'dir')); } protected function setUp() { $this->fs = new Filesystem(); $this->translationDir = sys_get_temp_dir().'/'.uniqid('sf2_translation', true); $this->fs->mkdir($this->translationDir.'/Resources/translations'); $this->fs->mkdir($this->translationDir.'/Resources/views'); } protected function tearDown() { $this->fs->remove($this->translationDir); } /** * @return CommandTester */ private function createCommandTester($extractedMessages = array(), $loadedMessages = array(), $kernel = null) { $translator = $this->getMockBuilder('Symfony\Component\Translation\Translator') ->disableOriginalConstructor() ->getMock(); $translator ->expects($this->any()) ->method('getFallbackLocales') ->will($this->returnValue(array('en'))); $extractor = $this->getMockBuilder('Symfony\Component\Translation\Extractor\ExtractorInterface')->getMock(); $extractor ->expects($this->any()) ->method('extract') ->will( $this->returnCallback(function ($path, $catalogue) use ($extractedMessages) { $catalogue->add($extractedMessages); }) ); $loader = $this->getMockBuilder('Symfony\Component\Translation\Reader\TranslationReader')->getMock(); $loader ->expects($this->any()) ->method('read') ->will( $this->returnCallback(function ($path, $catalogue) use ($loadedMessages) { $catalogue->add($loadedMessages); }) ); if (null === $kernel) { $returnValues = array( array('foo', $this->getBundle($this->translationDir)), array('test', $this->getBundle('test')), ); if (HttpKernel\Kernel::VERSION_ID < 40000) { $returnValues = array( array('foo', true, $this->getBundle($this->translationDir)), array('test', true, $this->getBundle('test')), ); } $kernel = $this->getMockBuilder('Symfony\Component\HttpKernel\KernelInterface')->getMock(); $kernel ->expects($this->any()) ->method('getBundle') ->will($this->returnValueMap($returnValues)); } $kernel ->expects($this->any()) ->method('getRootDir') ->will($this->returnValue($this->translationDir)); $kernel ->expects($this->any()) ->method('getBundles') ->will($this->returnValue(array())); $kernel ->expects($this->any()) ->method('getContainer') ->will($this->returnValue($this->getMockBuilder('Symfony\Component\DependencyInjection\ContainerInterface')->getMock())); $command = new TranslationDebugCommand($translator, $loader, $extractor); $application = new Application($kernel); $application->add($command); return new CommandTester($application->find('debug:translation')); } /** * @group legacy * @expectedDeprecation Symfony\Bundle\FrameworkBundle\Command\TranslationDebugCommand::__construct() expects an instance of "Symfony\Component\Translation\TranslatorInterface" as first argument since version 3.4. Not passing it is deprecated and will throw a TypeError in 4.0. */ public function testLegacyDebugCommand() { $translator = $this->getMockBuilder('Symfony\Component\Translation\Translator') ->disableOriginalConstructor() ->getMock(); $extractor = $this->getMockBuilder('Symfony\Component\Translation\Extractor\ExtractorInterface')->getMock(); $loader = $this->getMockBuilder('Symfony\Bundle\FrameworkBundle\Translation\TranslationLoader')->getMock(); $kernel = $this->getMockBuilder('Symfony\Component\HttpKernel\KernelInterface')->getMock(); $kernel ->expects($this->any()) ->method('getBundles') ->will($this->returnValue(array())); $container = $this->getMockBuilder('Symfony\Component\DependencyInjection\ContainerInterface')->getMock(); $container ->expects($this->any()) ->method('get') ->will($this->returnValueMap(array( array('translation.extractor', 1, $extractor), array('translation.reader', 1, $loader), array('translator', 1, $translator), array('kernel', 1, $kernel), ))); $kernel ->expects($this->any()) ->method('getContainer') ->will($this->returnValue($container)); $command = new TranslationDebugCommand(); $command->setContainer($container); $application = new Application($kernel); $application->add($command); $tester = new CommandTester($application->find('debug:translation')); $tester->execute(array('locale' => 'en')); $this->assertContains('No defined or extracted', $tester->getDisplay()); } private function getBundle($path) { $bundle = $this->getMockBuilder('Symfony\Component\HttpKernel\Bundle\BundleInterface')->getMock(); $bundle ->expects($this->any()) ->method('getPath') ->will($this->returnValue($path)) ; return $bundle; } }