1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- <?php
- /*
- * This file is part of the Symfony package.
- *
- * (c) Fabien Potencier <fabien@symfony.com>
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- */
- namespace Symfony\Component\Intl\Tests\Data\Bundle\Reader;
- use PHPUnit\Framework\TestCase;
- use Symfony\Component\Intl\Data\Bundle\Reader\JsonBundleReader;
- /**
- * @author Bernhard Schussek <bschussek@gmail.com>
- */
- class JsonBundleReaderTest extends TestCase
- {
- /**
- * @var JsonBundleReader
- */
- private $reader;
- protected function setUp()
- {
- $this->reader = new JsonBundleReader();
- }
- public function testReadReturnsArray()
- {
- $data = $this->reader->read(__DIR__.'/Fixtures/json', 'en');
- $this->assertInternalType('array', $data);
- $this->assertSame('Bar', $data['Foo']);
- $this->assertFalse(isset($data['ExistsNot']));
- }
- /**
- * @expectedException \Symfony\Component\Intl\Exception\ResourceBundleNotFoundException
- */
- public function testReadFailsIfNonExistingLocale()
- {
- $this->reader->read(__DIR__.'/Fixtures/json', 'foo');
- }
- /**
- * @expectedException \Symfony\Component\Intl\Exception\RuntimeException
- */
- public function testReadFailsIfNonExistingDirectory()
- {
- $this->reader->read(__DIR__.'/foo', 'en');
- }
- /**
- * @expectedException \Symfony\Component\Intl\Exception\RuntimeException
- */
- public function testReadFailsIfNotAFile()
- {
- $this->reader->read(__DIR__.'/Fixtures/NotAFile', 'en');
- }
- /**
- * @expectedException \Symfony\Component\Intl\Exception\RuntimeException
- */
- public function testReadFailsIfInvalidJson()
- {
- $this->reader->read(__DIR__.'/Fixtures/json', 'en_Invalid');
- }
- /**
- * @expectedException \Symfony\Component\Intl\Exception\ResourceBundleNotFoundException
- */
- public function testReaderDoesNotBreakOutOfGivenPath()
- {
- $this->reader->read(__DIR__.'/Fixtures/json', '../invalid_directory/en');
- }
- }
|