mirror of
https://github.com/PHPOffice/PhpSpreadsheet.git
synced 2026-08-26 14:08:34 +00:00
3eedf9e2f0
Change "mixed" declarations to more accurate types in test members; in particular, change those that would be flagged if we were to run Phpstan at level 9 (we currently run level 8). I may or may not follow up with source code (over 700 level-9 problems remain for src), but, as with strict typing, there is no reason to avoid the effort for test members. It was necessary to update some doc blocks in src to accommodate this change. However, no executable code is touched.
102 lines
3.2 KiB
PHP
102 lines
3.2 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace PhpOffice\PhpSpreadsheetTests\Calculation\Functions\LookupRef;
|
|
|
|
use PhpOffice\PhpSpreadsheet\Calculation\Calculation;
|
|
|
|
class MatchTest extends AllSetupTeardown
|
|
{
|
|
/**
|
|
* @dataProvider providerMATCH
|
|
*/
|
|
public function testMATCH(mixed $expectedResult, mixed $input, array $array, null|float|int|string $type = null): void
|
|
{
|
|
if (is_array($expectedResult)) {
|
|
$expectedResult = $expectedResult[0];
|
|
}
|
|
if ($expectedResult === 'incomplete') {
|
|
self::markTestIncomplete('Undefined behavior with different results in Excel and PhpSpreadsheet');
|
|
}
|
|
$this->mightHaveException($expectedResult);
|
|
$sheet = $this->getSheet();
|
|
$maxRow = count($array);
|
|
$formulaArray = '';
|
|
for ($row = 1; $row <= $maxRow; ++$row) {
|
|
$this->setCell("A$row", $array[$row - 1]);
|
|
$formulaArray = "A1:A$row";
|
|
}
|
|
$this->setCell('B1', $input);
|
|
if ($type === null) {
|
|
$formula = "=MATCH(B1,$formulaArray)";
|
|
} else {
|
|
$formula = "=MATCH(B1, $formulaArray, $type)";
|
|
}
|
|
$sheet->getCell('D1')->setValue($formula);
|
|
|
|
$result = $sheet->getCell('D1')->getCalculatedValue();
|
|
self::assertEquals($expectedResult, $result);
|
|
}
|
|
|
|
/**
|
|
* @dataProvider providerMATCH
|
|
*/
|
|
public function testMATCHLibre(mixed $expectedResult, mixed $input, array $array, null|float|int|string $type = null): void
|
|
{
|
|
$this->setOpenOffice();
|
|
if (is_array($expectedResult)) {
|
|
$expectedResult = $expectedResult[1];
|
|
}
|
|
if ($expectedResult === 'incomplete') {
|
|
self::markTestIncomplete('Undefined behavior with different results in Excel and PhpSpreadsheet');
|
|
}
|
|
$this->mightHaveException($expectedResult);
|
|
$sheet = $this->getSheet();
|
|
$maxRow = count($array);
|
|
$formulaArray = '';
|
|
for ($row = 1; $row <= $maxRow; ++$row) {
|
|
$this->setCell("A$row", $array[$row - 1]);
|
|
$formulaArray = "A1:A$row";
|
|
}
|
|
$this->setCell('B1', $input);
|
|
if ($type === null) {
|
|
$formula = "=MATCH(B1,$formulaArray)";
|
|
} else {
|
|
$formula = "=MATCH(B1, $formulaArray, $type)";
|
|
}
|
|
$sheet->getCell('D1')->setValue($formula);
|
|
|
|
$result = $sheet->getCell('D1')->getCalculatedValue();
|
|
self::assertEquals($expectedResult, $result);
|
|
}
|
|
|
|
public static function providerMATCH(): array
|
|
{
|
|
return require 'tests/data/Calculation/LookupRef/MATCH.php';
|
|
}
|
|
|
|
/**
|
|
* @dataProvider providerMatchArray
|
|
*/
|
|
public function testMatchArray(array $expectedResult, string $values, string $selections): void
|
|
{
|
|
$calculation = Calculation::getInstance();
|
|
|
|
$formula = "=MATCH({$values}, {$selections}, 0)";
|
|
$result = $calculation->_calculateFormulaValue($formula);
|
|
self::assertEquals($expectedResult, $result);
|
|
}
|
|
|
|
public static function providerMatchArray(): array
|
|
{
|
|
return [
|
|
'row vector' => [
|
|
[[2, 5, 3]],
|
|
'{"Orange", "Blue", "Yellow"}',
|
|
'{"Red", "Orange", "Yellow", "Green", "Blue"}',
|
|
],
|
|
];
|
|
}
|
|
}
|