mirror of
https://github.com/PHPOffice/PhpSpreadsheet.git
synced 2026-09-09 01:26:51 +00:00
6fd24cad58
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
91 lines
2.5 KiB
PHP
91 lines
2.5 KiB
PHP
<?php
|
|
|
|
namespace PhpOffice\PhpSpreadsheetTests\Calculation\Functions\Database;
|
|
|
|
use PhpOffice\PhpSpreadsheet\Calculation\Database\DCountA;
|
|
use PhpOffice\PhpSpreadsheet\Calculation\Information\ExcelError;
|
|
|
|
class DCountATest extends AllSetupTeardown
|
|
{
|
|
/**
|
|
* @dataProvider providerDCountA
|
|
*
|
|
* @param mixed $expectedResult
|
|
* @param mixed $database
|
|
* @param mixed $field
|
|
* @param mixed $criteria
|
|
*/
|
|
public function testDirectCallToDCountA($expectedResult, $database, $field, $criteria): void
|
|
{
|
|
$result = DCountA::evaluate($database, $field, $criteria);
|
|
self::assertEqualsWithDelta($expectedResult, $result, 1.0e-12);
|
|
}
|
|
|
|
/**
|
|
* @dataProvider providerDCountA
|
|
*
|
|
* @param mixed $expectedResult
|
|
* @param mixed $database
|
|
* @param mixed $field
|
|
* @param mixed $criteria
|
|
*/
|
|
public function testDCountAAsWorksheetFormula($expectedResult, $database, $field, $criteria): void
|
|
{
|
|
$this->prepareWorksheetWithFormula('DCOUNTA', $database, $field, $criteria);
|
|
|
|
$result = $this->getSheet()->getCell(self::RESULT_CELL)->getCalculatedValue();
|
|
self::assertEqualsWithDelta($expectedResult, $result, 1.0e-12);
|
|
}
|
|
|
|
public function providerDCountA(): array
|
|
{
|
|
return [
|
|
[
|
|
1,
|
|
$this->database1(),
|
|
'Profit',
|
|
[
|
|
['Tree', 'Height', 'Height'],
|
|
['=Apple', '>10', '<16'],
|
|
],
|
|
],
|
|
[
|
|
2,
|
|
$this->database3(),
|
|
'Score',
|
|
[
|
|
['Subject', 'Gender'],
|
|
['Science', 'Male'],
|
|
],
|
|
],
|
|
[
|
|
1,
|
|
$this->database3(),
|
|
'Score',
|
|
[
|
|
['Subject', 'Gender'],
|
|
['Math', 'Female'],
|
|
],
|
|
],
|
|
[
|
|
3,
|
|
$this->database3(),
|
|
'Score',
|
|
[
|
|
['Subject', 'Score'],
|
|
['English', '>60%'],
|
|
],
|
|
],
|
|
'invalid field name' => [
|
|
ExcelError::VALUE(),
|
|
$this->database3(),
|
|
'Scorex',
|
|
[
|
|
['Subject', 'Score'],
|
|
['English', '>60%'],
|
|
],
|
|
],
|
|
];
|
|
}
|
|
}
|