123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184 |
- <?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\Tests\Test\AbstractFixerTestCase;
- use PhpCsFixer\WhitespacesFixerConfig;
- /**
- * @author Dariusz Rumiński <dariusz.ruminski@gmail.com>
- *
- * @internal
- *
- * @covers \PhpCsFixer\Fixer\Whitespace\NoWhitespaceInBlankLineFixer
- *
- * @extends AbstractFixerTestCase<\PhpCsFixer\Fixer\Whitespace\NoWhitespaceInBlankLineFixer>
- */
- final class NoWhitespaceInBlankLineFixerTest extends AbstractFixerTestCase
- {
- /**
- * @dataProvider provideFixCases
- */
- public function testFix(string $expected, ?string $input = null): void
- {
- $this->doTest($expected, $input);
- }
- /**
- * @return iterable<array{0: string, 1?: string}>
- */
- public static function provideFixCases(): iterable
- {
- yield [
- "<?php\n",
- ];
- yield [
- '<?php ',
- ];
- yield [
- '<?php
- ',
- '<?php
- ',
- ];
- yield [
- '<?php
- ',
- '<?php
- '.'
- ',
- ];
- yield [
- '<?php
- $a = 1; ',
- '<?php
- '.'
- $a = 1; ',
- ];
- yield [
- '<?php
- $r = 5 +6; '.'
- $t = true> 9; '.'
- ',
- ];
- yield [
- '<?php
- $a = 1; ',
- ];
- yield [
- "<?php
- \t\$b = 1;\t\t",
- ];
- yield [
- '<?php
- $b = 2;
- ',
- '<?php
- $b = 2;
- ',
- ];
- yield [
- '<?php
- $b = 3;
- ',
- '<?php
- $b = 3;
- '.'
- '.'
- ',
- ];
- yield [
- '<?php
- $b = 4;
- $b += 4;',
- '<?php
- $b = 4;
- '.'
- '.'
- '.'
- $b += 4;',
- ];
- yield [
- "<?php\n\n\n\$b = 5;",
- "<?php\n \n\t\n\$b = 5;",
- ];
- yield [
- "<?php\necho 1;\n?>\n\n\n\n",
- ];
- yield [
- "<?php\necho <<<HTML\ndata \n \n \t \n \nHTML\n;\n//a",
- ];
- yield [
- "<?php\n\$sql = 'SELECT * FROM products WHERE description = \"This product\n \nis nice\"';",
- ];
- yield [
- '<?php
- /**
- * @const Foo.
- */
- const FOO = "BAR";
- ',
- ];
- yield [
- "<?php\n\n \$a = 1;\n\n \$b = 2;",
- "<?php\n\n \$a = 1;\n \n \$b = 2;",
- ];
- }
- /**
- * @dataProvider provideWithWhitespacesConfigCases
- */
- public function testWithWhitespacesConfig(string $expected, ?string $input = null): void
- {
- $this->fixer->setWhitespacesConfig(new WhitespacesFixerConfig("\t", "\r\n"));
- $this->doTest($expected, $input);
- }
- /**
- * @return iterable<array{string, string}>
- */
- public static function provideWithWhitespacesConfigCases(): iterable
- {
- yield [
- "<?php\r\n\r\n \$a = 1;\r\n\r\n \$b = 2;",
- "<?php\r\n\r\n \$a = 1;\r\n \r\n \$b = 2;",
- ];
- }
- }
|