123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135 |
- <?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\LinebreakAfterOpeningTagFixer
- *
- * @extends AbstractFixerTestCase<\PhpCsFixer\Fixer\PhpTag\LinebreakAfterOpeningTagFixer>
- */
- final class LinebreakAfterOpeningTagFixerTest 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
- $a = function(){
- echo 1;
- };',
- '<?php $a = function(){
- echo 1;
- };',
- ];
- yield [
- '<?php $foo = true; ?>',
- ];
- yield [
- '<?php $foo = true; ?>
- ',
- ];
- yield [
- '<?php
- $foo = true;
- ?>',
- ];
- yield [
- '<?php
- $foo = true;
- $bar = false;
- ?>',
- '<?php $foo = true;
- $bar = false;
- ?>',
- ];
- yield [
- '<?php $foo = true; ?>
- Html here
- <?php $bar = false; ?>',
- ];
- yield [
- '<?= $bar;
- $foo = $bar;
- ?>',
- ];
- yield [
- str_replace("\n", "\r\n", '<?php
- // linebreak already present in file with Windows line endings
- '),
- ];
- yield 'file with shebang' => [
- <<<'EOD'
- #!x
- <?php
- echo 1;
- echo 2;
- EOD,
- <<<'EOD'
- #!x
- <?php echo 1;
- echo 2;
- 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\$foo = true;\n",
- "<?php \$foo = true;\n",
- ];
- }
- }
|