IcuResFileDumperTest.php 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. <?php
  2. /*
  3. * This file is part of the Symfony package.
  4. *
  5. * (c) Fabien Potencier <fabien@symfony.com>
  6. *
  7. * For the full copyright and license information, please view the LICENSE
  8. * file that was distributed with this source code.
  9. */
  10. namespace Symfony\Component\Translation\Tests\Dumper;
  11. use Symfony\Component\Translation\MessageCatalogue;
  12. use Symfony\Component\Translation\Dumper\IcuResFileDumper;
  13. class IcuResFileDumperTest extends \PHPUnit_Framework_TestCase
  14. {
  15. public function testDump()
  16. {
  17. if (!extension_loaded('mbstring')) {
  18. $this->markTestSkipped('This test requires mbstring to work.');
  19. }
  20. $catalogue = new MessageCatalogue('en');
  21. $catalogue->add(array('foo' => 'bar'));
  22. $tempDir = sys_get_temp_dir();
  23. $dumper = new IcuResFileDumper();
  24. $dumper->dump($catalogue, array('path' => $tempDir));
  25. $this->assertEquals(file_get_contents(__DIR__.'/../fixtures/resourcebundle/res/en.res'), file_get_contents($tempDir.'/messages/en.res'));
  26. unlink($tempDir.'/messages/en.res');
  27. rmdir($tempDir.'/messages');
  28. }
  29. }