mirror of
https://github.com/PHPOffice/PhpSpreadsheet.git
synced 2026-09-19 14:36:48 +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.
211 lines
7.9 KiB
PHP
211 lines
7.9 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace PhpOffice\PhpSpreadsheetTests\Calculation\Functions\TextData;
|
|
|
|
use PhpOffice\PhpSpreadsheet\Calculation\Calculation;
|
|
use PhpOffice\PhpSpreadsheet\Calculation\Functions;
|
|
use PhpOffice\PhpSpreadsheet\Settings;
|
|
|
|
class MidTest extends AllSetupTeardown
|
|
{
|
|
/**
|
|
* @param mixed $str string from which to extract
|
|
* @param mixed $start position at which to start
|
|
* @param mixed $cnt number of characters to extract
|
|
*/
|
|
#[\PHPUnit\Framework\Attributes\DataProvider('providerMID')]
|
|
public function testMID(mixed $expectedResult, mixed $str = 'omitted', mixed $start = 'omitted', mixed $cnt = 'omitted'): void
|
|
{
|
|
$this->mightHaveException($expectedResult);
|
|
$sheet = $this->getSheet();
|
|
if ($str === 'omitted') {
|
|
$sheet->getCell('B1')->setValue('=MID()');
|
|
} elseif ($start === 'omitted') {
|
|
$this->setCell('A1', $str);
|
|
$sheet->getCell('B1')->setValue('=MID(A1)');
|
|
} elseif ($cnt === 'omitted') {
|
|
$this->setCell('A1', $str);
|
|
$this->setCell('A2', $start);
|
|
$sheet->getCell('B1')->setValue('=MID(A1, A2)');
|
|
} else {
|
|
$this->setCell('A1', $str);
|
|
$this->setCell('A2', $start);
|
|
$this->setCell('A3', $cnt);
|
|
$sheet->getCell('B1')->setValue('=MID(A1, A2, A3)');
|
|
}
|
|
$result = $sheet->getCell('B1')->getCalculatedValue();
|
|
self::assertEquals($expectedResult, $result);
|
|
}
|
|
|
|
public static function providerMID(): array
|
|
{
|
|
return require 'tests/data/Calculation/TextData/MID.php';
|
|
}
|
|
|
|
#[\PHPUnit\Framework\Attributes\DataProvider('providerLocaleMID')]
|
|
public function testMiddleWithLocaleBoolean(string $expectedResult, string $locale, mixed $value, mixed $offset, mixed $characters): void
|
|
{
|
|
$newLocale = Settings::setLocale($locale);
|
|
if ($newLocale === false) {
|
|
self::markTestSkipped('Unable to set locale for locale-specific test');
|
|
}
|
|
|
|
$sheet = $this->getSheet();
|
|
$this->setCell('A1', $value);
|
|
$this->setCell('A2', $offset);
|
|
$this->setCell('A3', $characters);
|
|
$sheet->getCell('B1')->setValue('=MID(A1, A2, A3)');
|
|
$result = $sheet->getCell('B1')->getCalculatedValue();
|
|
self::assertEquals($expectedResult, $result);
|
|
}
|
|
|
|
public static function providerLocaleMID(): array
|
|
{
|
|
return [
|
|
['RA', 'fr_FR', true, 2, 2],
|
|
['AA', 'nl_NL', true, 2, 2],
|
|
['OS', 'fi', true, 2, 2],
|
|
['СТИН', 'bg', true, 2, 4],
|
|
['AU', 'fr_FR', false, 2, 2],
|
|
['NWA', 'nl_NL', false, 2, 3],
|
|
['PÄTO', 'fi', false, 2, 4],
|
|
['ОЖ', 'bg', false, 2, 2],
|
|
];
|
|
}
|
|
|
|
#[\PHPUnit\Framework\Attributes\DataProvider('providerCalculationTypeMIDTrue')]
|
|
public function testCalculationTypeTrue(string $type, string $resultB1, string $resultB2, string $resultB3): void
|
|
{
|
|
Functions::setCompatibilityMode($type);
|
|
$sheet = $this->getSheet();
|
|
$this->setCell('A1', true);
|
|
$this->setCell('A2', 'hello');
|
|
$this->setCell('B1', '=MID(A1, 3, 1)');
|
|
$this->setCell('B2', '=MID(A2, A1, 1)');
|
|
$this->setCell('B3', '=MID(A2, 2, A1)');
|
|
self::assertEquals($resultB1, $sheet->getCell('B1')->getCalculatedValue());
|
|
self::assertEquals($resultB2, $sheet->getCell('B2')->getCalculatedValue());
|
|
self::assertEquals($resultB3, $sheet->getCell('B3')->getCalculatedValue());
|
|
}
|
|
|
|
public static function providerCalculationTypeMIDTrue(): array
|
|
{
|
|
return [
|
|
'Excel MID(true,3,1), MID("hello",true, 1), MID("hello", 2, true)' => [
|
|
Functions::COMPATIBILITY_EXCEL,
|
|
'U',
|
|
'h',
|
|
'e',
|
|
],
|
|
'Gnumeric MID(true,3,1), MID("hello",true, 1), MID("hello", 2, true)' => [
|
|
Functions::COMPATIBILITY_GNUMERIC,
|
|
'U',
|
|
'h',
|
|
'e',
|
|
],
|
|
'OpenOffice MID(true,3,1), MID("hello",true, 1), MID("hello", 2, true)' => [
|
|
Functions::COMPATIBILITY_OPENOFFICE,
|
|
'',
|
|
'#VALUE!',
|
|
'#VALUE!',
|
|
],
|
|
];
|
|
}
|
|
|
|
#[\PHPUnit\Framework\Attributes\DataProvider('providerCalculationTypeMIDFalse')]
|
|
public function testCalculationTypeFalse(string $type, string $resultB1, string $resultB2): void
|
|
{
|
|
Functions::setCompatibilityMode($type);
|
|
$sheet = $this->getSheet();
|
|
$this->setCell('A1', false);
|
|
$this->setCell('A2', 'Hello');
|
|
$this->setCell('B1', '=MID(A1, 3, 1)');
|
|
$this->setCell('B2', '=MID(A2, A1, 1)');
|
|
$this->setCell('B3', '=MID(A2, 2, A1)');
|
|
self::assertEquals($resultB1, $sheet->getCell('B1')->getCalculatedValue());
|
|
self::assertEquals($resultB2, $sheet->getCell('B2')->getCalculatedValue());
|
|
}
|
|
|
|
public static function providerCalculationTypeMIDFalse(): array
|
|
{
|
|
return [
|
|
'Excel MID(false,3,1), MID("hello", false, 1), MID("hello", 2, false)' => [
|
|
Functions::COMPATIBILITY_EXCEL,
|
|
'L',
|
|
'#VALUE!',
|
|
'',
|
|
],
|
|
'Gnumeric MID(false,3,1), MID("hello", false, 1), MID("hello", 2, false)' => [
|
|
Functions::COMPATIBILITY_GNUMERIC,
|
|
'L',
|
|
'#VALUE!',
|
|
'',
|
|
],
|
|
'OpenOffice MID(false,3,1), MID("hello", false, 1), MID("hello", 2, false)' => [
|
|
Functions::COMPATIBILITY_OPENOFFICE,
|
|
'',
|
|
'#VALUE!',
|
|
'#VALUE!',
|
|
],
|
|
];
|
|
}
|
|
|
|
#[\PHPUnit\Framework\Attributes\DataProvider('providerCalculationTypeMIDNull')]
|
|
public function testCalculationTypeNull(string $type, string $resultB1, string $resultB2, string $resultB3): void
|
|
{
|
|
Functions::setCompatibilityMode($type);
|
|
$sheet = $this->getSheet();
|
|
$this->setCell('A2', 'Hello');
|
|
$this->setCell('B1', '=MID(A1, 3, 1)');
|
|
$this->setCell('B2', '=MID(A2, A1, 1)');
|
|
$this->setCell('B3', '=MID(A2, 2, A1)');
|
|
self::assertEquals($resultB1, $sheet->getCell('B1')->getCalculatedValue());
|
|
self::assertEquals($resultB2, $sheet->getCell('B2')->getCalculatedValue());
|
|
self::assertEquals($resultB3, $sheet->getCell('B3')->getCalculatedValue());
|
|
}
|
|
|
|
public static function providerCalculationTypeMIDNull(): array
|
|
{
|
|
return [
|
|
'Excel MID(null,3,1), MID("hello", null, 1), MID("hello", 2, null)' => [
|
|
Functions::COMPATIBILITY_EXCEL,
|
|
'',
|
|
'#VALUE!',
|
|
'',
|
|
],
|
|
'Gnumeric MID(null,3,1), MID("hello", null, 1), MID("hello", 2, null)' => [
|
|
Functions::COMPATIBILITY_GNUMERIC,
|
|
'',
|
|
'#VALUE!',
|
|
'',
|
|
],
|
|
'OpenOffice MID(null,3,1), MID("hello", null, 1), MID("hello", 2, null)' => [
|
|
Functions::COMPATIBILITY_OPENOFFICE,
|
|
'',
|
|
'#VALUE!',
|
|
'',
|
|
],
|
|
];
|
|
}
|
|
|
|
#[\PHPUnit\Framework\Attributes\DataProvider('providerMidArray')]
|
|
public function testMidArray(array $expectedResult, string $argument1, string $argument2, string $argument3): void
|
|
{
|
|
$calculation = Calculation::getInstance();
|
|
|
|
$formula = "=MID({$argument1}, {$argument2}, {$argument3})";
|
|
$result = $calculation->_calculateFormulaValue($formula);
|
|
self::assertEqualsWithDelta($expectedResult, $result, 1.0e-14);
|
|
}
|
|
|
|
public static function providerMidArray(): array
|
|
{
|
|
return [
|
|
'row vector #1' => [[['lo Wor', 'Spread']], '{"Hello World", "PhpSpreadsheet"}', '4', '6'],
|
|
'column vector #1' => [[[' Wor'], ['read']], '{"Hello World"; "PhpSpreadsheet"}', '6', '4'],
|
|
];
|
|
}
|
|
}
|