1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291 |
- <?php
- declare(strict_types=1);
- /*
- * This file is part of PHP CS Fixer.
- *
- * (c) Fabien Potencier <fabien@symfony.com>
- * Dariusz Rumiński <dariusz.ruminski@gmail.com>
- *
- * This source file is subject to the MIT license that is bundled
- * with this source code in the file LICENSE.
- */
- namespace PhpCsFixer\Tests\Fixer\Whitespace;
- use PhpCsFixer\ConfigurationException\InvalidFixerConfigurationException;
- use PhpCsFixer\Tests\Test\AbstractFixerTestCase;
- use PhpCsFixer\WhitespacesFixerConfig;
- /**
- * @internal
- *
- * @covers \PhpCsFixer\Fixer\Whitespace\NoExtraBlankLinesFixer
- */
- final class NoExtraBlankLinesFixerTest extends AbstractFixerTestCase
- {
- private string $template = <<<'EOF'
- <?php
- use \DateTime;
- use \stdClass;
- use \InvalidArgumentException;
- class Test {
- public function testThrow($a)
- {
- if ($a) {
- throw new InvalidArgumentException('test.'); // test
- }
- $date = new DateTime();
- $class = new stdClass();
- $class = (string) $class;
- $e = new InvalidArgumentException($class.$date->format('Y'));
- throw $e;
- }
- public function testBreak($a)
- {
- switch($a) {
- case 1:
- echo $a;
- break;
- case 2:
- echo 'test';
- break;
- }
- }
- protected static function testContinueAndReturn($a, $b)
- {
- while($a < 100) {
- if ($b < time()) {
- continue;
- }
- return $b;
- }
- return $a;
- }
- private function test(){
- // comment
- }
- private function test123(){
- // comment
- }
- }
- EOF;
- /**
- * @param list<int> $lineNumberRemoved Line numbers expected to be removed after fixing
- * @param list<string> $config
- *
- * @dataProvider provideWithConfigCases
- */
- public function testWithConfig(array $lineNumberRemoved, array $config): void
- {
- $this->fixer->configure(['tokens' => $config]);
- $this->doTest($this->removeLinesFromString($this->template, $lineNumberRemoved), $this->template);
- }
- public static function provideWithConfigCases(): iterable
- {
- $tests = [
- [
- [9, 14, 21, 43, 45, 49, 53, 57],
- ['curly_brace_block'],
- ],
- [
- [3, 5],
- ['use'],
- ],
- [
- [23, 24],
- ['extra'],
- ],
- [
- [49, 53],
- ['return'],
- ],
- [
- [45],
- ['continue'],
- ],
- [
- [32],
- ['break'],
- ],
- [
- [14, 21],
- ['throw'],
- ],
- ];
- yield from $tests;
- $all = [[], []];
- foreach ($tests as $test) {
- $all[0] = array_merge($test[0], $all[0]);
- $all[1] = array_merge($test[1], $all[1]);
- }
- yield $all;
- }
- public function testFix(): void
- {
- $expected = <<<'EOF'
- <?php
- $a = new Bar();
- $a = new FooBaz();
- EOF;
- $input = <<<'EOF'
- <?php
- $a = new Bar();
- $a = new FooBaz();
- EOF;
- $this->doTest($expected, $input);
- }
- public function testFixWithManyEmptyLines(): void
- {
- $expected = <<<'EOF'
- <?php
- $a = new Bar();
- $a = new FooBaz();
- EOF;
- $input = <<<'EOF'
- <?php
- $a = new Bar();
- $a = new FooBaz();
- EOF;
- $this->doTest($expected, $input);
- }
- public function testFixWithHeredoc(): void
- {
- $expected = '
- <?php
- $b = <<<TEXT
- Foo TEXT
- Bar
- FooFoo
- TEXT;
- ';
- $this->doTest($expected);
- }
- public function testFixWithNowdoc(): void
- {
- $expected = '
- <?php
- $b = <<<\'TEXT\'
- Foo TEXT;
- Bar1}
- FooFoo
- TEXT;
- ';
- $this->doTest($expected);
- }
- public function testFixWithEncapsulatedNowdoc(): void
- {
- $expected = '
- <?php
- $b = <<<\'TEXT\'
- Foo TEXT
- Bar
- <<<\'TEMPLATE\'
- BarFooBar TEMPLATE
- TEMPLATE;
- FooFoo
- TEXT;
- ';
- $this->doTest($expected);
- }
- public function testFixWithMultilineString(): void
- {
- $expected = <<<'EOF'
- <?php
- $a = 'Foo
- Bar';
- EOF;
- $this->doTest($expected);
- }
- public function testFixWithTrickyMultilineStrings(): void
- {
- $expected = <<<'EOF'
- <?php
- $a = 'Foo';
- $b = 'Bar
- Here\'s an escaped quote '
- .
- '
- FooFoo';
- EOF;
- $input = <<<'EOF'
- <?php
- $a = 'Foo';
- $b = 'Bar
- Here\'s an escaped quote '
- .
- '
- FooFoo';
- EOF;
- $this->doTest($expected, $input);
- }
- public function testFixWithCommentWithQuote(): void
- {
- $expected = <<<'EOF'
- <?php
- $a = 'foo';
- // my comment's must have a quote
- $b = 'foobar';
- $c = 'bar';
- EOF;
- $input = <<<'EOF'
- <?php
- $a = 'foo';
- // my comment's must have a quote
- $b = 'foobar';
- $c = 'bar';
- EOF;
- $this->doTest($expected, $input);
- }
- public function testFixWithTrailingInlineBlock(): void
- {
- $expected = "
- <?php
- echo 'hello';
- ?>
- \$a = 0;
- //a
- <?php
- \$a = 0;
- \$b = 1;
- //a
- ?>
- ";
- $this->doTest($expected);
- }
- /**
- * @dataProvider provideFixWithCommentsCases
- */
- public function testFixWithComments(string $expected, string $input): void
- {
- $this->doTest($expected, $input);
- }
- public static function provideFixWithCommentsCases(): iterable
- {
- return [
- [
- <<<'EOF'
- <?php
- //class Test
- $a; //
- $b;
- /***/
- $c;
- //
- $d;
- EOF
- ,
- <<<'EOF'
- <?php
- //class Test
- $a; //
- $b;
- /***/
- $c;
- //
- $d;
- EOF
- ],
- [
- "<?php\n//a\n\n\$a =1;",
- "<?php\n//a\n\n\n\n\$a =1;",
- ],
- ];
- }
- /**
- * @dataProvider provideFixWithLineBreaksCases
- */
- public function testFixWithLineBreaks(string $expected, ?string $input = null): void
- {
- $this->doTest($expected, $input);
- }
- public static function provideFixWithLineBreaksCases(): iterable
- {
- $input = '<?php //
- $a = 1;
- $b = 1;
- ';
- $expected = '<?php //
- $a = 1;
- $b = 1;
- ';
- yield [
- "<?php\r\n//a\r\n\r\n\$a =1;",
- "<?php\r\n//a\r\n\r\n\r\n\r\n\$a =1;",
- ];
- yield [
- $expected,
- $input,
- ];
- yield [
- str_replace("\n", "\r\n", $expected),
- str_replace("\n", "\r\n", $input),
- ];
- yield [
- str_replace("\n", "\r", $input),
- ];
- yield [
- str_replace("\n", "\r", $expected),
- ];
- }
- public function testWrongConfig(): void
- {
- $this->expectException(InvalidFixerConfigurationException::class);
- $this->expectExceptionMessageMatches('/^\[no_extra_blank_lines\] Invalid configuration: The option "tokens" .*\.$/');
- $this->fixer->configure(['tokens' => ['__TEST__']]);
- }
- /**
- * @dataProvider provideBetweenUseCases
- */
- public function testBetweenUse(string $expected, ?string $input = null): void
- {
- $this->fixer->configure(['tokens' => ['use']]);
- $this->doTest($expected, $input);
- }
- public static function provideBetweenUseCases(): iterable
- {
- yield ['<?php use A\B;'];
- yield ['<?php use A\B?>'];
- yield ['<?php use A\B;use A\D; return 1;'];
- yield ["<?php use A\\B?>\n\n<?php use D\\E\\F?>"];
- yield ['<?php use Y\B;use A\D; return 1;'];
- yield [
- '<?php
- use A\B;
- use A\C;',
- '<?php
- use A\B;
- use A\C;',
- ];
- yield [
- '<?php use A\E;use A\Z;
- use C;
- return 1;
- ',
- '<?php use A\E;use A\Z;
- use C;
- return 1;
- ',
- ];
- yield [
- '<?php
- class Test {
- use A;
- use B;
- }',
- ];
- yield [
- '<?php
- $example = function () use ($message) { var_dump($message); };
- $example = function () use ($message) { var_dump($message); };
- ',
- ];
- yield [
- '<?php
- use function A; use function B;
- echo 1;',
- ];
- yield [
- '<?php
- use some\a\{ClassA, ClassB, ClassC as C,};
- use function some\a\{fn_a, fn_b, fn_c,};
- use const some\a\{ConstA,ConstB,ConstC
- ,
- };
- use const some\Z\{ConstX,ConstY,ConstZ,};
- ',
- '<?php
- use some\a\{ClassA, ClassB, ClassC as C,};
- use function some\a\{fn_a, fn_b, fn_c,};
- use const some\a\{ConstA,ConstB,ConstC
- ,
- };
- '.'
- use const some\Z\{ConstX,ConstY,ConstZ,};
- ',
- ];
- }
- /**
- * @dataProvider provideRemoveLinesBetweenUseStatementsCases
- */
- public function testRemoveLinesBetweenUseStatements(string $expected, ?string $input = null): void
- {
- $this->fixer->configure(['tokens' => ['use']]);
- $this->doTest($expected, $input);
- }
- public static function provideRemoveLinesBetweenUseStatementsCases(): iterable
- {
- return [
- [
- <<<'EOF'
- <?php
- use Zxy\Qux;
- use Zoo\Bar as Bar2;
- use Foo\Bar as Bar1;
- use Foo\Zar\Baz;
- $c = 1;
- use Foo\Quxx as Quxx1;
- use Foo\Zar\Quxx;
- $a = new Bar1();
- $a = new Bar2();
- $a = new Baz();
- $a = new Qux();
- EOF
- ,
- <<<'EOF'
- <?php
- use Zxy\Qux;
- use Zoo\Bar as Bar2;
- use Foo\Bar as Bar1;
- use Foo\Zar\Baz;
- $c = 1;
- use Foo\Quxx as Quxx1;
- use Foo\Zar\Quxx;
- $a = new Bar1();
- $a = new Bar2();
- $a = new Baz();
- $a = new Qux();
- EOF
- ,
- ],
- [
- '<?php
- use some\a\{ClassA, ClassB, ClassC as C};
- use function some\a\{fn_a, fn_b, fn_c};
- use const some\a\{ConstA, ConstB, ConstC};
- ',
- '<?php
- use some\a\{ClassA, ClassB, ClassC as C};
- use function some\a\{fn_a, fn_b, fn_c};
- use const some\a\{ConstA, ConstB, ConstC};
- ',
- ],
- ];
- }
- /**
- * @dataProvider provideWithoutUsesCases
- */
- public function testWithoutUses(string $expected): void
- {
- $this->fixer->configure(['tokens' => ['use']]);
- $this->doTest($expected);
- }
- public static function provideWithoutUsesCases(): iterable
- {
- yield [
- '<?php
- $c = 1;
- $a = new Baz();
- $a = new Qux();',
- ];
- yield [
- '<?php use A\B;',
- ];
- yield [
- '<?php use A\B?>',
- ];
- yield [
- '<?php use A\B;?>',
- ];
- }
- /**
- * @dataProvider provideRemoveBetweenUseTraitsCases
- *
- * @group legacy
- */
- public function testRemoveBetweenUseTraits(string $expected, string $input): void
- {
- $this->expectDeprecation('Option "tokens: use_trait" used in `no_extra_blank_lines` rule is deprecated, use the rule `class_attributes_separation` with `elements: trait_import` instead.');
- $this->fixer->configure(['tokens' => ['use_trait']]);
- $this->doTest($expected, $input);
- }
- public static function provideRemoveBetweenUseTraitsCases(): iterable
- {
- yield [
- '<?php
- class Foo
- {
- use Z; // 123
- use Bar;/* */use Baz;
- public function baz() {}
- use Bar1; use Baz1;
- public function baz1() {}
- }
- ',
- '<?php
- class Foo
- {
- use Z; // 123
- use Bar;/* */use Baz;
- public function baz() {}
- use Bar1; use Baz1;
- public function baz1() {}
- }
- ',
- ];
- yield [
- '<?php
- class Foo
- {
- use Bar;use Baz;
- use Bar1;use Baz1;
- public function baz() {}
- }
- ',
- '<?php
- class Foo
- {
- use Bar;use Baz;
- use Bar1;use Baz1;
- public function baz() {}
- }
- ',
- ];
- yield [
- '<?php
- namespace T\A;
- use V;
- use W;
- class Test {
- use A;
- use B;
- private function test($b) {
- $a = function() use ($b) { echo $b;};
- $b = function() use ($b) { echo $b;};
- }
- }',
- '<?php
- namespace T\A;
- use V;
- use W;
- class Test {
- use A;
- use B;
- private function test($b) {
- $a = function() use ($b) { echo $b;};
- $b = function() use ($b) { echo $b;};
- }
- }',
- ];
- }
- /**
- * @dataProvider provideOneOrInLineCases
- */
- public function testOneOrInLine(string $expected, ?string $input = null): void
- {
- $this->fixer->configure(['tokens' => [
- 'break',
- 'continue',
- 'return',
- 'throw',
- 'curly_brace_block',
- 'square_brace_block',
- 'parenthesis_brace_block',
- ]]);
- $this->doTest($expected, $input);
- }
- public static function provideOneOrInLineCases(): iterable
- {
- yield [
- "<?php\n\n\$a = function() use (\$b) { while(3<1)break; \$c = \$b[1]; while(\$b<1)continue; if (true) throw \$e; return 1; };\n\n",
- ];
- yield [
- "<?php throw new \\Exception('do not import.');\n",
- "<?php throw new \\Exception('do not import.');\n\n",
- ];
- yield [
- "<?php\n\n\$a = \$b[0];\n\n",
- ];
- yield [
- "<?php\n\n\$a->{'Test'};\nfunction test(){}\n",
- ];
- yield [
- "<?php\n\n\$a = new class { public function a () { while(4<1)break; while(3<1)continue; if (true) throw \$e; return 1; }};\n\n",
- ];
- if (\PHP_VERSION_ID < 8_00_00) {
- yield [
- "<?php\n\n\$a = \$b{0};\n\n",
- ];
- }
- }
- /**
- * @param array<string, mixed> $config
- *
- * @dataProvider provideBracesCases
- */
- public function testBraces(array $config, string $expected, ?string $input = null): void
- {
- $this->fixer->configure($config);
- $this->doTest($expected, $input);
- }
- public static function provideBracesCases(): iterable
- {
- return [
- [
- ['tokens' => ['curly_brace_block']],
- "<?php function test()\n\n{}\n\necho 789;",
- ],
- [
- ['tokens' => ['curly_brace_block']],
- "<?php switch(\$a){\ncase 1:echo 789;}",
- "<?php switch(\$a){\n \ncase 1:echo 789;}",
- ],
- [
- ['tokens' => ['parenthesis_brace_block']],
- '<?php
- is_int(
- 1);
- function test(
- $a,
- $b,
- $c
- )
- {
- }',
- '<?php
- is_int(
- 1);
- function test(
- $a,
- $b,
- $c
- )
- {
- }',
- ],
- [
- ['tokens' => ['parenthesis_brace_block']],
- "<?php array(\n1,\n2,\n3,\n);",
- "<?php array(\n \n1,\n2,\n3,\n\n\n);",
- ],
- [
- ['tokens' => ['parenthesis_brace_block']],
- '<?php
- function a()
- {
- $b->d(e(
- ));
- foreach ($a as $x) {
- }
- }',
- ],
- [
- ['tokens' => ['return']],
- '<?php
- class Foo
- {
- public function bar() {return 1;}
- public function baz() {return 2;
- }
- }',
- '<?php
- class Foo
- {
- public function bar() {return 1;}
- public function baz() {return 2;
- }
- }',
- ],
- [
- ['tokens' => ['square_brace_block']],
- "<?php \$c = \$b[0];\n\n\n\$a = [\n 1,\n2];\necho 1;\n\$b = [];\n\n\n//a\n",
- "<?php \$c = \$b[0];\n\n\n\$a = [\n\n 1,\n2];\necho 1;\n\$b = [];\n\n\n//a\n",
- ],
- ];
- }
- /**
- * @param array<string, mixed> $config
- *
- * @dataProvider provideMessyWhitespacesCases
- */
- public function testMessyWhitespaces(array $config, string $expected, ?string $input = null): void
- {
- $this->fixer->setWhitespacesConfig(new WhitespacesFixerConfig("\t", "\r\n"));
- $this->fixer->configure($config);
- $this->doTest($expected, $input);
- }
- public static function provideMessyWhitespacesCases(): iterable
- {
- yield [
- [],
- "<?php\r\nuse AAA;\r\n\r\nuse BBB;\r\n\r\n",
- "<?php\r\nuse AAA;\r\n\r\n\r\n\r\nuse BBB;\r\n\r\n",
- ];
- yield [
- ['tokens' => ['parenthesis_brace_block']],
- "<?php is_int(\r\n1);",
- "<?php is_int(\r\n\r\n\r\n\r\n1);",
- ];
- yield [
- ['tokens' => ['square_brace_block']],
- "<?php \$c = \$b[0];\r\n\r\n\r\n\$a = [\r\n 1,\r\n2];\r\necho 1;\r\n\$b = [];\r\n\r\n\r\n//a\r\n",
- "<?php \$c = \$b[0];\r\n\r\n\r\n\$a = [\r\n\r\n 1,\r\n2];\r\necho 1;\r\n\$b = [];\r\n\r\n\r\n//a\r\n",
- ];
- yield [
- ['tokens' => ['square_brace_block']],
- "<?php \$c = \$b[0];\r\n\r\n\r\n\$a = [\r\n\t1,\r\n2];",
- "<?php \$c = \$b[0];\r\n\r\n\r\n\$a = [\r\n\r\n\t1,\r\n2];",
- ];
- }
- /**
- * @param list<string> $config
- *
- * @dataProvider provideInSwitchStatementCases
- */
- public function testInSwitchStatement(array $config, string $expected, ?string $input = null): void
- {
- $this->fixer->configure(['tokens' => $config]);
- $this->doTest($expected, $input);
- }
- public static function provideInSwitchStatementCases(): iterable
- {
- return [
- [
- [
- 'break',
- 'continue',
- 'extra',
- 'return',
- 'throw',
- ],
- '<?php
- /** a */
- switch ($a) {
- case 1:
- break;
- case 2:
- continue;
- case 3:
- return 1;
- case 4:
- throw $e;
- case 5:
- throw new \Exception();
- case Token::STRING_TYPE:
- echo 123;
- return new ConstantNode($token->getValue());
- case 7:
- return new ConstantNode($token->getValue());
- case 8:
- return 8;
- default:
- echo 1;
- }',
- '<?php
- /** a */
- switch ($a) {
- case 1:
- break;
- case 2:
- continue;
- case 3:
- return 1;
- case 4:
- throw $e;
- case 5:
- throw new \Exception();
- case Token::STRING_TYPE:
- echo 123;
- return new ConstantNode($token->getValue());
- case 7:
- return new ConstantNode($token->getValue());
- '.'
- case 8:
- return 8;
- '.'
- default:
- echo 1;
- }',
- ],
- [
- [
- 'switch',
- 'case',
- 'default',
- ],
- '<?php
- switch($a) {
- case 0:
- case 1:
- default:
- return 1;
- }',
- '<?php
- switch($a) {
- case 0:
- case 1:
- default:
- return 1;
- }',
- ],
- [
- [
- 'switch',
- 'case',
- 'default',
- ],
- '<?php
- switch($a) { case 2: echo 3;
- default: return 1;}
- // above stays empty',
- '<?php
- switch($a) { case 2: echo 3;
- default: return 1;}
- // above stays empty',
- ],
- ];
- }
- public function testRemovingEmptyLinesAfterOpenTag(): void
- {
- $this->doTest(
- '<?php
- class Foo {}',
- '<?php
- class Foo {}'
- );
- }
- /**
- * @param array<string, mixed> $config
- *
- * @dataProvider provideFix80Cases
- *
- * @requires PHP 8.0
- */
- public function testFix80(array $config, string $expected, string $input = null): void
- {
- $this->fixer->configure($config);
- $this->doTest($expected, $input);
- }
- public static function provideFix80Cases(): iterable
- {
- yield [
- ['tokens' => ['throw']],
- '<?php
- $a = $bar ?? throw new \Exception();
- $a = $bar ?? throw new \Exception();
- $a = $bar ?? throw new \Exception();
- ',
- ];
- yield [
- ['tokens' => ['throw']],
- '<?php
- $a = $bar ?? throw new \Exception();
- // Now, we are going to use it!
- var_dump($a);
- ',
- ];
- yield [
- ['tokens' => ['attribute']],
- '<?php
- #[Attr]
- #[AttrFoo1]
- #[AttrFoo2]
- function foo(){}
- ',
- '<?php
- #[Attr]
- #[AttrFoo1]
- #[AttrFoo2]
- function foo(){}
- ',
- ];
- yield [
- ['tokens' => ['attribute']],
- '<?php class Foo
- {
- protected function f1(string $x): string { return "r1"; }
- protected function f2(string $x): string { return "r1"; }
- protected function f3(#[Attr] string $x): string { return "r1"; }
- protected function f4(string $x): string { return "r1"; }
- }',
- ];
- yield [
- ['tokens' => ['attribute']],
- '<?php abstract class Foo
- {
- abstract protected function f1(string $x): string;
- abstract protected function f2(string $x): string;
- abstract protected function f3(#[Attr] string $x): string;
- abstract protected function f4(string $x): string;
- }',
- ];
- }
- /**
- * @dataProvider provideFix81Cases
- *
- * @requires PHP 8.1
- */
- public function testFix81(string $expected, string $input = null): void
- {
- $this->fixer->configure(['tokens' => ['case']]);
- $this->doTest($expected, $input);
- }
- public static function provideFix81Cases(): iterable
- {
- yield [
- '<?php
- enum test
- {
- case Baz;
- public function foo() {
- switch (bar()) {
- case 1: echo 1; break;
- case 2: echo 2; break;
- }
- }
- case Bad;
- }
- ',
- '<?php
- enum test
- {
- case Baz;
- public function foo() {
- switch (bar()) {
- case 1: echo 1; break;
- case 2: echo 2; break;
- }
- }
- case Bad;
- }
- ',
- ];
- $expectedTemplate = '<?php
- enum Foo
- {
- case CASE_1;
- %s
- }';
- $enumAttributes = [
- 'case CASE_2;',
- 'const CONST_1 = self::CASE_1;',
- 'private const CONST_1 = self::CASE_1;',
- 'public function bar(): void {}',
- 'protected function bar(): void {}',
- 'private function bar(): void {}',
- 'static function bar(): void {}',
- 'final function bar(): void {}',
- ];
- foreach ($enumAttributes as $enumAttribute) {
- yield [
- sprintf($expectedTemplate, $enumAttribute),
- ];
- }
- }
- /**
- * @param list<int> $lineNumbers
- */
- private function removeLinesFromString(string $input, array $lineNumbers): string
- {
- sort($lineNumbers);
- $lines = explode("\n", $input);
- foreach ($lineNumbers as $lineNumber) {
- --$lineNumber;
- unset($lines[$lineNumber]);
- }
- return implode("\n", $lines);
- }
- }
|