Files
oleibman e9cf27354d PhpUnit 10 Compatibility Part 2 (#3526)
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+.
2023-04-20 13:48:00 -07:00

124 lines
3.7 KiB
PHP

<?php
namespace PhpOffice\PhpSpreadsheetTests\Calculation\Functions\Engineering;
use PhpOffice\PhpSpreadsheet\Calculation\Calculation;
use PhpOffice\PhpSpreadsheet\Calculation\Engineering\BitWise;
use PhpOffice\PhpSpreadsheet\Calculation\Exception as CalculationException;
use PhpOffice\PhpSpreadsheet\Spreadsheet;
use PhpOffice\PhpSpreadsheetTests\Calculation\Functions\FormulaArguments;
use PHPUnit\Framework\TestCase;
class BitLShiftTest extends TestCase
{
/**
* @dataProvider providerBITLSHIFT
*
* @param mixed $expectedResult
*/
public function testDirectCallToBITLSHIFT($expectedResult, ...$args): void
{
$result = BitWise::BITLSHIFT(...$args);
self::assertSame($expectedResult, $result);
}
/**
* @dataProvider providerBITLSHIFT
*
* @param mixed $expectedResult
*/
public function testBITLSHIFTAsFormula($expectedResult, ...$args): void
{
$arguments = new FormulaArguments(...$args);
$calculation = Calculation::getInstance();
$formula = "=BITLSHIFT({$arguments})";
$result = $calculation->_calculateFormulaValue($formula);
self::assertSame($expectedResult, $result);
}
/**
* @dataProvider providerBITLSHIFT
*
* @param mixed $expectedResult
*/
public function testBITLSHIFTInWorksheet($expectedResult, ...$args): void
{
$arguments = new FormulaArguments(...$args);
$spreadsheet = new Spreadsheet();
$worksheet = $spreadsheet->getActiveSheet();
$argumentCells = $arguments->populateWorksheet($worksheet);
$formula = "=BITLSHIFT({$argumentCells})";
$result = $worksheet->setCellValue('A1', $formula)
->getCell('A1')
->getCalculatedValue();
self::assertSame($expectedResult, $result);
$spreadsheet->disconnectWorksheets();
}
public static function providerBITLSHIFT(): array
{
return require 'tests/data/Calculation/Engineering/BITLSHIFT.php';
}
/**
* @dataProvider providerUnhappyBITLSHIFT
*/
public function testBITLSHIFTUnhappyPath(string $expectedException, ...$args): void
{
$arguments = new FormulaArguments(...$args);
$spreadsheet = new Spreadsheet();
$worksheet = $spreadsheet->getActiveSheet();
$argumentCells = $arguments->populateWorksheet($worksheet);
$formula = "=BITLSHIFT({$argumentCells})";
$this->expectException(CalculationException::class);
$this->expectExceptionMessage($expectedException);
$worksheet->setCellValue('A1', $formula)
->getCell('A1')
->getCalculatedValue();
$spreadsheet->disconnectWorksheets();
}
public static function providerUnhappyBITLSHIFT(): array
{
return [
['Formula Error: Wrong number of arguments for BITLSHIFT() function'],
['Formula Error: Wrong number of arguments for BITLSHIFT() function', 1234],
];
}
/**
* @dataProvider providerBitLShiftArray
*/
public function testBitLShiftArray(array $expectedResult, string $number, string $bits): void
{
$calculation = Calculation::getInstance();
$formula = "=BITLSHIFT({$number}, {$bits})";
$result = $calculation->_calculateFormulaValue($formula);
self::assertEquals($expectedResult, $result);
}
public static function providerBitLShiftArray(): array
{
return [
'row/column vector' => [
[
[14, 28, 56, 112, 224],
[16, 32, 64, 128, 256],
[18, 36, 72, 144, 288],
],
'{7; 8; 9}',
'{1, 2, 3, 4, 5}',
],
];
}
}