Файл: symfony-2.7/src/Symfony/Component/Intl/Tests/Data/Provider/AbstractLocaleDataProviderTest.php
Строк: 67
<?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 SymfonyComponentIntlTestsDataProvider;
use SymfonyComponentIntlDataProviderLocaleDataProvider;
use SymfonyComponentIntlIntl;
use SymfonyComponentIntlLocale;
/**
* @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));
}
}
}