123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171 |
- <?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\Strict;
- use PhpCsFixer\Tests\Test\AbstractFixerTestCase;
- use PhpCsFixer\WhitespacesFixerConfig;
- /**
- * @internal
- *
- * @covers \PhpCsFixer\Fixer\Strict\DeclareStrictTypesFixer
- */
- final class DeclareStrictTypesFixerTest extends AbstractFixerTestCase
- {
- /**
- * @dataProvider provideFixCases
- */
- public function testFix(string $expected, ?string $input = null): void
- {
- $this->doTest($expected, $input);
- }
- public static function provideFixCases(): iterable
- {
- yield [
- '<?php
- declare(ticks=1);
- //
- declare(strict_types=1);
- namespace A\B\C;
- class A {
- }',
- ];
- yield [
- '<?php declare/* A b C*/(strict_types=1);',
- ];
- yield [
- '<?php /**/ /**/ deClarE (strict_types=1) ?>Test',
- '<?php /**/ /**/ deClarE (STRICT_TYPES=1) ?>Test',
- ];
- yield [
- '<?php DECLARE ( strict_types=1 ) ;',
- ];
- yield [
- '<?php
- /**/
- declare(strict_types=1);',
- ];
- yield [
- '<?php declare(strict_types=1);
- phpinfo();',
- '<?php
- phpinfo();',
- ];
- yield [
- '<?php declare(strict_types=1);
- /**
- * Foo
- */
- phpinfo();',
- '<?php
- /**
- * Foo
- */
- phpinfo();',
- ];
- yield [
- '<?php declare(strict_types=1);
- // comment after empty line',
- '<?php
- // comment after empty line',
- ];
- yield [
- '<?php declare(strict_types=1);
- // comment without empty line before',
- '<?php
- // comment without empty line before',
- ];
- yield [
- '<?php declare(strict_types=1);
- phpinfo();',
- '<?php phpinfo();',
- ];
- yield [
- '<?php declare(strict_types=1);
- $a = 456;
- ',
- '<?php
- $a = 456;
- ',
- ];
- yield [
- '<?php declare(strict_types=1);
- /**/',
- '<?php /**/',
- ];
- yield [
- '<?php declare(strict_types=1);',
- '<?php declare(strict_types=0);',
- ];
- }
- /**
- * @dataProvider provideDoNotFixCases
- */
- public function testDoNotFix(string $input): void
- {
- $this->doTest($input);
- }
- public static function provideDoNotFixCases(): iterable
- {
- yield [' <?php echo 123;']; // first statement must be an open tag
- yield ['<?= 123;']; // first token open with echo is not fixed
- }
- /**
- * @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 declare(strict_types=1);\r\nphpinfo();",
- "<?php\r\n\tphpinfo();",
- ];
- yield [
- "<?php declare(strict_types=1);\r\nphpinfo();",
- "<?php\nphpinfo();",
- ];
- }
- }
|