mirror of
https://github.com/PHPOffice/PhpSpreadsheet.git
synced 2026-08-30 12:07:56 +00:00
298 lines
11 KiB
PHP
298 lines
11 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace PhpOffice\PhpSpreadsheetTests\Cell;
|
|
|
|
use PhpOffice\PhpSpreadsheet\Cell\AdvancedValueBinder;
|
|
use PhpOffice\PhpSpreadsheet\Cell\Cell;
|
|
use PhpOffice\PhpSpreadsheet\Cell\DataType;
|
|
use PhpOffice\PhpSpreadsheet\Cell\DefaultValueBinder;
|
|
use PhpOffice\PhpSpreadsheet\Cell\StringValueBinder;
|
|
use PhpOffice\PhpSpreadsheet\Exception;
|
|
use PhpOffice\PhpSpreadsheet\Spreadsheet;
|
|
use PhpOffice\PhpSpreadsheet\Style\Color;
|
|
use PhpOffice\PhpSpreadsheet\Style\ConditionalFormatting\Wizard;
|
|
use PhpOffice\PhpSpreadsheet\Style\Fill;
|
|
use PhpOffice\PhpSpreadsheet\Style\Style;
|
|
use PHPUnit\Framework\Attributes\DataProvider;
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
class CellTest extends TestCase
|
|
{
|
|
private ?Spreadsheet $spreadsheet = null;
|
|
|
|
protected function setUp(): void
|
|
{
|
|
Cell::setValueBinder(new DefaultValueBinder());
|
|
}
|
|
|
|
protected function tearDown(): void
|
|
{
|
|
Cell::setValueBinder(new DefaultValueBinder());
|
|
if ($this->spreadsheet !== null) {
|
|
$this->spreadsheet->disconnectWorksheets();
|
|
$this->spreadsheet = null;
|
|
}
|
|
}
|
|
|
|
private function createSolidFillStyle(string $color): Style
|
|
{
|
|
$style = new Style(false, true);
|
|
$style->getFill()
|
|
->setFillType(Fill::FILL_SOLID)
|
|
->getStartColor()->setARGB($color);
|
|
|
|
return $style;
|
|
}
|
|
|
|
public function testSetValueBinderOverride(): void
|
|
{
|
|
$value = '12.5%';
|
|
$spreadsheet = new Spreadsheet();
|
|
|
|
$cell = $spreadsheet->getActiveSheet()->getCell('A1');
|
|
$cell->setValue($value); // Using the Default Value Binder
|
|
|
|
self::assertSame('12.5%', $cell->getValue());
|
|
self::assertSame('General', $cell->getStyle()->getNumberFormat()->getFormatCode());
|
|
|
|
$cell = $spreadsheet->getActiveSheet()->getCell('A2');
|
|
$cell->setValue($value, new AdvancedValueBinder()); // Overriding the Default Value Binder
|
|
|
|
self::assertSame(0.125, $cell->getValue());
|
|
self::assertSame('0.00%', $cell->getStyle()->getNumberFormat()->getFormatCode());
|
|
|
|
$spreadsheet->disconnectWorksheets();
|
|
}
|
|
|
|
public function testSetValueBinderOverride2(): void
|
|
{
|
|
$value = '12.5%';
|
|
$spreadsheet = new Spreadsheet();
|
|
Cell::setValueBinder(new AdvancedValueBinder());
|
|
|
|
$cell = $spreadsheet->getActiveSheet()->getCell('A1');
|
|
$cell->setValue($value); // Using the Advanced Value Binder
|
|
|
|
self::assertSame(0.125, $cell->getValue());
|
|
self::assertSame('0.00%', $cell->getStyle()->getNumberFormat()->getFormatCode());
|
|
|
|
$cell = $spreadsheet->getActiveSheet()->getCell('A2');
|
|
$cell->setValue($value, new StringValueBinder()); // Overriding the Advanced Value Binder
|
|
|
|
self::assertSame('12.5%', $cell->getValue());
|
|
self::assertSame('General', $cell->getStyle()->getNumberFormat()->getFormatCode());
|
|
|
|
$spreadsheet->disconnectWorksheets();
|
|
}
|
|
|
|
#[DataProvider('providerSetValueExplicit')]
|
|
public function testSetValueExplicit(mixed $expected, mixed $value, string $dataType): void
|
|
{
|
|
$spreadsheet = new Spreadsheet();
|
|
$cell = $spreadsheet->getActiveSheet()->getCell('A1');
|
|
$cell->setValueExplicit($value, $dataType);
|
|
|
|
self::assertSame($expected, $cell->getValue());
|
|
$spreadsheet->disconnectWorksheets();
|
|
}
|
|
|
|
public static function providerSetValueExplicit(): array
|
|
{
|
|
return require 'tests/data/Cell/SetValueExplicit.php';
|
|
}
|
|
|
|
public function testInvalidIsoDateSetValueExplicit(): void
|
|
{
|
|
$this->spreadsheet = new Spreadsheet();
|
|
$cell = $this->spreadsheet->getActiveSheet()->getCell('A1');
|
|
|
|
$dateValue = '2022-02-29'; // Invalid leap year
|
|
$this->expectException(Exception::class);
|
|
$this->expectExceptionMessage("Invalid string {$dateValue} supplied for datatype Date");
|
|
$cell->setValueExplicit($dateValue, DataType::TYPE_ISO_DATE);
|
|
}
|
|
|
|
#[DataProvider('providerSetValueExplicitException')]
|
|
public function testSetValueExplicitException(mixed $value, string $dataType, string $message): void
|
|
{
|
|
$this->expectException(Exception::class);
|
|
$this->expectExceptionMessage($message);
|
|
|
|
$this->spreadsheet = new Spreadsheet();
|
|
$cell = $this->spreadsheet->getActiveSheet()->getCell('A1');
|
|
$cell->setValueExplicit($value, $dataType);
|
|
}
|
|
|
|
public static function providerSetValueExplicitException(): array
|
|
{
|
|
return require 'tests/data/Cell/SetValueExplicitException.php';
|
|
}
|
|
|
|
public function testNoChangeToActiveSheet(): void
|
|
{
|
|
$spreadsheet = new Spreadsheet();
|
|
$sheet1 = $spreadsheet->getActiveSheet();
|
|
$sheet1->setTitle('Sheet 1');
|
|
$sheet3 = $spreadsheet->createSheet();
|
|
$sheet3->setTitle('Sheet 3');
|
|
$sheet1->setCellValue('C1', 123);
|
|
$sheet1->setCellValue('D1', 124);
|
|
$sheet3->setCellValue('A1', "='Sheet 1'!C1+'Sheet 1'!D1");
|
|
$sheet1->setCellValue('A1', "='Sheet 3'!A1");
|
|
$spreadsheet->setActiveSheetIndex(0);
|
|
self::assertSame(0, $spreadsheet->getActiveSheetIndex());
|
|
$value = $spreadsheet->getActiveSheet()->getCell('A1')->getCalculatedValue();
|
|
self::assertSame(0, $spreadsheet->getActiveSheetIndex());
|
|
self::assertSame(247, $value);
|
|
$spreadsheet->disconnectWorksheets();
|
|
}
|
|
|
|
public function testDestroyWorksheet(): void
|
|
{
|
|
$spreadsheet = new Spreadsheet();
|
|
$sheet = $spreadsheet->getActiveSheet();
|
|
$cell = $sheet->getCell('A1');
|
|
self::assertSame($sheet, $cell->getWorksheet());
|
|
$this->expectException(Exception::class);
|
|
$this->expectExceptionMessage('Worksheet no longer exists');
|
|
$spreadsheet->disconnectWorksheets();
|
|
$cell->getWorksheet();
|
|
}
|
|
|
|
public function testDestroyCell1(): void
|
|
{
|
|
$spreadsheet = new Spreadsheet();
|
|
$sheet = $spreadsheet->getActiveSheet();
|
|
$cell = $sheet->getCell('A1');
|
|
self::assertSame('A1', $cell->getCoordinate());
|
|
$this->expectException(Exception::class);
|
|
$this->expectExceptionMessage('Coordinate no longer exists');
|
|
$spreadsheet->disconnectWorksheets();
|
|
$cell->getCoordinate();
|
|
}
|
|
|
|
public function testDestroyCell2(): void
|
|
{
|
|
$this->spreadsheet = new Spreadsheet();
|
|
$sheet = $this->spreadsheet->getActiveSheet();
|
|
$cell = $sheet->getCell('A1');
|
|
self::assertSame('A1', $cell->getCoordinate());
|
|
$this->expectException(Exception::class);
|
|
$this->expectExceptionMessage('Coordinate no longer exists');
|
|
$parent = $cell->getParent();
|
|
self::assertNotNull($parent, 'Parent should not be null');
|
|
$parent->delete('A1');
|
|
$cell->getCoordinate();
|
|
}
|
|
|
|
public function testAppliedStyleWithRange(): void
|
|
{
|
|
$spreadsheet = new Spreadsheet();
|
|
$sheet = $spreadsheet->getActiveSheet();
|
|
$sheet->setCellValue('A1', -1);
|
|
$sheet->setCellValue('A2', 0);
|
|
$sheet->setCellValue('A3', 1);
|
|
|
|
$cellRange = 'A1:A3';
|
|
$sheet->getStyle($cellRange)->getFont()->setBold(true);
|
|
|
|
$yellowStyle = $this->createSolidFillStyle(Color::COLOR_YELLOW);
|
|
$greenStyle = $this->createSolidFillStyle(Color::COLOR_GREEN);
|
|
$redStyle = $this->createSolidFillStyle(Color::COLOR_RED);
|
|
|
|
$wizardFactory = new Wizard($cellRange);
|
|
/** @var Wizard\CellValue $cellWizard */
|
|
$cellWizard = $wizardFactory->newRule(Wizard::CELL_VALUE);
|
|
|
|
$conditionalStyles = [];
|
|
$cellWizard->equals(0)->setStyle($yellowStyle);
|
|
$conditionalStyles[] = $cellWizard->getConditional();
|
|
|
|
$cellWizard->greaterThan(0)->setStyle($greenStyle);
|
|
$conditionalStyles[] = $cellWizard->getConditional();
|
|
|
|
$cellWizard->lessThan(0)->setStyle($redStyle);
|
|
$conditionalStyles[] = $cellWizard->getConditional();
|
|
|
|
$sheet->getStyle($cellWizard->getCellRange())
|
|
->setConditionalStyles($conditionalStyles);
|
|
|
|
$style = $sheet->getCell('A1')->getAppliedStyle();
|
|
self::assertTrue($style->getFont()->getBold());
|
|
self::assertSame($redStyle->getFill()->getFillType(), $style->getFill()->getFillType());
|
|
self::assertSame($redStyle->getFill()->getStartColor()->getARGB(), $style->getFill()->getStartColor()->getARGB());
|
|
|
|
$style = $sheet->getCell('A2')->getAppliedStyle();
|
|
self::assertTrue($style->getFont()->getBold());
|
|
self::assertSame($yellowStyle->getFill()->getFillType(), $style->getFill()->getFillType());
|
|
self::assertSame(
|
|
$yellowStyle->getFill()->getStartColor()->getARGB(),
|
|
$style->getFill()->getStartColor()->getARGB()
|
|
);
|
|
|
|
$style = $sheet->getCell('A3')->getAppliedStyle();
|
|
self::assertTrue($style->getFont()->getBold());
|
|
self::assertSame($greenStyle->getFill()->getFillType(), $style->getFill()->getFillType());
|
|
self::assertSame(
|
|
$greenStyle->getFill()->getStartColor()->getARGB(),
|
|
$style->getFill()->getStartColor()->getARGB()
|
|
);
|
|
$spreadsheet->disconnectWorksheets();
|
|
}
|
|
|
|
#[DataProvider('appliedStylingProvider')]
|
|
public function testAppliedStyleSingleCell(string $cellAddress, string $fillStyle, ?string $fillColor): void
|
|
{
|
|
$spreadsheet = new Spreadsheet();
|
|
$sheet = $spreadsheet->getActiveSheet();
|
|
$sheet->setCellValue('A1', -1);
|
|
$sheet->setCellValue('A2', 0);
|
|
$sheet->setCellValue('B1', 0);
|
|
$sheet->setCellValue('C1', 1);
|
|
$sheet->setCellValue('C2', -1);
|
|
|
|
$cellRange = 'A1:C2';
|
|
$sheet->getStyle($cellRange)->getFont()->setBold(true);
|
|
|
|
$yellowStyle = $this->createSolidFillStyle(Color::COLOR_YELLOW);
|
|
$redStyle = $this->createSolidFillStyle(Color::COLOR_RED);
|
|
|
|
$conditionalCellRange = 'A1:C1';
|
|
$conditionalStyles = [];
|
|
$wizardFactory = new Wizard($conditionalCellRange);
|
|
/** @var Wizard\CellValue $cellWizard */
|
|
$cellWizard = $wizardFactory->newRule(Wizard::CELL_VALUE);
|
|
|
|
$cellWizard->equals(0)->setStyle($yellowStyle);
|
|
$conditionalStyles[] = $cellWizard->getConditional();
|
|
|
|
$cellWizard->lessThan(0)->setStyle($redStyle);
|
|
$conditionalStyles[] = $cellWizard->getConditional();
|
|
|
|
$sheet->getStyle($cellWizard->getCellRange())
|
|
->setConditionalStyles($conditionalStyles);
|
|
|
|
$style = $sheet->getCell($cellAddress)->getAppliedStyle();
|
|
|
|
self::assertTrue($style->getFont()->getBold());
|
|
self::assertSame($fillStyle, $style->getFill()->getFillType());
|
|
if ($fillStyle === Fill::FILL_SOLID) {
|
|
self::assertSame($fillColor, $style->getFill()->getStartColor()->getARGB());
|
|
}
|
|
$spreadsheet->disconnectWorksheets();
|
|
}
|
|
|
|
public static function appliedStylingProvider(): array
|
|
{
|
|
return [
|
|
'A1 - Conditional with Match' => ['A1', Fill::FILL_SOLID, Color::COLOR_RED],
|
|
'A2 - No Conditionals' => ['A2', Fill::FILL_NONE, null],
|
|
'B1 - Conditional with Match' => ['B1', Fill::FILL_SOLID, Color::COLOR_YELLOW],
|
|
'C1 - Conditionals, but No Match' => ['C1', Fill::FILL_NONE, null],
|
|
'C2 - No Conditionals' => ['C2', Fill::FILL_NONE, null],
|
|
];
|
|
}
|
|
}
|