CsvFileLoaderTest.php 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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\Config\Resource\FileResource;
  13. use Symfony\Component\Translation\Loader\CsvFileLoader;
  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(['foo' => 'bar'], $catalogue->all('domain1'));
  22. $this->assertEquals('en', $catalogue->getLocale());
  23. $this->assertEquals([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([], $catalogue->all('domain1'));
  31. $this->assertEquals('en', $catalogue->getLocale());
  32. $this->assertEquals([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. }