mirror of
https://github.com/PHPOffice/PhpSpreadsheet.git
synced 2026-09-19 06:26:48 +00:00
a91dd60a98
Also enforce more rigorous Excel Function implementation by testing the underlying implementation, call via the Calc Engine, and execution from in a worksheet. Separate out unhappy path (exception) checks into a separate test, so that a single test isn't made overcomplex checking for every potentiality. Scrutinizer may dislike variadics, for variable number of arguments of mixed type; but tough. It's 100% valid PHP, accepted by phpstan, and makes life a lot easier. Initial work here covers all the database and datetime unit tests for Excel function implementations.
98 lines
2.6 KiB
PHP
98 lines
2.6 KiB
PHP
<?php
|
|
|
|
namespace PhpOffice\PhpSpreadsheetTests\Calculation\Functions\Database;
|
|
|
|
use PhpOffice\PhpSpreadsheet\Calculation\Database\DStDevP;
|
|
use PhpOffice\PhpSpreadsheet\Calculation\Information\ExcelError;
|
|
|
|
class DStDevPTest extends SetupTeardownDatabases
|
|
{
|
|
/**
|
|
* @dataProvider providerDStDevP
|
|
*
|
|
* @param mixed $expectedResult
|
|
* @param mixed $database
|
|
* @param mixed $field
|
|
* @param mixed $criteria
|
|
*/
|
|
public function testDirectCallToDStDevP($expectedResult, $database, $field, $criteria): void
|
|
{
|
|
$result = DStDevP::evaluate($database, $field, $criteria);
|
|
self::assertEqualsWithDelta($expectedResult, $result, 1.0e-12);
|
|
}
|
|
|
|
/**
|
|
* @dataProvider providerDStDevP
|
|
*
|
|
* @param mixed $expectedResult
|
|
* @param mixed $database
|
|
* @param mixed $field
|
|
* @param mixed $criteria
|
|
*/
|
|
public function testDStDevPAsWorksheetFormula($expectedResult, $database, $field, $criteria): void
|
|
{
|
|
$this->prepareWorksheetWithFormula('DSTDEVP', $database, $field, $criteria);
|
|
|
|
$result = $this->getSheet()->getCell(self::RESULT_CELL)->getCalculatedValue();
|
|
self::assertEqualsWithDelta($expectedResult, $result, 1.0e-12);
|
|
}
|
|
|
|
public function providerDStDevP(): array
|
|
{
|
|
return [
|
|
[
|
|
2.653299832284,
|
|
$this->database1(),
|
|
'Yield',
|
|
[
|
|
['Tree'],
|
|
['=Apple'],
|
|
['=Pear'],
|
|
],
|
|
],
|
|
[
|
|
0.085244745684,
|
|
$this->database3FilledIn(),
|
|
'Score',
|
|
[
|
|
['Subject', 'Gender'],
|
|
['English', 'Male'],
|
|
],
|
|
],
|
|
[
|
|
0.160623784042,
|
|
$this->database3FilledIn(),
|
|
'Score',
|
|
[
|
|
['Subject', 'Age'],
|
|
['Math', '>8'],
|
|
],
|
|
],
|
|
[
|
|
0.01,
|
|
$this->database3(),
|
|
'Score',
|
|
[
|
|
['Subject', 'Gender'],
|
|
['English', 'Male'],
|
|
],
|
|
],
|
|
[
|
|
0,
|
|
$this->database3(),
|
|
'Score',
|
|
[
|
|
['Subject', 'Age'],
|
|
['Math', '>8'],
|
|
],
|
|
],
|
|
'omitted field name' => [
|
|
ExcelError::VALUE(),
|
|
$this->database1(),
|
|
null,
|
|
$this->database1(),
|
|
],
|
|
];
|
|
}
|
|
}
|