YamlFileLoaderTest.php 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  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\YamlFileLoader;
  13. use Symfony\Component\Config\Resource\FileResource;
  14. class YamlFileLoaderTest extends TestCase
  15. {
  16. public function testLoad()
  17. {
  18. $loader = new YamlFileLoader();
  19. $resource = __DIR__.'/../fixtures/resources.yml';
  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 YamlFileLoader();
  28. $resource = __DIR__.'/../fixtures/empty.yml';
  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 YamlFileLoader();
  40. $resource = __DIR__.'/../fixtures/non-existing.yml';
  41. $loader->load($resource, 'en', 'domain1');
  42. }
  43. /**
  44. * @expectedException \Symfony\Component\Translation\Exception\InvalidResourceException
  45. */
  46. public function testLoadThrowsAnExceptionIfFileNotLocal()
  47. {
  48. $loader = new YamlFileLoader();
  49. $resource = 'http://example.com/resources.yml';
  50. $loader->load($resource, 'en', 'domain1');
  51. }
  52. /**
  53. * @expectedException \Symfony\Component\Translation\Exception\InvalidResourceException
  54. */
  55. public function testLoadThrowsAnExceptionIfNotAnArray()
  56. {
  57. $loader = new YamlFileLoader();
  58. $resource = __DIR__.'/../fixtures/non-valid.yml';
  59. $loader->load($resource, 'en', 'domain1');
  60. }
  61. }