mirror of
https://github.com/PHPOffice/PhpSpreadsheet.git
synced 2026-09-22 16:19:19 +00:00
ec4098c8fd
While we might never be able to have 100% of our code strict, we can at the very least do it for all of our tests. This ensures that our tests are using our API with the types as intended by the test author, and not silently be cast to what our API requires.
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, mixed $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, mixed $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"}',
|
|
],
|
|
];
|
|
}
|
|
}
|