123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236 |
- <?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\ClassUsage;
- use PhpCsFixer\Tests\Test\AbstractFixerTestCase;
- /**
- * @author Kuba Werłos <werlos@gmail.com>
- *
- * @internal
- *
- * @covers \PhpCsFixer\Fixer\ClassUsage\DateTimeImmutableFixer
- *
- * @extends AbstractFixerTestCase<\PhpCsFixer\Fixer\ClassUsage\DateTimeImmutableFixer>
- */
- final class DateTimeImmutableFixerTest 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 new DateTimeImmutable();',
- '<?php new DateTime();',
- ];
- yield [
- '<?php new DateTimeImmutable();',
- '<?php new DATETIME();',
- ];
- yield [
- '<?php new \DateTimeImmutable();',
- '<?php new \DateTime();',
- ];
- yield [
- '<?php new Foo\DateTime();',
- ];
- yield [
- '<?php namespace Foo; new DateTime();',
- ];
- yield [
- '<?php namespace Foo; new \DateTimeImmutable();',
- '<?php namespace Foo; new \DateTime();',
- ];
- yield [
- '<?php namespace Foo; use DateTime; new \DateTimeImmutable();',
- '<?php namespace Foo; use DateTime; new DateTime();',
- ];
- yield [
- '<?php namespace Foo; use DateTime; new Bar\DateTime();',
- ];
- yield [
- '<?php namespace Foo; use DateTime\Bar; new DateTime();',
- ];
- yield [
- '<?php namespace Foo; use Bar\DateTime; new DateTime();',
- ];
- yield [
- '<?php namespace Foo; use DateTime\Bar; use DateTime; use Baz\DateTime as BazDateTime; new \DateTimeImmutable();',
- '<?php namespace Foo; use DateTime\Bar; use DateTime; use Baz\DateTime as BazDateTime; new DateTime();',
- ];
- yield [
- '<?php $foo = DateTime::ISO8601;',
- ];
- yield [
- '<?php $foo = \datetime::ISO8601 + 24;',
- ];
- yield [
- "<?php DateTimeImmutable::createFromFormat('j-M-Y', '15-Feb-2009');",
- "<?php DateTime::createFromFormat('j-M-Y', '15-Feb-2009');",
- ];
- yield [
- '<?php \DateTimeImmutable::getLastErrors();',
- '<?php \DateTime::getLastErrors();',
- ];
- yield [
- '<?php Foo\DateTime::createFromFormat();',
- ];
- yield [
- '<?php $foo->DateTime();',
- ];
- yield [
- '<?php Foo::DateTime();',
- ];
- yield [
- '<?php Foo\DateTime();',
- ];
- yield [
- '<?php date_create_immutable("now");',
- '<?php date_create("now");',
- ];
- yield [
- '<?php date_create_immutable();',
- '<?php Date_Create();',
- ];
- yield [
- '<?php \date_create_immutable();',
- '<?php \date_create();',
- ];
- yield [
- '<?php namespace Foo; date_create_immutable();',
- '<?php namespace Foo; date_create();',
- ];
- yield [
- '<?php namespace Foo; \date_create_immutable();',
- '<?php namespace Foo; \date_create();',
- ];
- yield [
- "<?php date_create_immutable_from_format('j-M-Y', '15-Feb-2009');",
- "<?php date_create_from_format('j-M-Y', '15-Feb-2009');",
- ];
- yield [
- '<?php Foo\date_create();',
- ];
- yield [
- '<?php $foo->date_create();',
- ];
- yield [
- '<?php Foo::date_create();',
- ];
- yield [
- '<?php new date_create();',
- ];
- yield [
- '<?php new \date_create();',
- ];
- yield [
- '<?php new Foo\date_create();',
- ];
- yield [
- '<?php class Foo { public function datetime() {} }',
- ];
- yield [
- '<?php class Foo { public function date_create() {} }',
- ];
- yield [
- '<?php namespace Foo; use DateTime; class Bar { public function datetime() {} }',
- ];
- yield [
- '<?php
- namespace Foo;
- use DateTime\Bar;
- use DateTime;
- use Baz\DateTime as BazDateTime;
- new \DateTimeImmutable();
- new \DateTimeImmutable();
- new \DateTimeImmutable();
- new \DateTimeImmutable();
- ',
- '<?php
- namespace Foo;
- use DateTime\Bar;
- use DateTime;
- use Baz\DateTime as BazDateTime;
- new DateTime();
- new DateTime();
- new DateTime();
- new DateTime();
- ',
- ];
- }
- /**
- * @dataProvider provideFix80Cases
- *
- * @requires PHP 8.0
- */
- public function testFix80(string $expected): void
- {
- $this->doTest($expected);
- }
- /**
- * @return iterable<array{string}>
- */
- public static function provideFix80Cases(): iterable
- {
- yield ['<?php $foo?->DateTime();'];
- yield ['<?php $foo?->date_create();'];
- }
- }
|