123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267 |
- <?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\ScriptDataProvider;
- use Symfony\Component\Intl\Intl;
- use Symfony\Component\Intl\Locale;
- /**
- * @author Bernhard Schussek <bschussek@gmail.com>
- * @group intl-data
- */
- abstract class AbstractScriptDataProviderTest extends AbstractDataProviderTest
- {
- // The below arrays document the state of the ICU data bundled with this package.
- protected static $scripts = array(
- 'Afak',
- 'Arab',
- 'Armi',
- 'Armn',
- 'Avst',
- 'Bali',
- 'Bamu',
- 'Bass',
- 'Batk',
- 'Beng',
- 'Blis',
- 'Bopo',
- 'Brah',
- 'Brai',
- 'Bugi',
- 'Buhd',
- 'Cakm',
- 'Cans',
- 'Cari',
- 'Cham',
- 'Cher',
- 'Cirt',
- 'Copt',
- 'Cprt',
- 'Cyrl',
- 'Cyrs',
- 'Deva',
- 'Dsrt',
- 'Dupl',
- 'Egyd',
- 'Egyh',
- 'Egyp',
- 'Ethi',
- 'Geok',
- 'Geor',
- 'Glag',
- 'Goth',
- 'Gran',
- 'Grek',
- 'Gujr',
- 'Guru',
- 'Hang',
- 'Hani',
- 'Hano',
- 'Hans',
- 'Hant',
- 'Hebr',
- 'Hira',
- 'Hluw',
- 'Hmng',
- 'Hrkt',
- 'Hung',
- 'Inds',
- 'Ital',
- 'Java',
- 'Jpan',
- 'Jurc',
- 'Kali',
- 'Kana',
- 'Khar',
- 'Khmr',
- 'Khoj',
- 'Knda',
- 'Kore',
- 'Kpel',
- 'Kthi',
- 'Lana',
- 'Laoo',
- 'Latf',
- 'Latg',
- 'Latn',
- 'Lepc',
- 'Limb',
- 'Lina',
- 'Linb',
- 'Lisu',
- 'Loma',
- 'Lyci',
- 'Lydi',
- 'Mand',
- 'Mani',
- 'Maya',
- 'Mend',
- 'Merc',
- 'Mero',
- 'Mlym',
- 'Mong',
- 'Moon',
- 'Mroo',
- 'Mtei',
- 'Mymr',
- 'Narb',
- 'Nbat',
- 'Nkgb',
- 'Nkoo',
- 'Nshu',
- 'Ogam',
- 'Olck',
- 'Orkh',
- 'Orya',
- 'Osma',
- 'Palm',
- 'Perm',
- 'Phag',
- 'Phli',
- 'Phlp',
- 'Phlv',
- 'Phnx',
- 'Plrd',
- 'Prti',
- 'Rjng',
- 'Roro',
- 'Runr',
- 'Samr',
- 'Sara',
- 'Sarb',
- 'Saur',
- 'Sgnw',
- 'Shaw',
- 'Shrd',
- 'Sind',
- 'Sinh',
- 'Sora',
- 'Sund',
- 'Sylo',
- 'Syrc',
- 'Syre',
- 'Syrj',
- 'Syrn',
- 'Tagb',
- 'Takr',
- 'Tale',
- 'Talu',
- 'Taml',
- 'Tang',
- 'Tavt',
- 'Telu',
- 'Teng',
- 'Tfng',
- 'Tglg',
- 'Thaa',
- 'Thai',
- 'Tibt',
- 'Tirh',
- 'Ugar',
- 'Vaii',
- 'Visp',
- 'Wara',
- 'Wole',
- 'Xpeo',
- 'Xsux',
- 'Yiii',
- 'Zinh',
- 'Zmth',
- 'Zsym',
- 'Zxxx',
- 'Zyyy',
- 'Zzzz',
- );
- /**
- * @var ScriptDataProvider
- */
- protected $dataProvider;
- protected function setUp()
- {
- parent::setUp();
- $this->dataProvider = new ScriptDataProvider(
- $this->getDataDirectory().'/'.Intl::SCRIPT_DIR,
- $this->createEntryReader()
- );
- }
- abstract protected function getDataDirectory();
- public function testGetScripts()
- {
- $this->assertSame(static::$scripts, $this->dataProvider->getScripts());
- }
- /**
- * @dataProvider provideLocales
- */
- public function testGetNames($displayLocale)
- {
- $scripts = array_keys($this->dataProvider->getNames($displayLocale));
- sort($scripts);
- $this->assertSame(static::$scripts, $scripts);
- }
- 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 $script => $name) {
- $this->assertSame($name, $this->dataProvider->getName($script, $displayLocale));
- }
- }
- public function testGetNameDefaultLocale()
- {
- Locale::setDefault('de_AT');
- $names = $this->dataProvider->getNames('de_AT');
- foreach ($names as $script => $name) {
- $this->assertSame($name, $this->dataProvider->getName($script));
- }
- }
- }
|