123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113 |
- <?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
- */
- final class LinebreakAfterOpeningTagFixerTest extends AbstractFixerTestCase
- {
- /**
- * @dataProvider provideFixCases
- */
- public function testFix(string $expected, ?string $input = null): void
- {
- $this->doTest($expected, $input);
- }
- 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
- '),
- ];
- }
- /**
- * @dataProvider provideMessyWhitespacesCases
- */
- public function testMessyWhitespaces(string $expected, ?string $input = null): void
- {
- $this->fixer->setWhitespacesConfig(new WhitespacesFixerConfig("\t", "\r\n"));
- $this->doTest($expected, $input);
- }
- public static function provideMessyWhitespacesCases(): iterable
- {
- yield [
- "<?php\r\n\$foo = true;\n",
- "<?php \$foo = true;\n",
- ];
- }
- }
|