mirror of
https://github.com/PHPOffice/PhpSpreadsheet.git
synced 2026-09-24 01:00:05 +00:00
79fca7601c
This came to light while cleaning up ComplexAssert. Many tests are calling `_calculateFormulaValue` rather than `calculateFormula`, and, as a result, have to be trimmed before asserting. This PR changes those calls, and does a bit more to simplify the tests. There are a lot of other non-Engineering tests which call `_calculateFormulaValue`, but none of those need to manipulate the result after the test. This PR changes only tests, no source code.
173 lines
5.9 KiB
PHP
173 lines
5.9 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace PhpOffice\PhpSpreadsheetTests\Calculation\Functions\Engineering;
|
|
|
|
use PhpOffice\PhpSpreadsheet\Calculation\Calculation;
|
|
use PhpOffice\PhpSpreadsheet\Calculation\Engineering\ConvertUOM;
|
|
use PhpOffice\PhpSpreadsheet\Calculation\Exception as CalculationException;
|
|
use PhpOffice\PhpSpreadsheetTests\Calculation\Functions\FormulaArguments;
|
|
use PHPUnit\Framework\Attributes\DataProvider;
|
|
|
|
class ConvertUoMTest extends AllSetupTeardown
|
|
{
|
|
const UOM_PRECISION = 1E-12;
|
|
|
|
public function testGetConversionGroups(): void
|
|
{
|
|
$result = ConvertUOM::getConversionCategories();
|
|
self::assertContains('Weight and Mass', $result);
|
|
}
|
|
|
|
public function testGetConversionGroupUnits(): void
|
|
{
|
|
$result = ConvertUOM::getConversionCategoryUnits();
|
|
self::assertArrayHasKey('Speed', $result);
|
|
self::assertContains('mph', $result['Speed']);
|
|
}
|
|
|
|
public function testGetConversionGroupUnitDetails(): void
|
|
{
|
|
$result = ConvertUOM::getConversionCategoryUnitDetails();
|
|
self::assertArrayHasKey('Information', $result);
|
|
self::assertContains(['unit' => 'byte', 'description' => 'Byte'], $result['Information']);
|
|
}
|
|
|
|
public function testGetConversionMultipliers(): void
|
|
{
|
|
$result = ConvertUOM::getConversionMultipliers();
|
|
self::assertArrayHasKey('k', $result);
|
|
self::assertSame(['multiplier' => 1000.0, 'name' => 'kilo'], $result['k']);
|
|
}
|
|
|
|
public function testGetBinaryConversionMultipliers(): void
|
|
{
|
|
$result = ConvertUOM::getBinaryConversionMultipliers();
|
|
self::assertArrayHasKey('ki', $result);
|
|
self::assertSame(['multiplier' => 1024, 'name' => 'kibi'], $result['ki']);
|
|
}
|
|
|
|
#[DataProvider('providerCONVERTUOM')]
|
|
public function testDirectCallToCONVERTUOM(float|int|string $expectedResult, float|int|string $value, string $from, string $to): void
|
|
{
|
|
$result = ConvertUOM::convert($value, $from, $to);
|
|
self::assertEqualsWithDelta($expectedResult, $result, self::UOM_PRECISION);
|
|
}
|
|
|
|
#[DataProvider('providerCONVERTUOM')]
|
|
public function testCONVERTUOMAsFormula(mixed $expectedResult, mixed ...$args): void
|
|
{
|
|
$arguments = new FormulaArguments(...$args);
|
|
|
|
$calculation = Calculation::getInstance();
|
|
$formula = "=CONVERT({$arguments})";
|
|
|
|
$result = $calculation->calculateFormula($formula);
|
|
self::assertEqualsWithDelta($expectedResult, $result, self::UOM_PRECISION);
|
|
}
|
|
|
|
#[DataProvider('providerCONVERTUOM')]
|
|
public function testCONVERTUOMInWorksheet(mixed $expectedResult, mixed ...$args): void
|
|
{
|
|
$arguments = new FormulaArguments(...$args);
|
|
|
|
$worksheet = $this->getSheet();
|
|
$argumentCells = $arguments->populateWorksheet($worksheet);
|
|
$formula = "=CONVERT({$argumentCells})";
|
|
|
|
$result = $worksheet->setCellValue('A1', $formula)
|
|
->getCell('A1')
|
|
->getCalculatedValue();
|
|
self::assertEqualsWithDelta($expectedResult, $result, self::UOM_PRECISION);
|
|
}
|
|
|
|
/** @return mixed[] */
|
|
public static function providerCONVERTUOM(): array
|
|
{
|
|
/** @var mixed[] */
|
|
$return = require 'tests/data/Calculation/Engineering/CONVERTUOM.php';
|
|
|
|
return $return;
|
|
}
|
|
|
|
#[DataProvider('providerUnhappyCONVERTUOM')]
|
|
public function testCONVERTUOMUnhappyPath(string $expectedException, mixed ...$args): void
|
|
{
|
|
$arguments = new FormulaArguments(...$args);
|
|
|
|
$worksheet = $this->getSheet();
|
|
$argumentCells = $arguments->populateWorksheet($worksheet);
|
|
$formula = "=CONVERT({$argumentCells})";
|
|
|
|
$this->expectException(CalculationException::class);
|
|
$this->expectExceptionMessage($expectedException);
|
|
$worksheet->setCellValue('A1', $formula)
|
|
->getCell('A1')
|
|
->getCalculatedValue();
|
|
}
|
|
|
|
public static function providerUnhappyCONVERTUOM(): array
|
|
{
|
|
return [
|
|
['Formula Error: Wrong number of arguments for CONVERT() function'],
|
|
['Formula Error: Wrong number of arguments for CONVERT() function', 12.34],
|
|
['Formula Error: Wrong number of arguments for CONVERT() function', 12.34, 'kg'],
|
|
];
|
|
}
|
|
|
|
/** @param float[] $expectedResult */
|
|
#[DataProvider('providerConvertUoMArray')]
|
|
public function testConvertUoMArray(array $expectedResult, string $value, string $fromUoM, string $toUoM): void
|
|
{
|
|
$calculation = Calculation::getInstance();
|
|
|
|
$formula = "=CONVERT({$value}, {$fromUoM}, {$toUoM})";
|
|
$result = $calculation->calculateFormula($formula);
|
|
self::assertEqualsWithDelta($expectedResult, $result, self::UOM_PRECISION);
|
|
}
|
|
|
|
/** @return mixed[] */
|
|
public static function providerConvertUoMArray(): array
|
|
{
|
|
return [
|
|
'Weight/Mass' => [
|
|
[
|
|
[71.42857142857142, 0.15747304441777],
|
|
[453.5923699999991, 1.0],
|
|
],
|
|
'1000',
|
|
'{"lbm", "g"}',
|
|
'{"stone"; "kg"}',
|
|
],
|
|
'Distance' => [
|
|
[
|
|
[2025371.8285214372, 1093.6132983377101],
|
|
[1851.9999999999984, 1.0],
|
|
],
|
|
'1000',
|
|
'{"Nmi", "m"}',
|
|
'{"yd"; "km"}',
|
|
],
|
|
'Volume' => [
|
|
[
|
|
[2.976190476190475, 0.00628981077043211],
|
|
[473.1764729999994, 1.0],
|
|
],
|
|
'1000',
|
|
'{"pt", "ml"}',
|
|
'{"barrel"; "l"}',
|
|
],
|
|
'Area' => [
|
|
[
|
|
[999.9960000040016, 0.247104393046628],
|
|
[404.6856422400005, 0.1],
|
|
],
|
|
'1000',
|
|
'{"uk_acre", "m2"}',
|
|
'{"us_acre"; "ha"}',
|
|
],
|
|
];
|
|
}
|
|
}
|