123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108 |
- <?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\Provider;
- use Symfony\Component\Intl\Data\Provider\LocaleDataProvider;
- use Symfony\Component\Intl\Intl;
- use Symfony\Component\Intl\Locale;
- /**
- * @author Bernhard Schussek <bschussek@gmail.com>
- */
- abstract class AbstractLocaleDataProviderTest extends AbstractDataProviderTest
- {
- /**
- * @var LocaleDataProvider
- */
- protected $dataProvider;
- protected function setUp()
- {
- parent::setUp();
- $this->dataProvider = new LocaleDataProvider(
- $this->getDataDirectory().'/'.Intl::LOCALE_DIR,
- $this->createEntryReader()
- );
- }
- abstract protected function getDataDirectory();
- public function testGetLocales()
- {
- $this->assertSame($this->getLocales(), $this->dataProvider->getLocales());
- }
- public function testGetLocaleAliases()
- {
- $this->assertSame($this->getLocaleAliases(), $this->dataProvider->getAliases());
- }
- /**
- * @dataProvider provideLocales
- */
- public function testGetNames($displayLocale)
- {
- $locales = array_keys($this->dataProvider->getNames($displayLocale));
- sort($locales);
- $this->assertSame($this->getLocales(), $locales);
- }
- public function testGetNamesDefaultLocale()
- {
- Locale::setDefault('de_AT');
- $this->assertSame(
- $this->dataProvider->getNames('de_AT'),
- $this->dataProvider->getNames()
- );
- }
- /**
- * @dataProvider provideLocaleAliases
- */
- public function testGetNamesSupportsAliases($alias, $ofLocale)
- {
- // Can't use assertSame(), because some aliases contain scripts with
- // different collation (=order of output) than their aliased locale
- // e.g. sr_Latn_ME => sr_ME
- $this->assertEquals(
- $this->dataProvider->getNames($ofLocale),
- $this->dataProvider->getNames($alias)
- );
- }
- /**
- * @dataProvider provideLocales
- */
- public function testGetName($displayLocale)
- {
- $names = $this->dataProvider->getNames($displayLocale);
- foreach ($names as $locale => $name) {
- $this->assertSame($name, $this->dataProvider->getName($locale, $displayLocale));
- }
- }
- public function testGetNameDefaultLocale()
- {
- Locale::setDefault('de_AT');
- $names = $this->dataProvider->getNames('de_AT');
- foreach ($names as $locale => $name) {
- $this->assertSame($name, $this->dataProvider->getName($locale));
- }
- }
- }
|