Files
PhpSpreadsheet/tests/PhpSpreadsheetTests/NamedFormulaTest.php
oleibman 84cc3b560f Php-cs-fixer Changes
Its latest update added some new stringencies, resulting in 62 messages. Used `composer fix` to take care of them.
2024-02-01 11:26:22 -08:00

144 lines
4.8 KiB
PHP

<?php
declare(strict_types=1);
namespace PhpOffice\PhpSpreadsheetTests;
use PhpOffice\PhpSpreadsheet\NamedFormula;
use PhpOffice\PhpSpreadsheet\Spreadsheet;
use PhpOffice\PhpSpreadsheet\Worksheet\Worksheet;
use PHPUnit\Framework\TestCase;
class NamedFormulaTest extends TestCase
{
private Spreadsheet $spreadsheet;
protected function setUp(): void
{
parent::setUp();
$this->spreadsheet = new Spreadsheet();
$this->spreadsheet->getActiveSheet()
->setTitle('Sheet #1');
$worksheet2 = new Worksheet();
$worksheet2->setTitle('Sheet #2');
$this->spreadsheet->addSheet($worksheet2);
$this->spreadsheet->setActiveSheetIndex(0);
}
public function testAddNamedRange(): void
{
$this->spreadsheet->addNamedFormula(
new NamedFormula('Foo', $this->spreadsheet->getActiveSheet(), '=19%')
);
self::assertCount(1, $this->spreadsheet->getDefinedNames());
self::assertCount(1, $this->spreadsheet->getNamedFormulae());
self::assertCount(0, $this->spreadsheet->getNamedRanges());
}
public function testAddDuplicateNamedRange(): void
{
$this->spreadsheet->addNamedFormula(
new NamedFormula('Foo', $this->spreadsheet->getActiveSheet(), '=19%')
);
$this->spreadsheet->addNamedFormula(
new NamedFormula('FOO', $this->spreadsheet->getActiveSheet(), '=16%')
);
self::assertCount(1, $this->spreadsheet->getNamedFormulae());
$formula = $this->spreadsheet->getNamedFormula('foo', $this->spreadsheet->getActiveSheet());
self::assertNotNull($formula);
self::assertSame(
'=16%',
$formula->getValue()
);
}
public function testAddScopedNamedFormulaWithSameName(): void
{
$this->spreadsheet->addNamedFormula(
new NamedFormula('Foo', $this->spreadsheet->getActiveSheet(), '=19%')
);
$this->spreadsheet->addNamedFormula(
new NamedFormula('FOO', $this->spreadsheet->getSheetByNameOrThrow('Sheet #2'), '=16%', true)
);
self::assertCount(2, $this->spreadsheet->getNamedFormulae());
$formula = $this->spreadsheet->getNamedFormula('foo', $this->spreadsheet->getActiveSheet());
self::assertNotNull($formula);
self::assertSame(
'=19%',
$formula->getValue()
);
$formula = $this->spreadsheet->getNamedFormula('foo', $this->spreadsheet->getSheetByNameOrThrow('Sheet #2'));
self::assertNotNull($formula);
self::assertSame(
'=16%',
$formula->getValue()
);
}
public function testRemoveNamedFormula(): void
{
$this->spreadsheet->addDefinedName(
new NamedFormula('Foo', $this->spreadsheet->getActiveSheet(), '=16%')
);
$this->spreadsheet->addDefinedName(
new NamedFormula('Bar', $this->spreadsheet->getActiveSheet(), '=19%')
);
$this->spreadsheet->removeNamedFormula('Foo', $this->spreadsheet->getActiveSheet());
self::assertCount(1, $this->spreadsheet->getNamedFormulae());
}
public function testRemoveGlobalNamedFormulaWhenDuplicateNames(): void
{
$this->spreadsheet->addNamedFormula(
new NamedFormula('Foo', $this->spreadsheet->getActiveSheet(), '=19%')
);
$this->spreadsheet->addNamedFormula(
new NamedFormula('FOO', $this->spreadsheet->getSheetByNameOrThrow('Sheet #2'), '=16%', true)
);
$this->spreadsheet->removeNamedFormula('Foo', $this->spreadsheet->getActiveSheet());
self::assertCount(1, $this->spreadsheet->getNamedFormulae());
$formula = $this->spreadsheet->getNamedFormula('foo', $this->spreadsheet->getSheetByNameOrThrow('Sheet #2'));
self::assertNotNull($formula);
self::assertSame(
'=16%',
$formula->getValue()
);
}
public function testRemoveScopedNamedFormulaWhenDuplicateNames(): void
{
$this->spreadsheet->addNamedFormula(
new NamedFormula('Foo', $this->spreadsheet->getActiveSheet(), '=19%')
);
$this->spreadsheet->addNamedFormula(
new NamedFormula('FOO', $this->spreadsheet->getSheetByNameOrThrow('Sheet #2'), '=16%', true)
);
$this->spreadsheet->removeNamedFormula('Foo', $this->spreadsheet->getSheetByNameOrThrow('Sheet #2'));
self::assertCount(1, $this->spreadsheet->getNamedFormulae());
$formula = $this->spreadsheet->getNamedFormula('foo');
self::assertNotNull($formula);
self::assertSame(
'=19%',
$formula->getValue()
);
}
public function testRemoveNonExistentNamedFormula(): void
{
self::assertCount(0, $this->spreadsheet->getNamedFormulae());
$this->spreadsheet->removeNamedFormula('Any');
}
}