Files
oleibman 70b4ecd4d3 Use calculateFormula Rather Than _calculateFormulaValue in Tests
They aren't quite interchangeable. Both are used in the test suite, with no indication of why one or the other. I think we'd be best off being consistent. Based on the names, I think `_calculateFormulaValue` was intended as a private, or at least internal, method, so favor `calculateFormula`. I do not intend to rename or re-categorize `_calculateFormulaValue`, just remove its usage when it isn't clearly warranted.
2025-11-13 20:48:46 -08:00

70 lines
2.4 KiB
PHP

<?php
declare(strict_types=1);
namespace PhpOffice\PhpSpreadsheetTests\Calculation\Functions\TextData;
use PhpOffice\PhpSpreadsheet\Calculation\Calculation;
use PHPUnit\Framework\Attributes\DataProvider;
class ReplaceTest extends AllSetupTeardown
{
#[DataProvider('providerREPLACE')]
public function testREPLACE(mixed $expectedResult, mixed $oldText = 'omitted', mixed $start = 'omitted', mixed $count = 'omitted', mixed $newText = 'omitted'): void
{
$this->mightHaveException($expectedResult);
$sheet = $this->getSheet();
if ($oldText === 'omitted') {
$sheet->getCell('B1')->setValue('=REPLACE()');
} elseif ($start === 'omitted') {
$this->setCell('A1', $oldText);
$sheet->getCell('B1')->setValue('=REPLACE(A1)');
} elseif ($count === 'omitted') {
$this->setCell('A1', $oldText);
$this->setCell('A2', $start);
$sheet->getCell('B1')->setValue('=REPLACE(A1, A2)');
} elseif ($newText === 'omitted') {
$this->setCell('A1', $oldText);
$this->setCell('A2', $start);
$this->setCell('A3', $count);
$sheet->getCell('B1')->setValue('=REPLACE(A1, A2, A3)');
} else {
$this->setCell('A1', $oldText);
$this->setCell('A2', $start);
$this->setCell('A3', $count);
$this->setCell('A4', $newText);
$sheet->getCell('B1')->setValue('=REPLACE(A1, A2, A3, A4)');
}
$result = $sheet->getCell('B1')->getCalculatedValue();
self::assertEquals($expectedResult, $result);
}
public static function providerREPLACE(): array
{
return require 'tests/data/Calculation/TextData/REPLACE.php';
}
/** @param mixed[] $expectedResult */
#[DataProvider('providerReplaceArray')]
public function testReplaceArray(
array $expectedResult,
string $oldText,
string $start,
string $chars,
string $newText
): void {
$calculation = Calculation::getInstance();
$formula = "=REPLACE({$oldText}, {$start}, {$chars}, {$newText})";
$result = $calculation->calculateFormula($formula);
self::assertSame($expectedResult, $result);
}
public static function providerReplaceArray(): array
{
return [
'row vector' => [[['Elephpant', 'ElePHPant']], '"Elephant"', '4', '2', '{"php", "PHP"}'],
];
}
}