CsvFileLoaderTest.php 1.9KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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\Loader;
  11. use PHPUnit\Framework\TestCase;
  12. use Symfony\Component\Translation\Loader\CsvFileLoader;
  13. use Symfony\Component\Config\Resource\FileResource;
  14. class CsvFileLoaderTest extends TestCase
  15. {
  16. public function testLoad()
  17. {
  18. $loader = new CsvFileLoader();
  19. $resource = __DIR__.'/../fixtures/resources.csv';
  20. $catalogue = $loader->load($resource, 'en', 'domain1');
  21. $this->assertEquals(array('foo' => 'bar'), $catalogue->all('domain1'));
  22. $this->assertEquals('en', $catalogue->getLocale());
  23. $this->assertEquals(array(new FileResource($resource)), $catalogue->getResources());
  24. }
  25. public function testLoadDoesNothingIfEmpty()
  26. {
  27. $loader = new CsvFileLoader();
  28. $resource = __DIR__.'/../fixtures/empty.csv';
  29. $catalogue = $loader->load($resource, 'en', 'domain1');
  30. $this->assertEquals(array(), $catalogue->all('domain1'));
  31. $this->assertEquals('en', $catalogue->getLocale());
  32. $this->assertEquals(array(new FileResource($resource)), $catalogue->getResources());
  33. }
  34. /**
  35. * @expectedException \Symfony\Component\Translation\Exception\NotFoundResourceException
  36. */
  37. public function testLoadNonExistingResource()
  38. {
  39. $loader = new CsvFileLoader();
  40. $resource = __DIR__.'/../fixtures/not-exists.csv';
  41. $loader->load($resource, 'en', 'domain1');
  42. }
  43. /**
  44. * @expectedException \Symfony\Component\Translation\Exception\InvalidResourceException
  45. */
  46. public function testLoadNonLocalResource()
  47. {
  48. $loader = new CsvFileLoader();
  49. $resource = 'http://example.com/resources.csv';
  50. $loader->load($resource, 'en', 'domain1');
  51. }
  52. }