Files
PhpSpreadsheet/tests/PhpSpreadsheetTests/Style/ConditionalFormatting/Wizard/TextValueWizardTest.php
T
Adrien Crivelli ec4098c8fd Strict mode for all tests
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.
2023-09-07 17:44:56 +08:00

156 lines
6.0 KiB
PHP

<?php
declare(strict_types=1);
namespace PhpOffice\PhpSpreadsheetTests\Style\ConditionalFormatting\Wizard;
use PhpOffice\PhpSpreadsheet\Exception;
use PhpOffice\PhpSpreadsheet\Style\Conditional;
use PhpOffice\PhpSpreadsheet\Style\ConditionalFormatting\Wizard;
use PhpOffice\PhpSpreadsheet\Style\Style;
use PHPUnit\Framework\TestCase;
class TextValueWizardTest extends TestCase
{
/**
* @var Style
*/
protected $style;
/**
* @var string
*/
protected $range = '$C$3:$E$5';
/**
* @var Wizard
*/
protected $wizardFactory;
protected function setUp(): void
{
$this->wizardFactory = new Wizard($this->range);
$this->style = new Style();
}
public function testTextContainsWizardWithText(): void
{
$ruleType = Wizard::TEXT_VALUE;
/** @var Wizard\TextValue $textWizard */
$textWizard = $this->wizardFactory->newRule($ruleType);
self::assertInstanceOf(Wizard\TextValue::class, $textWizard);
$textWizard->setStyle($this->style);
$textWizard->contains('LL');
$conditional = $textWizard->getConditional();
self::assertSame(Conditional::CONDITION_CONTAINSTEXT, $conditional->getConditionType());
self::assertSame(Conditional::OPERATOR_CONTAINSTEXT, $conditional->getOperatorType());
self::assertSame('LL', $conditional->getText());
$conditions = $conditional->getConditions();
self::assertSame(['NOT(ISERROR(SEARCH("LL",C3)))'], $conditions);
$newWizard = Wizard::fromConditional($conditional, $this->range);
$newWizard->getConditional();
self::assertEquals($newWizard, $textWizard, 'fromConditional() Failure');
}
public function testTextContainsWizardWithCellReference(): void
{
$ruleType = Wizard::TEXT_VALUE;
/** @var Wizard\TextValue $textWizard */
$textWizard = $this->wizardFactory->newRule($ruleType);
self::assertInstanceOf(Wizard\TextValue::class, $textWizard);
$textWizard->setStyle($this->style);
$textWizard->contains('$A1', Wizard::VALUE_TYPE_CELL);
$conditional = $textWizard->getConditional();
self::assertSame(Conditional::CONDITION_CONTAINSTEXT, $conditional->getConditionType());
self:self::assertSame(Conditional::OPERATOR_CONTAINSTEXT, $conditional->getOperatorType());
self::assertSame('$A3', $conditional->getText());
$conditions = $conditional->getConditions();
self::assertSame(['NOT(ISERROR(SEARCH($A3,C3)))'], $conditions);
$newWizard = Wizard::fromConditional($conditional, $this->range);
$newWizard->getConditional();
self::assertEquals($newWizard, $textWizard, 'fromConditional() Failure');
}
public function testTextNotContainsWizardWithText(): void
{
$ruleType = Wizard::TEXT_VALUE;
/** @var Wizard\TextValue $textWizard */
$textWizard = $this->wizardFactory->newRule($ruleType);
self::assertInstanceOf(Wizard\TextValue::class, $textWizard);
$textWizard->setStyle($this->style);
$textWizard->doesNotContain('LL');
$conditional = $textWizard->getConditional();
self::assertSame(Conditional::CONDITION_NOTCONTAINSTEXT, $conditional->getConditionType());
self:self::assertSame(Conditional::OPERATOR_NOTCONTAINS, $conditional->getOperatorType());
self::assertSame('LL', $conditional->getText());
$conditions = $conditional->getConditions();
self::assertSame(['ISERROR(SEARCH("LL",C3))'], $conditions);
$newWizard = Wizard::fromConditional($conditional, $this->range);
$newWizard->getConditional();
self::assertEquals($newWizard, $textWizard, 'fromConditional() Failure');
}
public function testTextBeginsWithWizardWithText(): void
{
$ruleType = Wizard::TEXT_VALUE;
/** @var Wizard\TextValue $textWizard */
$textWizard = $this->wizardFactory->newRule($ruleType);
self::assertInstanceOf(Wizard\TextValue::class, $textWizard);
$textWizard->setStyle($this->style);
$textWizard->beginsWith('LL');
$conditional = $textWizard->getConditional();
self::assertSame(Conditional::CONDITION_BEGINSWITH, $conditional->getConditionType());
self:self::assertSame(Conditional::OPERATOR_BEGINSWITH, $conditional->getOperatorType());
self::assertSame('LL', $conditional->getText());
$conditions = $conditional->getConditions();
self::assertSame(['LEFT(C3,LEN("LL"))="LL"'], $conditions);
$newWizard = Wizard::fromConditional($conditional, $this->range);
$newWizard->getConditional();
self::assertEquals($newWizard, $textWizard, 'fromConditional() Failure');
}
public function testTextEndsWithWizardWithText(): void
{
$ruleType = Wizard::TEXT_VALUE;
/** @var Wizard\TextValue $textWizard */
$textWizard = $this->wizardFactory->newRule($ruleType);
self::assertInstanceOf(Wizard\TextValue::class, $textWizard);
$textWizard->setStyle($this->style);
$textWizard->endsWith('LL');
$conditional = $textWizard->getConditional();
self::assertSame(Conditional::CONDITION_ENDSWITH, $conditional->getConditionType());
self:self::assertSame(Conditional::OPERATOR_ENDSWITH, $conditional->getOperatorType());
$conditions = $conditional->getConditions();
self::assertSame(['RIGHT(C3,LEN("LL"))="LL"'], $conditions);
$newWizard = Wizard::fromConditional($conditional, $this->range);
$newWizard->getConditional();
self::assertEquals($newWizard, $textWizard, 'fromConditional() Failure');
}
public function testInvalidFromConditional(): void
{
$ruleType = 'Unknown';
$this->expectException(Exception::class);
$this->expectExceptionMessage('Conditional is not a Text Value CF Rule conditional');
$conditional = new Conditional();
$conditional->setConditionType($ruleType);
Wizard\TextValue::fromConditional($conditional);
}
}