mirror of
https://github.com/PHPOffice/PhpSpreadsheet.git
synced 2026-09-01 04:59:14 +00:00
70b4ecd4d3
They aren't quite interchangeable. Both are used in the test suite, with no indication of why one or the other. I think we'd be best off being consistent. Based on the names, I think `_calculateFormulaValue` was intended as a private, or at least internal, method, so favor `calculateFormula`. I do not intend to rename or re-categorize `_calculateFormulaValue`, just remove its usage when it isn't clearly warranted.
93 lines
3.2 KiB
PHP
93 lines
3.2 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace PhpOffice\PhpSpreadsheetTests\Calculation\Functions\MathTrig;
|
|
|
|
use PhpOffice\PhpSpreadsheet\Calculation\Calculation;
|
|
use PHPUnit\Framework\Attributes\DataProvider;
|
|
|
|
class FloorTest extends AllSetupTeardown
|
|
{
|
|
#[DataProvider('providerFLOOR')]
|
|
public function testFLOOR(mixed $expectedResult, string $formula): void
|
|
{
|
|
$this->mightHaveException($expectedResult);
|
|
$sheet = $this->getSheet();
|
|
$sheet->setCellValue('A2', 1.3);
|
|
$sheet->setCellValue('A3', 2.7);
|
|
$sheet->setCellValue('A4', -3.8);
|
|
$sheet->setCellValue('A5', -5.2);
|
|
$sheet->getCell('A1')->setValue("=FLOOR($formula)");
|
|
$result = $sheet->getCell('A1')->getCalculatedValue();
|
|
self::assertEqualsWithDelta($expectedResult, $result, 1E-12);
|
|
}
|
|
|
|
public static function providerFLOOR(): array
|
|
{
|
|
return require 'tests/data/Calculation/MathTrig/FLOOR.php';
|
|
}
|
|
|
|
public function testFLOORGnumericClashingSigns(): void
|
|
{
|
|
self::setGnumeric();
|
|
$sheet = $this->getSheet();
|
|
$sheet->getCell('A1')->setValue('=FLOOR(17,8)');
|
|
$result = $sheet->getCell('A1')->getCalculatedValue();
|
|
self::assertEqualsWithDelta(16, $result, 1E-12);
|
|
$sheet->getCell('A2')->setValue('=FLOOR(-17,-8)');
|
|
$result = $sheet->getCell('A2')->getCalculatedValue();
|
|
self::assertEqualsWithDelta(-16, $result, 1E-12);
|
|
$sheet->getCell('A3')->setValue('=FLOOR(17,-8)');
|
|
$result = $sheet->getCell('A3')->getCalculatedValue();
|
|
self::assertSame('#NUM!', $result);
|
|
$sheet->getCell('A4')->setValue('=FLOOR(-17,8)');
|
|
$result = $sheet->getCell('A4')->getCalculatedValue();
|
|
self::assertSame('#NUM!', $result);
|
|
}
|
|
|
|
public function testFLOORGnumeric1Arg(): void
|
|
{
|
|
self::setGnumeric();
|
|
$sheet = $this->getSheet();
|
|
$sheet->getCell('A1')->setValue('=FLOOR(5.1)');
|
|
$result = $sheet->getCell('A1')->getCalculatedValue();
|
|
self::assertEqualsWithDelta(5, $result, 1E-12);
|
|
}
|
|
|
|
public function testFLOOROpenOffice1Arg(): void
|
|
{
|
|
self::setOpenOffice();
|
|
$sheet = $this->getSheet();
|
|
$sheet->getCell('A1')->setValue('=FLOOR(5.1)');
|
|
$result = $sheet->getCell('A1')->getCalculatedValue();
|
|
self::assertEqualsWithDelta(5, $result, 1E-12);
|
|
}
|
|
|
|
public function testFLOORExcel1Arg(): void
|
|
{
|
|
$this->mightHaveException('exception');
|
|
$sheet = $this->getSheet();
|
|
$sheet->getCell('A1')->setValue('=FLOOR(5.1)');
|
|
$result = $sheet->getCell('A1')->getCalculatedValue();
|
|
self::assertEqualsWithDelta(5, $result, 1E-12);
|
|
}
|
|
|
|
#[DataProvider('providerFloorArray')]
|
|
public function testFloorArray(array $expectedResult, string $argument1, string $argument2): void
|
|
{
|
|
$calculation = Calculation::getInstance();
|
|
|
|
$formula = "=FLOOR({$argument1}, {$argument2})";
|
|
$result = $calculation->calculateFormula($formula);
|
|
self::assertEqualsWithDelta($expectedResult, $result, 1.0e-14);
|
|
}
|
|
|
|
public static function providerFloorArray(): array
|
|
{
|
|
return [
|
|
'matrix' => [[[3.14, 3.14], [3.14155, 3.141592]], '3.1415926536', '{0.01, 0.002; 0.00005, 0.000002}'],
|
|
];
|
|
}
|
|
}
|