mirror of
https://github.com/PHPOffice/PhpSpreadsheet.git
synced 2026-09-17 05:26:45 +00:00
d647fe7ee7
With PhpUnit 10 came the ability to use Php attributes rather than doc-block annotations for things like "data provider". PhpUnit 11 deprecates the use of annotations, and PhpUnit 12 will not not permit their use. Since PhpUnit 11 requires Php8.2+, we cannot adopt it as long as we support Php8.1, which will continue to be the case for some time. However, there is no penalty for early adoption. Php-cs-fixer can use: ``` 'php_unit_attributes' => ['keep_annotations' => false], ``` This allows us to run `composer fix` to automate all the needed changes. No manual changes were needed for any of the test members. With this change, PhpUnit 9 can no longer be used with the test suite. File composer.json is updated to reflect that reality, and phpunit9.xml.dist, which has been supplied in case anyone needed to use PhpUnit 9, is no longer required, and is thus deleted. For now, PhpUnit 11 is not being added as a possibility. No source code is changed in this PR.
362 lines
12 KiB
PHP
362 lines
12 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace PhpOffice\PhpSpreadsheetTests\Cell;
|
|
|
|
use PhpOffice\PhpSpreadsheet\Cell\Coordinate;
|
|
use PhpOffice\PhpSpreadsheet\Exception;
|
|
use PHPUnit\Framework\TestCase;
|
|
use TypeError;
|
|
|
|
class CoordinateTest extends TestCase
|
|
{
|
|
#[\PHPUnit\Framework\Attributes\DataProvider('providerColumnString')]
|
|
public function testColumnIndexFromString(mixed $expectedResult, string $string): void
|
|
{
|
|
$columnIndex = Coordinate::columnIndexFromString($string);
|
|
self::assertEquals($expectedResult, $columnIndex);
|
|
|
|
$stringBack = Coordinate::stringFromColumnIndex($columnIndex);
|
|
self::assertEquals($stringBack, $string, 'should be able to get the original input with opposite method');
|
|
}
|
|
|
|
public static function providerColumnString(): array
|
|
{
|
|
return require 'tests/data/ColumnString.php';
|
|
}
|
|
|
|
public function testColumnIndexFromStringTooLong(): void
|
|
{
|
|
$cellAddress = 'ABCD';
|
|
|
|
try {
|
|
Coordinate::columnIndexFromString($cellAddress);
|
|
} catch (\Exception $e) {
|
|
self::assertInstanceOf(Exception::class, $e);
|
|
self::assertEquals($e->getMessage(), 'Column string index can not be longer than 3 characters');
|
|
|
|
return;
|
|
}
|
|
self::fail('An expected exception has not been raised.');
|
|
}
|
|
|
|
public function testColumnIndexFromStringTooShort(): void
|
|
{
|
|
$cellAddress = '';
|
|
|
|
try {
|
|
Coordinate::columnIndexFromString($cellAddress);
|
|
} catch (\Exception $e) {
|
|
self::assertInstanceOf(Exception::class, $e);
|
|
self::assertEquals($e->getMessage(), 'Column string index can not be empty');
|
|
|
|
return;
|
|
}
|
|
self::fail('An expected exception has not been raised.');
|
|
}
|
|
|
|
#[\PHPUnit\Framework\Attributes\DataProvider('providerColumnIndex')]
|
|
public function testStringFromColumnIndex(mixed $expectedResult, int $columnIndex): void
|
|
{
|
|
$string = Coordinate::stringFromColumnIndex($columnIndex);
|
|
self::assertEquals($expectedResult, $string);
|
|
|
|
$columnIndexBack = Coordinate::columnIndexFromString($string);
|
|
self::assertEquals($columnIndexBack, $columnIndex, 'should be able to get the original input with opposite method');
|
|
}
|
|
|
|
public static function providerColumnIndex(): array
|
|
{
|
|
return require 'tests/data/ColumnIndex.php';
|
|
}
|
|
|
|
#[\PHPUnit\Framework\Attributes\DataProvider('providerCoordinates')]
|
|
public function testCoordinateFromString(mixed $expectedResult, string $rangeSet): void
|
|
{
|
|
$result = Coordinate::coordinateFromString($rangeSet);
|
|
self::assertEquals($expectedResult, $result);
|
|
}
|
|
|
|
public static function providerCoordinates(): array
|
|
{
|
|
return require 'tests/data/CellCoordinates.php';
|
|
}
|
|
|
|
#[\PHPUnit\Framework\Attributes\DataProvider('providerIndexesFromString')]
|
|
public function testIndexesFromString(array $expectedResult, string $rangeSet): void
|
|
{
|
|
$result = Coordinate::indexesFromString($rangeSet);
|
|
self::assertSame($expectedResult, $result);
|
|
}
|
|
|
|
public static function providerIndexesFromString(): array
|
|
{
|
|
return require 'tests/data/Cell/IndexesFromString.php';
|
|
}
|
|
|
|
public function testCoordinateFromStringWithRangeAddress(): void
|
|
{
|
|
$cellAddress = 'A1:AI2012';
|
|
|
|
try {
|
|
Coordinate::coordinateFromString($cellAddress);
|
|
} catch (\Exception $e) {
|
|
self::assertInstanceOf(Exception::class, $e);
|
|
self::assertEquals($e->getMessage(), 'Cell coordinate string can not be a range of cells');
|
|
|
|
return;
|
|
}
|
|
self::fail('An expected exception has not been raised.');
|
|
}
|
|
|
|
public function testCoordinateFromStringWithEmptyAddress(): void
|
|
{
|
|
$cellAddress = '';
|
|
|
|
try {
|
|
Coordinate::coordinateFromString($cellAddress);
|
|
} catch (\Exception $e) {
|
|
self::assertInstanceOf(Exception::class, $e);
|
|
self::assertEquals($e->getMessage(), 'Cell coordinate can not be zero-length string');
|
|
|
|
return;
|
|
}
|
|
self::fail('An expected exception has not been raised.');
|
|
}
|
|
|
|
public function testCoordinateFromStringWithInvalidAddress(): void
|
|
{
|
|
$cellAddress = 'AI';
|
|
|
|
try {
|
|
Coordinate::coordinateFromString($cellAddress);
|
|
} catch (\Exception $e) {
|
|
self::assertInstanceOf(Exception::class, $e);
|
|
self::assertEquals($e->getMessage(), 'Invalid cell coordinate ' . $cellAddress);
|
|
|
|
return;
|
|
}
|
|
self::fail('An expected exception has not been raised.');
|
|
}
|
|
|
|
#[\PHPUnit\Framework\Attributes\DataProvider('providerAbsoluteCoordinates')]
|
|
public function testAbsoluteCoordinateFromString(string $expectedResult, string $rangeSet): void
|
|
{
|
|
$result = Coordinate::absoluteCoordinate($rangeSet);
|
|
self::assertEquals($expectedResult, $result);
|
|
}
|
|
|
|
public static function providerAbsoluteCoordinates(): array
|
|
{
|
|
return require 'tests/data/CellAbsoluteCoordinate.php';
|
|
}
|
|
|
|
public function testAbsoluteCoordinateFromStringWithRangeAddress(): void
|
|
{
|
|
$cellAddress = 'A1:AI2012';
|
|
|
|
try {
|
|
Coordinate::absoluteCoordinate($cellAddress);
|
|
} catch (\Exception $e) {
|
|
self::assertInstanceOf(Exception::class, $e);
|
|
self::assertEquals($e->getMessage(), 'Cell coordinate string can not be a range of cells');
|
|
|
|
return;
|
|
}
|
|
self::fail('An expected exception has not been raised.');
|
|
}
|
|
|
|
#[\PHPUnit\Framework\Attributes\DataProvider('providerAbsoluteReferences')]
|
|
public function testAbsoluteReferenceFromString(mixed $expectedResult, int|string $rangeSet): void
|
|
{
|
|
$result = Coordinate::absoluteReference((string) $rangeSet);
|
|
self::assertEquals($expectedResult, $result);
|
|
}
|
|
|
|
public static function providerAbsoluteReferences(): array
|
|
{
|
|
return require 'tests/data/CellAbsoluteReference.php';
|
|
}
|
|
|
|
public function testAbsoluteReferenceFromStringWithRangeAddress(): void
|
|
{
|
|
$cellAddress = 'A1:AI2012';
|
|
|
|
try {
|
|
Coordinate::absoluteReference($cellAddress);
|
|
} catch (\Exception $e) {
|
|
self::assertInstanceOf(Exception::class, $e);
|
|
self::assertEquals($e->getMessage(), 'Cell coordinate string can not be a range of cells');
|
|
|
|
return;
|
|
}
|
|
self::fail('An expected exception has not been raised.');
|
|
}
|
|
|
|
#[\PHPUnit\Framework\Attributes\DataProvider('providerSplitRange')]
|
|
public function testSplitRange(array $expectedResult, string $rangeSet): void
|
|
{
|
|
$result = Coordinate::splitRange($rangeSet);
|
|
foreach ($result as $key => $split) {
|
|
if (!is_array($expectedResult[$key])) {
|
|
self::assertEquals($expectedResult[$key], $split[0]);
|
|
} else {
|
|
self::assertEquals($expectedResult[$key], $split);
|
|
}
|
|
}
|
|
}
|
|
|
|
public static function providerSplitRange(): array
|
|
{
|
|
return require 'tests/data/CellSplitRange.php';
|
|
}
|
|
|
|
#[\PHPUnit\Framework\Attributes\DataProvider('providerBuildRange')]
|
|
public function testBuildRange(mixed $expectedResult, array $rangeSets): void
|
|
{
|
|
$result = Coordinate::buildRange($rangeSets);
|
|
self::assertEquals($expectedResult, $result);
|
|
}
|
|
|
|
public static function providerBuildRange(): array
|
|
{
|
|
return require 'tests/data/CellBuildRange.php';
|
|
}
|
|
|
|
public function testBuildRangeInvalid(): void
|
|
{
|
|
$this->expectException(TypeError::class);
|
|
|
|
$cellRange = null;
|
|
// @phpstan-ignore-next-line
|
|
Coordinate::buildRange($cellRange);
|
|
}
|
|
|
|
public function testBuildRangeInvalid2(): void
|
|
{
|
|
$this->expectException(Exception::class);
|
|
$this->expectExceptionMessage('Range does not contain any information');
|
|
|
|
$cellRange = [];
|
|
Coordinate::buildRange($cellRange);
|
|
}
|
|
|
|
#[\PHPUnit\Framework\Attributes\DataProvider('providerRangeBoundaries')]
|
|
public function testRangeBoundaries(mixed $expectedResult, string $rangeSet): void
|
|
{
|
|
$result = Coordinate::rangeBoundaries($rangeSet);
|
|
self::assertEquals($expectedResult, $result);
|
|
}
|
|
|
|
public static function providerRangeBoundaries(): array
|
|
{
|
|
return require 'tests/data/CellRangeBoundaries.php';
|
|
}
|
|
|
|
#[\PHPUnit\Framework\Attributes\DataProvider('providerRangeDimension')]
|
|
public function testRangeDimension(mixed $expectedResult, string $rangeSet): void
|
|
{
|
|
$result = Coordinate::rangeDimension($rangeSet);
|
|
self::assertEquals($expectedResult, $result);
|
|
}
|
|
|
|
public static function providerRangeDimension(): array
|
|
{
|
|
return require 'tests/data/CellRangeDimension.php';
|
|
}
|
|
|
|
#[\PHPUnit\Framework\Attributes\DataProvider('providerGetRangeBoundaries')]
|
|
public function testGetRangeBoundaries(mixed $expectedResult, string $rangeSet): void
|
|
{
|
|
$result = Coordinate::getRangeBoundaries($rangeSet);
|
|
self::assertEquals($expectedResult, $result);
|
|
}
|
|
|
|
public static function providerGetRangeBoundaries(): array
|
|
{
|
|
return require 'tests/data/CellGetRangeBoundaries.php';
|
|
}
|
|
|
|
#[\PHPUnit\Framework\Attributes\DataProvider('providerCoordinateIsInsideRange')]
|
|
public static function testCoordinateIsInsideRange(bool $expectedResult, string $range, string $coordinate): void
|
|
{
|
|
$result = Coordinate::coordinateIsInsideRange($range, $coordinate);
|
|
self::assertEquals($result, $expectedResult);
|
|
}
|
|
|
|
public static function providerCoordinateIsInsideRange(): array
|
|
{
|
|
return require 'tests/data/Cell/CoordinateIsInsideRange.php';
|
|
}
|
|
|
|
#[\PHPUnit\Framework\Attributes\DataProvider('providerCoordinateIsInsideRangeException')]
|
|
public static function testCoordinateIsInsideRangeException(string $expectedResult, string $range, string $coordinate): void
|
|
{
|
|
try {
|
|
Coordinate::coordinateIsInsideRange($range, $coordinate);
|
|
} catch (\Exception $e) {
|
|
self::assertInstanceOf(Exception::class, $e);
|
|
self::assertEquals($e->getMessage(), $expectedResult);
|
|
|
|
return;
|
|
}
|
|
self::fail('An expected exception has not been raised.');
|
|
}
|
|
|
|
public static function providerCoordinateIsInsideRangeException(): array
|
|
{
|
|
return require 'tests/data/Cell/CoordinateIsInsideRangeException.php';
|
|
}
|
|
|
|
#[\PHPUnit\Framework\Attributes\DataProvider('providerExtractAllCellReferencesInRange')]
|
|
public function testExtractAllCellReferencesInRange(array $expectedResult, string $rangeSet): void
|
|
{
|
|
$result = Coordinate::extractAllCellReferencesInRange($rangeSet);
|
|
self::assertEquals($expectedResult, $result);
|
|
}
|
|
|
|
public static function providerExtractAllCellReferencesInRange(): array
|
|
{
|
|
return require 'tests/data/CellExtractAllCellReferencesInRange.php';
|
|
}
|
|
|
|
#[\PHPUnit\Framework\Attributes\DataProvider('providerInvalidRange')]
|
|
public function testExtractAllCellReferencesInRangeInvalidRange(string $range): void
|
|
{
|
|
$this->expectException(Exception::class);
|
|
$this->expectExceptionMessage('Invalid range: "' . $range . '"');
|
|
|
|
Coordinate::extractAllCellReferencesInRange($range);
|
|
}
|
|
|
|
public static function providerInvalidRange(): array
|
|
{
|
|
return [['Z1:A1'], ['A4:A1'], ['B1:A1'], ['AA1:Z1']];
|
|
}
|
|
|
|
#[\PHPUnit\Framework\Attributes\DataProvider('providerMergeRangesInCollection')]
|
|
public function testMergeRangesInCollection(mixed $expectedResult, array $rangeSets): void
|
|
{
|
|
$result = Coordinate::mergeRangesInCollection($rangeSets);
|
|
self::assertEquals($expectedResult, $result);
|
|
}
|
|
|
|
public static function providerMergeRangesInCollection(): array
|
|
{
|
|
return require 'tests/data/CellMergeRangesInCollection.php';
|
|
}
|
|
|
|
#[\PHPUnit\Framework\Attributes\DataProvider('providerCoordinateIsRange')]
|
|
public function testCoordinateIsRange(mixed $expectedResult, string $rangeSet): void
|
|
{
|
|
$result = Coordinate::coordinateIsRange($rangeSet);
|
|
self::assertEquals($expectedResult, $result);
|
|
}
|
|
|
|
public static function providerCoordinateIsRange(): array
|
|
{
|
|
return require 'tests/data/CoordinateIsRange.php';
|
|
}
|
|
}
|