You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
62 lines
1.8 KiB
62 lines
1.8 KiB
<?php
|
|
|
|
namespace PhpOffice\PhpSpreadsheetTests\Calculation;
|
|
|
|
use PhpOffice\PhpSpreadsheet\Calculation\Calculation;
|
|
use PhpOffice\PhpSpreadsheet\Calculation\Functions;
|
|
use PhpOffice\PhpSpreadsheet\Settings;
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
class TranslationTest extends TestCase
|
|
{
|
|
/**
|
|
* @var string
|
|
*/
|
|
private $compatibilityMode;
|
|
|
|
/**
|
|
* @var string
|
|
*/
|
|
private $returnDate;
|
|
|
|
/** @var string */
|
|
private $locale;
|
|
|
|
protected function setUp(): void
|
|
{
|
|
$this->compatibilityMode = Functions::getCompatibilityMode();
|
|
$this->returnDate = Functions::getReturnDateType();
|
|
Functions::setCompatibilityMode(Functions::COMPATIBILITY_EXCEL);
|
|
Functions::setReturnDateType(Functions::RETURNDATE_EXCEL);
|
|
$this->locale = Settings::getLocale();
|
|
}
|
|
|
|
protected function tearDown(): void
|
|
{
|
|
Functions::setCompatibilityMode($this->compatibilityMode);
|
|
Functions::setReturnDateType($this->returnDate);
|
|
Settings::setLocale($this->locale);
|
|
}
|
|
|
|
/**
|
|
* @dataProvider providerTranslations
|
|
*/
|
|
public function testTranslation(string $expectedResult, string $locale, string $formula): void
|
|
{
|
|
$validLocale = Settings::setLocale($locale);
|
|
if (!$validLocale) {
|
|
self::markTestSkipped("Unable to set locale to {$locale}");
|
|
}
|
|
|
|
$translatedFormula = Calculation::getInstance()->_translateFormulaToLocale($formula);
|
|
self::assertSame($expectedResult, $translatedFormula);
|
|
|
|
$restoredFormula = Calculation::getInstance()->_translateFormulaToEnglish($translatedFormula);
|
|
self::assertSame($formula, $restoredFormula);
|
|
}
|
|
|
|
public static function providerTranslations(): array
|
|
{
|
|
return require 'tests/data/Calculation/Translations.php';
|
|
}
|
|
}
|
|
|