JsonFileLoaderTest.php 2.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  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\JsonFileLoader;
  13. use Symfony\Component\Config\Resource\FileResource;
  14. class JsonFileLoaderTest extends TestCase
  15. {
  16. public function testLoad()
  17. {
  18. $loader = new JsonFileLoader();
  19. $resource = __DIR__.'/../fixtures/resources.json';
  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 JsonFileLoader();
  28. $resource = __DIR__.'/../fixtures/empty.json';
  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 JsonFileLoader();
  40. $resource = __DIR__.'/../fixtures/non-existing.json';
  41. $loader->load($resource, 'en', 'domain1');
  42. }
  43. /**
  44. * @expectedException \Symfony\Component\Translation\Exception\InvalidResourceException
  45. * @expectedExceptionMessage Error parsing JSON - Syntax error, malformed JSON
  46. */
  47. public function testParseException()
  48. {
  49. $loader = new JsonFileLoader();
  50. $resource = __DIR__.'/../fixtures/malformed.json';
  51. $loader->load($resource, 'en', 'domain1');
  52. }
  53. }