1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116
|
<?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;
use Symfony\Component\Intl\Exception\MissingResourceException;
use Symfony\Component\Intl\Locales;
use Symfony\Component\Intl\Util\IntlTestHelper;
#[\PHPUnit\Framework\Attributes\Group('intl-data')]
class LocalesTest extends ResourceBundleTestCase
{
public function testGetLocales()
{
$this->assertSame(static::getLocales(), Locales::getLocales());
}
public function testGetAliases()
{
$this->assertSame(static::getLocaleAliases(), Locales::getAliases());
}
#[\PHPUnit\Framework\Attributes\DataProvider('provideLocales')]
public function testGetNames($displayLocale)
{
if ('en' !== $displayLocale) {
IntlTestHelper::requireFullIntl($this);
}
$locales = array_keys(Locales::getNames($displayLocale));
sort($locales);
// We can't assert on exact list of locale, as there's too many variations.
// The best we can do is to make sure getNames() returns a subset of what getLocales() returns.
$this->assertNotEmpty($locales);
$this->assertSame([], array_diff($locales, static::getLocales()));
}
public function testGetNamesDefaultLocale()
{
IntlTestHelper::requireFullIntl($this);
\Locale::setDefault('de_AT');
$this->assertSame(Locales::getNames('de_AT'), Locales::getNames());
}
#[\PHPUnit\Framework\Attributes\DataProvider('provideLocaleAliases')]
public function testGetNamesSupportsAliases($alias, $ofLocale)
{
if ('en' !== $ofLocale) {
IntlTestHelper::requireFullIntl($this);
}
// 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(Locales::getNames($ofLocale), Locales::getNames($alias));
}
#[\PHPUnit\Framework\Attributes\DataProvider('provideLocales')]
public function testGetName($displayLocale)
{
if ('en' !== $displayLocale) {
IntlTestHelper::requireFullIntl($this);
}
$names = Locales::getNames($displayLocale);
foreach ($names as $locale => $name) {
$this->assertSame($name, Locales::getName($locale, $displayLocale));
}
}
public function testGetNameDefaultLocale()
{
IntlTestHelper::requireFullIntl($this);
\Locale::setDefault('de_AT');
$names = Locales::getNames('de_AT');
foreach ($names as $locale => $name) {
$this->assertSame($name, Locales::getName($locale));
}
}
public function testGetNameWithInvalidLocale()
{
$this->expectException(MissingResourceException::class);
Locales::getName('foo');
}
public function testGetNameWithAliasLocale()
{
$this->assertSame(Locales::getName('tl_PH'), Locales::getName('fil_PH'));
}
public function testExists()
{
$this->assertTrue(Locales::exists('nl_NL'));
$this->assertTrue(Locales::exists('tl_PH'));
$this->assertTrue(Locales::exists('fil_PH')); // alias for "tl_PH"
$this->assertTrue(Locales::exists('es_419'));
$this->assertFalse(Locales::exists('zxx_ZZ'));
}
}
|