uawdijnntqw1x1x1
IP : 216.73.216.46
Hostname : toronto-dev2
Kernel : Linux toronto-dev2 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64
Disable Function : None :)
OS : Linux
PATH:
/
srv
/
users
/
craft4
/
apps
/
craft4-newsite-space
/
.
/
vendor
/
commerceguys
/
addressing
/
.
/
tests
/
LocaleTest.php
/
/
<?php namespace CommerceGuys\Addressing\Tests; use CommerceGuys\Addressing\Exception\UnknownLocaleException; use CommerceGuys\Addressing\Locale; use PHPUnit\Framework\TestCase; /** * @coversDefaultClass \CommerceGuys\Addressing\Locale */ final class LocaleTest extends TestCase { /** * @covers ::match */ public function testMatch() { $this->assertTrue(Locale::match('en-US', 'EN_us')); $this->assertTrue(Locale::match('de', 'de')); $this->assertFalse(Locale::match('de', 'de-AT')); $this->assertFalse(Locale::match('de', 'fr')); } /** * @covers ::matchCandidates */ public function testMatchCandidates() { $this->assertTrue(Locale::matchCandidates('en-US', 'EN_us')); $this->assertTrue(Locale::matchCandidates('de', 'de')); $this->assertTrue(Locale::matchCandidates('de', 'de-AT')); $this->assertFalse(Locale::matchCandidates('de', 'fr')); // zh-Hant falls back to "und" instead of "zh". $this->assertFalse(Locale::matchCandidates('zh', 'zh-Hant')); } /** * @covers ::resolve */ public function testResolve() { $availableLocales = ['bs-Cyrl', 'bs', 'en']; $locale = Locale::resolve($availableLocales, 'bs-Cyrl-BA'); $this->assertEquals('bs-Cyrl', $locale); $locale = Locale::resolve($availableLocales, 'bs-Latn-BA'); $this->assertEquals('bs', $locale); $locale = Locale::resolve($availableLocales, 'de', 'en'); $this->assertEquals('en', $locale); } /** * @covers ::resolve */ public function testResolveWithoutResult() { $this->expectException(UnknownLocaleException::class); $availableLocales = ['bs', 'en']; $locale = Locale::resolve($availableLocales, 'de'); } /** * @covers ::canonicalize */ public function testCanonicalize() { $locale = Locale::canonicalize('BS_cyrl-ba'); $this->assertEquals('bs-Cyrl-BA', $locale); $locale = Locale::canonicalize(null); $this->assertEquals(null, $locale); } /** * @covers ::getCandidates */ public function testCandidates() { $candidates = Locale::getCandidates('en-US'); $this->assertEquals(['en-US', 'en'], $candidates); $candidates = Locale::getCandidates('en-US', 'en'); $this->assertEquals(['en-US', 'en'], $candidates); $candidates = Locale::getCandidates('sr', 'en-US'); $this->assertEquals(['sr', 'en-US', 'en'], $candidates); $candidates = Locale::getCandidates('en-AU'); $this->assertEquals(['en-AU', 'en-001', 'en'], $candidates); $candidates = Locale::getCandidates('sh'); $this->assertEquals(['sr-Latn'], $candidates); } /** * @covers ::getParent */ public function testParent() { $this->assertEquals('sr-Latn', Locale::getParent('sr-Latn-RS')); // sr-Latn falls back to "und" instead of "sr". $this->assertEquals(null, Locale::getParent('sr-Latn')); $this->assertEquals(null, Locale::getParent('sr')); } /** * @covers ::replaceAlias */ public function testReplaceAlias() { $locale = Locale::replaceAlias('zh-CN'); $this->assertEquals('zh-Hans-CN', $locale); $locale = Locale::replaceAlias(null); $this->assertEquals(null, $locale); } }
/srv/users/craft4/apps/craft4-newsite-space/./vendor/commerceguys/addressing/./tests/LocaleTest.php