forked from PrestaShop/PrestaShop
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed override for Decimal patterns in CLDR
- Loading branch information
Showing
2 changed files
with
191 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,162 @@ | ||
<?php | ||
/** | ||
* Copyright since 2007 PrestaShop SA and Contributors | ||
* PrestaShop is an International Registered Trademark & Property of PrestaShop SA | ||
* | ||
* NOTICE OF LICENSE | ||
* | ||
* This source file is subject to the Open Software License (OSL 3.0) | ||
* that is bundled with this package in the file LICENSE.md. | ||
* It is also available through the world-wide-web at this URL: | ||
* https://opensource.org/licenses/OSL-3.0 | ||
* If you did not receive a copy of the license and are unable to | ||
* obtain it through the world-wide-web, please send an email | ||
* to [email protected] so we can send you a copy immediately. | ||
* | ||
* DISCLAIMER | ||
* | ||
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer | ||
* versions in the future. If you wish to customize PrestaShop for your | ||
* needs please refer to https://devdocs.prestashop.com/ for more information. | ||
* | ||
* @author PrestaShop SA and Contributors <[email protected]> | ||
* @copyright Since 2007 PrestaShop SA and Contributors | ||
* @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) | ||
*/ | ||
|
||
namespace Tests\Unit\Core\Localization\CLDR; | ||
|
||
use PHPUnit\Framework\TestCase; | ||
use PrestaShop\PrestaShop\Core\Localization\CLDR\LocaleData; | ||
|
||
class LocaleDataTest extends TestCase | ||
{ | ||
/** | ||
* @var LocaleData | ||
*/ | ||
private $localeData; | ||
|
||
/** | ||
* Setup tested dependency | ||
*/ | ||
public function setUp() | ||
{ | ||
$this->localeData = new LocaleData(); | ||
} | ||
|
||
/** | ||
* @param array|null $decimalPatternsInitial | ||
* @param array|null $decimalPatternsOverride | ||
* @param array|null $decimalPatternsExpected | ||
* | ||
* @dataProvider providerDecimalPatterns | ||
*/ | ||
public function testOverrideWithDecimalPatterns( | ||
?array $decimalPatternsInitial, | ||
?array $decimalPatternsOverride, | ||
?array $decimalPatternsExpected | ||
) { | ||
// Initial | ||
$this->localeData->setDecimalPatterns($decimalPatternsInitial); | ||
|
||
// Override | ||
$localeData = new LocaleData(); | ||
if (null !== $decimalPatternsOverride) { | ||
$localeData->setDecimalPatterns($decimalPatternsOverride); | ||
} | ||
|
||
// Result | ||
$result = $this->localeData->overrideWith($localeData); | ||
$this->assertInstanceOf(LocaleData::class, $result); | ||
$this->assertEquals($decimalPatternsExpected, $result->getDecimalPatterns()); | ||
} | ||
|
||
public function providerDecimalPatterns(): array | ||
{ | ||
return [ | ||
[ | ||
null, | ||
null, | ||
null, | ||
], | ||
[ | ||
null, | ||
['latn' => 'A'], | ||
['latn' => 'A'], | ||
], | ||
[ | ||
['latn' => 'A'], | ||
['latn' => 'B'], | ||
['latn' => 'B'], | ||
], | ||
[ | ||
['arab' => 'A'], | ||
['latn' => 'B'], | ||
['arab' => 'A', 'latn' => 'B'], | ||
], | ||
[ | ||
['arab' => 'A', 'latn' => 'B'], | ||
['latn' => 'C'], | ||
['arab' => 'A', 'latn' => 'C'], | ||
], | ||
]; | ||
} | ||
|
||
/** | ||
* @param array|null $decimalPatternsInitial | ||
* @param array|null $decimalPatternsOverride | ||
* @param array|null $decimalPatternsExpected | ||
* | ||
* @dataProvider providerPercentPatterns | ||
*/ | ||
public function testOverrideWithPercentPatterns( | ||
?array $decimalPatternsInitial, | ||
?array $decimalPatternsOverride, | ||
?array $decimalPatternsExpected | ||
) { | ||
// Initial | ||
$this->localeData->setDecimalPatterns($decimalPatternsInitial); | ||
|
||
// Override | ||
$localeData = new LocaleData(); | ||
if (null !== $decimalPatternsOverride) { | ||
$localeData->setDecimalPatterns($decimalPatternsOverride); | ||
} | ||
|
||
// Result | ||
$result = $this->localeData->overrideWith($localeData); | ||
$this->assertInstanceOf(LocaleData::class, $result); | ||
$this->assertEquals($decimalPatternsExpected, $result->getDecimalPatterns()); | ||
} | ||
|
||
public function providerPercentPatterns(): array | ||
{ | ||
return [ | ||
[ | ||
null, | ||
null, | ||
null, | ||
], | ||
[ | ||
null, | ||
['latn' => 'A %'], | ||
['latn' => 'A %'], | ||
], | ||
[ | ||
['latn' => 'A %'], | ||
['latn' => 'B %'], | ||
['latn' => 'B %'], | ||
], | ||
[ | ||
['arab' => 'A %'], | ||
['latn' => 'B %'], | ||
['arab' => 'A %', 'latn' => 'B %'], | ||
], | ||
[ | ||
['arab' => 'A %', 'latn' => 'B %'], | ||
['latn' => 'C %'], | ||
['arab' => 'A %', 'latn' => 'C %'], | ||
], | ||
]; | ||
} | ||
} |