]>
Commit | Line | Data |
---|---|---|
4f5b44bd NL |
1 | <?php |
2 | ||
3 | /* | |
4 | * This file is part of the Symfony package. | |
5 | * | |
6 | * (c) Fabien Potencier <fabien@symfony.com> | |
7 | * | |
8 | * For the full copyright and license information, please view the LICENSE | |
9 | * file that was distributed with this source code. | |
10 | */ | |
11 | ||
12 | namespace Symfony\Component\Translation\Tests\Loader; | |
13 | ||
14 | use Symfony\Component\Translation\Loader\IcuResFileLoader; | |
15 | use Symfony\Component\Config\Resource\DirectoryResource; | |
16 | ||
17 | class IcuResFileLoaderTest extends LocalizedTestCase | |
18 | { | |
19 | protected function setUp() | |
20 | { | |
21 | if (!class_exists('Symfony\Component\Config\Loader\Loader')) { | |
22 | $this->markTestSkipped('The "Config" component is not available'); | |
23 | } | |
24 | ||
25 | if (!extension_loaded('intl')) { | |
26 | $this->markTestSkipped('This test requires intl extension to work.'); | |
27 | } | |
28 | } | |
29 | ||
30 | public function testLoad() | |
31 | { | |
32 | // resource is build using genrb command | |
33 | $loader = new IcuResFileLoader(); | |
34 | $resource = __DIR__.'/../fixtures/resourcebundle/res'; | |
35 | $catalogue = $loader->load($resource, 'en', 'domain1'); | |
36 | ||
37 | $this->assertEquals(array('foo' => 'bar'), $catalogue->all('domain1')); | |
38 | $this->assertEquals('en', $catalogue->getLocale()); | |
39 | $this->assertEquals(array(new DirectoryResource($resource)), $catalogue->getResources()); | |
40 | } | |
41 | ||
42 | /** | |
43 | * @expectedException \Symfony\Component\Translation\Exception\NotFoundResourceException | |
44 | */ | |
45 | public function testLoadNonExistingResource() | |
46 | { | |
47 | $loader = new IcuResFileLoader(); | |
48 | $loader->load(__DIR__.'/../fixtures/non-existing.txt', 'en', 'domain1'); | |
49 | } | |
50 | ||
51 | /** | |
52 | * @expectedException \Symfony\Component\Translation\Exception\InvalidResourceException | |
53 | */ | |
54 | public function testLoadInvalidResource() | |
55 | { | |
56 | $loader = new IcuResFileLoader(); | |
57 | $loader->load(__DIR__.'/../fixtures/resourcebundle/corrupted', 'en', 'domain1'); | |
58 | } | |
59 | } |