CsvFileDumperTest.php 964 B

123456789101112131415161718192021222324252627282930313233
  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\CsvFileDumper;
  13. class CsvFileDumperTest extends \PHPUnit_Framework_TestCase
  14. {
  15. public function testDump()
  16. {
  17. $catalogue = new MessageCatalogue('en');
  18. $catalogue->add(array('foo' => 'bar', 'bar' => 'foo
  19. foo', 'foo;foo' => 'bar'));
  20. $tempDir = sys_get_temp_dir();
  21. $dumper = new CsvFileDumper();
  22. $dumper->dump($catalogue, array('path' => $tempDir));
  23. $this->assertEquals(file_get_contents(__DIR__.'/../fixtures/valid.csv'), file_get_contents($tempDir.'/messages.en.csv'));
  24. unlink($tempDir.'/messages.en.csv');
  25. }
  26. }