123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193 |
- <?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\PhpTag;
- use PhpCsFixer\Tests\Test\AbstractFixerTestCase;
- use PhpCsFixer\WhitespacesFixerConfig;
- /**
- * @author Ceeram <ceeram@cakephp.org>
- * @author Dariusz Rumiński <dariusz.ruminski@gmail.com>
- *
- * @internal
- *
- * @covers \PhpCsFixer\Fixer\PhpTag\BlankLineAfterOpeningTagFixer
- *
- * @extends AbstractFixerTestCase<\PhpCsFixer\Fixer\PhpTag\BlankLineAfterOpeningTagFixer>
- */
- final class BlankLineAfterOpeningTagFixerTest extends AbstractFixerTestCase
- {
- /**
- * @dataProvider provideFixCases
- */
- public function testFix(string $expected, ?string $input = null): void
- {
- $this->doTest($expected, $input);
- }
- /**
- * @return iterable<int|string, array{0: string, 1?: string}>
- */
- public static function provideFixCases(): iterable
- {
- yield [
- '<?php
- echo 1;',
- '<?php
- echo 1;',
- ];
- yield [
- '<?php
- $b = 2;
- echo 3;',
- '<?php $b = 2;
- echo 3;',
- ];
- yield [
- '<?php
- '.'
- $c = 4;
- echo 5;',
- ];
- yield [
- '<?php
- $a = function(){
- echo 1;
- };',
- '<?php $a = function(){
- echo 1;
- };',
- ];
- yield [
- '<?php
- class SomeClass
- {
- const VERSION = "1.1.1";
- const FOO = "bar";
- }
- ',
- ];
- yield [
- '<?php $foo = true; ?>',
- ];
- yield [
- '<?php $foo = true; ?>
- ',
- ];
- yield [
- '<?php
- $foo = true;
- ?>',
- '<?php
- $foo = true;
- ?>',
- ];
- yield [
- '<?php
- $foo = true;
- $bar = false;
- ',
- '<?php $foo = true;
- $bar = false;
- ',
- ];
- yield [
- '<?php
- $foo = true;
- ?>
- Html here
- <?php $bar = false;',
- ];
- yield [
- '<?php
- $foo = true;
- ?>
- Html here
- <?php $bar = false;
- ',
- ];
- yield [
- '<?= $bar;
- $foo = $bar;
- ?>',
- ];
- yield 'empty file with open tag without new line' => [
- '<?php',
- ];
- yield 'empty file with open tag with new line' => [
- "<?php\n",
- ];
- yield 'file with shebang' => [
- <<<'EOD'
- #!x
- <?php
- echo 1;
- EOD,
- <<<'EOD'
- #!x
- <?php
- echo 1;
- EOD,
- ];
- }
- /**
- * @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\$foo = true;\r\n",
- "<?php \$foo = true;\r\n",
- ];
- yield [
- "<?php\r\n\r\n\$foo = true;\r\n",
- "<?php\r\n\$foo = true;\r\n",
- ];
- }
- }
|