mirror of
https://github.com/PHPOffice/PhpSpreadsheet.git
synced 2026-09-12 02:56:44 +00:00
e9cf27354d
Successor to PR #3523. There are 494 single-line changes (`public function provider` to `public static function provider`) in this PR. None of these were made manually; they were all created with the following script (adapted from https://stackoverflow.com/questions/25909820/how-to-recursively-iterate-through-files-in-php): ```php $dir = 'C:/git/unit10prep2/tests/PhpSpreadsheetTests'; $it = new RecursiveDirectoryIterator($dir); // Loop through files foreach(new RecursiveIteratorIterator($it) as $file) { if ($file->getExtension() === 'php') { $contents = file_get_contents($file); $new = preg_replace('/public function (\\w*)([Pp])rovider/', 'public static function $1$2rovider', $contents); if ($new !== $contents) { echo "changing $file\n"; file_put_contents($file, $new); } } } ``` After this PR, there will be one more, with a small number of test changes, and enabling PhpUnit 10 for Php 8.1+.
159 lines
5.3 KiB
PHP
159 lines
5.3 KiB
PHP
<?php
|
|
|
|
namespace PhpOffice\PhpSpreadsheetTests\Calculation\Functions\MathTrig;
|
|
|
|
class SubTotalTest extends AllSetupTeardown
|
|
{
|
|
/**
|
|
* @dataProvider providerSUBTOTAL
|
|
*
|
|
* @param mixed $expectedResult
|
|
* @param mixed $type expect an integer
|
|
*/
|
|
public function testSubtotal($expectedResult, $type): void
|
|
{
|
|
$this->mightHaveException($expectedResult);
|
|
$sheet = $this->getSheet();
|
|
$sheet->fromArray([[0], [1], [1], [2], [3], [5], [8], [13], [21], [34], [55], [89]], null, 'A1', true);
|
|
$maxCol = $sheet->getHighestColumn();
|
|
$maxRow = $sheet->getHighestRow();
|
|
$sheet->getCell('D2')->setValue("=SUBTOTAL($type, A1:$maxCol$maxRow)");
|
|
$result = $sheet->getCell('D2')->getCalculatedValue();
|
|
self::assertEqualsWithDelta($expectedResult, $result, 1E-12);
|
|
}
|
|
|
|
public static function providerSUBTOTAL(): array
|
|
{
|
|
return require 'tests/data/Calculation/MathTrig/SUBTOTAL.php';
|
|
}
|
|
|
|
/**
|
|
* @dataProvider providerSUBTOTAL
|
|
*
|
|
* @param mixed $expectedResult
|
|
* @param mixed $type expect an integer
|
|
*/
|
|
public function testSubtotalColumnHidden($expectedResult, $type): void
|
|
{
|
|
// Hidden columns don't affect calculation, only hidden rows
|
|
$this->mightHaveException($expectedResult);
|
|
$sheet = $this->getSheet();
|
|
$sheet->fromArray([0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89], null, 'A1', true);
|
|
$maxCol = $sheet->getHighestColumn();
|
|
$maxRow = $sheet->getHighestRow();
|
|
$hiddenColumns = [
|
|
'A' => false,
|
|
'B' => true,
|
|
'C' => false,
|
|
'D' => true,
|
|
'E' => false,
|
|
'F' => false,
|
|
'G' => false,
|
|
'H' => true,
|
|
'I' => false,
|
|
'J' => true,
|
|
'K' => true,
|
|
'L' => false,
|
|
];
|
|
foreach ($hiddenColumns as $col => $hidden) {
|
|
$columnDimension = $sheet->getColumnDimension($col);
|
|
$columnDimension->setVisible($hidden);
|
|
}
|
|
$sheet->getCell('D2')->setValue("=SUBTOTAL($type, A1:$maxCol$maxRow)");
|
|
$result = $sheet->getCell('D2')->getCalculatedValue();
|
|
self::assertEqualsWithDelta($expectedResult, $result, 1E-12);
|
|
}
|
|
|
|
/**
|
|
* @dataProvider providerSUBTOTALHIDDEN
|
|
*
|
|
* @param mixed $expectedResult
|
|
* @param mixed $type expect an integer
|
|
*/
|
|
public function testSubtotalRowHidden($expectedResult, $type): void
|
|
{
|
|
$this->mightHaveException($expectedResult);
|
|
$sheet = $this->getSheet();
|
|
$sheet->fromArray([[0], [1], [1], [2], [3], [5], [8], [13], [21], [34], [55], [89]], null, 'A1', true);
|
|
$maxCol = $sheet->getHighestColumn();
|
|
$maxRow = $sheet->getHighestRow();
|
|
$visibleRows = [
|
|
'1' => false,
|
|
'2' => true,
|
|
'3' => false,
|
|
'4' => true,
|
|
'5' => false,
|
|
'6' => false,
|
|
'7' => false,
|
|
'8' => true,
|
|
'9' => false,
|
|
'10' => true,
|
|
'11' => true,
|
|
'12' => false,
|
|
];
|
|
foreach ($visibleRows as $row => $visible) {
|
|
$rowDimension = $sheet->getRowDimension((int) $row);
|
|
$rowDimension->setVisible($visible);
|
|
}
|
|
$sheet->getCell('D2')->setValue("=SUBTOTAL($type, A1:$maxCol$maxRow)");
|
|
$result = $sheet->getCell('D2')->getCalculatedValue();
|
|
self::assertEqualsWithDelta($expectedResult, $result, 1E-12);
|
|
}
|
|
|
|
public static function providerSUBTOTALHIDDEN(): array
|
|
{
|
|
return require 'tests/data/Calculation/MathTrig/SUBTOTALHIDDEN.php';
|
|
}
|
|
|
|
public function testSubtotalNested(): void
|
|
{
|
|
$sheet = $this->getSheet();
|
|
$sheet->fromArray(
|
|
[
|
|
[123],
|
|
[234],
|
|
['=SUBTOTAL(1,A1:A2)'],
|
|
['=ROMAN(SUBTOTAL(1, A1:A2))'],
|
|
['This is text containing "=" and "SUBTOTAL("'],
|
|
['=AGGREGATE(1, 0, A1:A2)'],
|
|
['=SUM(2, 3)'],
|
|
],
|
|
null,
|
|
'A1',
|
|
true
|
|
);
|
|
$maxCol = $sheet->getHighestColumn();
|
|
$maxRow = $sheet->getHighestRow();
|
|
$sheet->getCell('H1')->setValue("=SUBTOTAL(9, A1:$maxCol$maxRow)");
|
|
self::assertEquals(362, $sheet->getCell('H1')->getCalculatedValue());
|
|
}
|
|
|
|
public function testRefError(): void
|
|
{
|
|
$sheet = $this->getSheet();
|
|
$sheet->getCell('A1')->setValue('=SUBTOTAL(9, #REF!)');
|
|
self::assertEquals('#REF!', $sheet->getCell('A1')->getCalculatedValue());
|
|
}
|
|
|
|
public function testSecondaryRefError(): void
|
|
{
|
|
$sheet = $this->getSheet();
|
|
$sheet->getCell('A1')->setValue('=SUBTOTAL(9, B1:B9,#REF!,C1:C9)');
|
|
self::assertEquals('#REF!', $sheet->getCell('A1')->getCalculatedValue());
|
|
}
|
|
|
|
public function testNonStringSingleCellRefError(): void
|
|
{
|
|
$sheet = $this->getSheet();
|
|
$sheet->getCell('A1')->setValue('=SUBTOTAL(9, 1, C1, Sheet99!A11)');
|
|
self::assertEquals('#REF!', $sheet->getCell('A1')->getCalculatedValue());
|
|
}
|
|
|
|
public function testNonStringCellRangeRefError(): void
|
|
{
|
|
$sheet = $this->getSheet();
|
|
$sheet->getCell('A1')->setValue('=SUBTOTAL(9, Sheet99!A1)');
|
|
self::assertEquals('#REF!', $sheet->getCell('A1')->getCalculatedValue());
|
|
}
|
|
}
|