Files
MarkBaker 6fd24cad58 Refactor database tests to execute the test itself and check assertions in the main test function, not in the base class
Test both the function implementation (directly), and when the function is called in a formula from a spreadsheet
Replace error strings in expected result for providers with the value returned from the ExcelErrors class
2022-12-08 12:49:19 +01:00

90 lines
2.4 KiB
PHP

<?php
namespace PhpOffice\PhpSpreadsheetTests\Calculation\Functions\Database;
use PhpOffice\PhpSpreadsheet\Calculation\Database\DGet;
use PhpOffice\PhpSpreadsheet\Calculation\Information\ExcelError;
class DGetTest extends AllSetupTeardown
{
/**
* @dataProvider providerDGet
*
* @param mixed $expectedResult
* @param mixed $database
* @param mixed $field
* @param mixed $criteria
*/
public function testDirectCallToDGet($expectedResult, $database, $field, $criteria): void
{
$result = DGet::evaluate($database, $field, $criteria);
self::assertEqualsWithDelta($expectedResult, $result, 1.0e-12);
}
/**
* @dataProvider providerDGet
*
* @param mixed $expectedResult
* @param mixed $database
* @param mixed $field
* @param mixed $criteria
*/
public function testDGetAsWorksheetFormula($expectedResult, $database, $field, $criteria): void
{
$this->prepareWorksheetWithFormula('DGET', $database, $field, $criteria);
$result = $this->getSheet()->getCell(self::RESULT_CELL)->getCalculatedValue();
self::assertEqualsWithDelta($expectedResult, $result, 1.0e-12);
}
public function providerDGet(): array
{
return [
[
ExcelError::NAN(),
$this->database1(),
'Yield',
[
['Tree'],
['=Apple'],
['=Pear'],
],
],
[
10,
$this->database1(),
'Yield',
[
['Tree', 'Height', 'Height'],
['=Apple', '>10', '<16'],
['=Pear', '>12', null],
],
],
[
188000,
$this->database2(),
'Sales',
[
['Sales Rep.', 'Quarter'],
['Tina', 4],
],
],
[
ExcelError::NAN(),
$this->database2(),
'Sales',
[
['Area', 'Quarter'],
['South', 4],
],
],
'omitted field name' => [
ExcelError::VALUE(),
$this->database1(),
null,
$this->database1(),
],
];
}
}