mirror of
https://github.com/PHPOffice/PhpSpreadsheet.git
synced 2026-08-31 12:40:00 +00:00
77 lines
2.2 KiB
PHP
77 lines
2.2 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace PhpOffice\PhpSpreadsheetTests\Calculation\Functions\Database;
|
|
|
|
use PhpOffice\PhpSpreadsheet\Calculation\Database\DVar;
|
|
use PhpOffice\PhpSpreadsheet\Calculation\Information\ExcelError;
|
|
use PHPUnit\Framework\Attributes\DataProvider;
|
|
|
|
class DVarTest extends SetupTeardownDatabases
|
|
{
|
|
/**
|
|
* @param mixed[] $database
|
|
* @param mixed[][] $criteria
|
|
*/
|
|
#[DataProvider('providerDVar')]
|
|
public function testDirectCallToDVar(float|string $expectedResult, array $database, ?string $field, array $criteria): void
|
|
{
|
|
$result = DVar::evaluate($database, $field, $criteria);
|
|
self::assertEqualsWithDelta($expectedResult, $result, 1.0e-12);
|
|
}
|
|
|
|
/**
|
|
* @param mixed[] $database
|
|
* @param mixed[][] $criteria
|
|
*/
|
|
#[DataProvider('providerDVar')]
|
|
public function testDVarAsWorksheetFormula(float|string $expectedResult, array $database, ?string $field, array $criteria): void
|
|
{
|
|
$this->prepareWorksheetWithFormula('DVAR', $database, $field, $criteria);
|
|
|
|
$result = $this->getSheet()->getCell(self::RESULT_CELL)->getCalculatedValue();
|
|
self::assertEqualsWithDelta($expectedResult, $result, 1.0e-12);
|
|
}
|
|
|
|
public static function providerDVar(): array
|
|
{
|
|
return [
|
|
[
|
|
8.8,
|
|
self::database1(),
|
|
'Yield',
|
|
[
|
|
['Tree'],
|
|
['=Apple'],
|
|
['=Pear'],
|
|
],
|
|
],
|
|
[
|
|
0.038433333333,
|
|
self::database3FilledIn(),
|
|
'Score',
|
|
[
|
|
['Subject', 'Gender'],
|
|
['Math', 'Male'],
|
|
],
|
|
],
|
|
[
|
|
0.017433333333,
|
|
self::database3FilledIn(),
|
|
'Score',
|
|
[
|
|
['Subject', 'Age'],
|
|
['Science', '>8'],
|
|
],
|
|
],
|
|
'omitted field name' => [
|
|
ExcelError::VALUE(),
|
|
self::database1(),
|
|
null,
|
|
self::database1(),
|
|
],
|
|
];
|
|
}
|
|
}
|