123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801 |
- <?php
- /*
- * 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\ClassNotation;
- use PhpCsFixer\Tests\Test\AbstractFixerTestCase;
- /**
- * @author Gregor Harlan <gharlan@web.de>
- *
- * @internal
- *
- * @covers \PhpCsFixer\Fixer\ClassNotation\OrderedClassElementsFixer
- */
- final class OrderedClassElementsFixerTest extends AbstractFixerTestCase
- {
- /**
- * @param string $expected
- * @param null|string $input
- *
- * @dataProvider provideFixCases
- */
- public function testFix($expected, $input = null)
- {
- $this->doTest($expected, $input);
- }
- public function provideFixCases()
- {
- return [
- [
- <<<'EOT'
- <?php
- class Foo {}
- class Bar
- {
- }
- EOT
- ],
- [
- <<<'EOT'
- <?php
- class Foo { const C1 = 1; protected $abc = 'abc'; public function baz($y, $z) {} private function bar1($x) { return 1; } }
- EOT
- , <<<'EOT'
- <?php
- class Foo { private function bar1($x) { return 1; } protected $abc = 'abc'; const C1 = 1; public function baz($y, $z) {} }
- EOT
- ],
- [
- <<<'EOT'
- <?php
- interface FooInterface
- {
- const CONST1 = 'const1';
- const CONST2 = 'const2';
- public function xyz($x, $y, $z); // comment
- /**
- * @param array $a
- *
- * @return string
- */
- function abc(array &$a = null);
- public function def();
- }
- EOT
- , <<<'EOT'
- <?php
- interface FooInterface
- {
- public function xyz($x, $y, $z); // comment
- const CONST1 = 'const1';
- /**
- * @param array $a
- *
- * @return string
- */
- function abc(array &$a = null);
- const CONST2 = 'const2';
- public function def();
- }
- EOT
- ],
- [
- <<<'EOT'
- <?php
- abstract class Foo extends FooParent implements FooInterface1, FooInterface2
- {
- use Bar;
- use Baz {
- abc as private;
- }
- const C1 = 1;
- /* comment for C2 */
- const C2 = 2;
- public $fooPublic;
- // comment 3
- protected $fooProtected = array(1, 2);
- // comment 1
- private $fooPrivate;
- protected function __construct()
- {
- }
- public function __destruct() {}
- public function __clone() {}
- public static function setUpBeforeClass() {}
- public static function teardownafterclass() {
- } /* multiline
- comment */
- protected function setUp() {}
- protected function tearDown() {}
- abstract public function foo1($a, $b = 1);
- // foo2
- function foo2()
- {
- return $this->foo1(1);
- }
- public static function foo3(self $foo)
- {
- return $foo->foo2();
- } /* comment 1 */ /* comment 2 */
- // comment
- /**
- * Docblock
- */
- protected function foo4(\ArrayObject $object, array $array, $a = null)
- {
- bar();
- if (!$a) {
- $a = function ($x) {
- var_dump($x);
- };
- }
- }
- private function foo5()
- {
- } // end foo5
- }
- EOT
- , <<<'EOT'
- <?php
- abstract class Foo extends FooParent implements FooInterface1, FooInterface2
- {
- // comment 1
- private $fooPrivate;
- abstract public function foo1($a, $b = 1);
- protected function tearDown() {}
- public function __clone() {}
- const C1 = 1;
- // foo2
- function foo2()
- {
- return $this->foo1(1);
- }
- public static function setUpBeforeClass() {}
- public function __destruct() {}
- use Bar;
- public static function foo3(self $foo)
- {
- return $foo->foo2();
- } /* comment 1 */ /* comment 2 */
- // comment 3
- protected $fooProtected = array(1, 2);
- public $fooPublic;
- /* comment for C2 */
- const C2 = 2;
- public static function teardownafterclass() {
- } /* multiline
- comment */
- use Baz {
- abc as private;
- }
- private function foo5()
- {
- } // end foo5
- protected function setUp() {}
- protected function __construct()
- {
- }
- // comment
- /**
- * Docblock
- */
- protected function foo4(\ArrayObject $object, array $array, $a = null)
- {
- bar();
- if (!$a) {
- $a = function ($x) {
- var_dump($x);
- };
- }
- }
- }
- EOT
- ],
- [
- <<<'EOT'
- <?php
- class Foo
- {
- const C = 'C';
- public function abc() {}
- protected function xyz() {}
- }
- class Bar
- {
- const C = 1;
- public function foo($a) { return 1; }
- public function baz() {}
- }
- EOT
- , <<<'EOT'
- <?php
- class Foo
- {
- protected function xyz() {}
- const C = 'C';
- public function abc() {}
- }
- class Bar
- {
- public function foo($a) { return 1; }
- const C = 1;
- public function baz() {}
- }
- EOT
- ],
- [
- <<<'EOT'
- <?php
- trait FooTrait
- {
- use BarTrait;
- use BazTrait;
- protected function abc() {
- }
- }
- EOT
- , <<<'EOT'
- <?php
- trait FooTrait
- {
- protected function abc() {
- }
- use BarTrait;
- use BazTrait;
- }
- EOT
- ],
- ];
- }
- /**
- * @param string $expected
- * @param null|string $input
- * @param array $configuration
- *
- * @dataProvider provideFix71Cases
- * @requires PHP 7.1
- */
- public function testFix71(array $configuration, $expected, $input = null)
- {
- $this->fixer->configure($configuration);
- $this->doTest($expected, $input);
- }
- public function provideFix71Cases()
- {
- return [
- [
- [],
- <<<'EOT'
- <?php
- class Foo
- {
- const C2 = 2;
- public const C1 = 1;
- public const C3 = 3;
- protected const C4 = 4;
- private const C5 = 5;
- }
- EOT
- , <<<'EOT'
- <?php
- class Foo
- {
- private const C5 = 5;
- const C2 = 2;
- public const C1 = 1;
- protected const C4 = 4;
- public const C3 = 3;
- }
- EOT
- ],
- [
- ['sortAlgorithm' => 'alpha'],
- <<<'EOT'
- <?php
- class Foo
- {
- public const C1 = 1;
- const C2 = 2;
- public const C3 = 3;
- protected const C4 = 4;
- private const C5 = 5;
- }
- EOT
- , <<<'EOT'
- <?php
- class Foo
- {
- private const C5 = 5;
- const C2 = 2;
- public const C1 = 1;
- protected const C4 = 4;
- public const C3 = 3;
- }
- EOT
- ],
- ];
- }
- /**
- * @param string $expected
- *
- * @group legacy
- * @dataProvider provideConfigurationCases
- * @expectedDeprecation Passing "order" at the root of the configuration is deprecated and will not be supported in 3.0, use "order" => array(...) option instead.
- */
- public function testLegacyFixWithConfiguration(array $configuration, $expected)
- {
- static $input = <<<'EOT'
- <?php
- class Foo
- {
- private static function privStatFunc() {}
- protected static $protStatProp;
- public static $pubStatProp1;
- public function pubFunc1() {}
- use BarTrait;
- public $pubProp1;
- public function __toString() {}
- protected function protFunc() {}
- protected $protProp;
- function pubFunc2() {}
- public function __destruct() {}
- var $pubProp2;
- private static $privStatProp;
- use BazTrait;
- public static function pubStatFunc1() {}
- public function pubFunc3() {}
- private $privProp;
- const C1 = 1;
- static function pubStatFunc2() {}
- private function privFunc() {}
- public static $pubStatProp2;
- protected function __construct() {}
- const C2 = 2;
- public static function pubStatFunc3() {}
- public $pubProp3;
- protected static function protStatFunc() {}
- }
- EOT;
- $this->fixer->configure($configuration);
- $this->doTest($expected, $input);
- }
- /**
- * @param string $expected
- *
- * @dataProvider provideConfigurationCases
- */
- public function testFixWithConfiguration(array $configuration, $expected)
- {
- static $input = <<<'EOT'
- <?php
- class Foo
- {
- private static function privStatFunc() {}
- protected static $protStatProp;
- public static $pubStatProp1;
- public function pubFunc1() {}
- use BarTrait;
- public $pubProp1;
- public function __toString() {}
- protected function protFunc() {}
- protected $protProp;
- function pubFunc2() {}
- public function __destruct() {}
- var $pubProp2;
- private static $privStatProp;
- use BazTrait;
- public static function pubStatFunc1() {}
- public function pubFunc3() {}
- private $privProp;
- const C1 = 1;
- static function pubStatFunc2() {}
- private function privFunc() {}
- public static $pubStatProp2;
- protected function __construct() {}
- const C2 = 2;
- public static function pubStatFunc3() {}
- public $pubProp3;
- protected static function protStatFunc() {}
- }
- EOT;
- $this->fixer->configure(['order' => $configuration]);
- $this->doTest($expected, $input);
- }
- public function provideConfigurationCases()
- {
- return [
- [
- ['use_trait', 'constant', 'property', 'construct', 'method', 'destruct'],
- <<<'EOT'
- <?php
- class Foo
- {
- use BarTrait;
- use BazTrait;
- const C1 = 1;
- const C2 = 2;
- protected static $protStatProp;
- public static $pubStatProp1;
- public $pubProp1;
- protected $protProp;
- var $pubProp2;
- private static $privStatProp;
- private $privProp;
- public static $pubStatProp2;
- public $pubProp3;
- protected function __construct() {}
- private static function privStatFunc() {}
- public function pubFunc1() {}
- public function __toString() {}
- protected function protFunc() {}
- function pubFunc2() {}
- public static function pubStatFunc1() {}
- public function pubFunc3() {}
- static function pubStatFunc2() {}
- private function privFunc() {}
- public static function pubStatFunc3() {}
- protected static function protStatFunc() {}
- public function __destruct() {}
- }
- EOT
- ],
- [
- ['public', 'protected', 'private'],
- <<<'EOT'
- <?php
- class Foo
- {
- public static $pubStatProp1;
- public function pubFunc1() {}
- public $pubProp1;
- public function __toString() {}
- function pubFunc2() {}
- public function __destruct() {}
- var $pubProp2;
- public static function pubStatFunc1() {}
- public function pubFunc3() {}
- const C1 = 1;
- static function pubStatFunc2() {}
- public static $pubStatProp2;
- const C2 = 2;
- public static function pubStatFunc3() {}
- public $pubProp3;
- protected static $protStatProp;
- protected function protFunc() {}
- protected $protProp;
- protected function __construct() {}
- protected static function protStatFunc() {}
- private static function privStatFunc() {}
- private static $privStatProp;
- private $privProp;
- private function privFunc() {}
- use BarTrait;
- use BazTrait;
- }
- EOT
- ],
- [
- [
- 'use_trait',
- 'constant',
- 'property_public_static',
- 'property_protected_static',
- 'property_private_static',
- 'property_public',
- 'property_protected',
- 'property_private',
- 'construct',
- 'destruct',
- 'magic',
- 'method_public_static',
- 'method_protected_static',
- 'method_private_static',
- 'method_public',
- 'method_protected',
- 'method_private',
- ],
- <<<'EOT'
- <?php
- class Foo
- {
- use BarTrait;
- use BazTrait;
- const C1 = 1;
- const C2 = 2;
- public static $pubStatProp1;
- public static $pubStatProp2;
- protected static $protStatProp;
- private static $privStatProp;
- public $pubProp1;
- var $pubProp2;
- public $pubProp3;
- protected $protProp;
- private $privProp;
- protected function __construct() {}
- public function __destruct() {}
- public function __toString() {}
- public static function pubStatFunc1() {}
- static function pubStatFunc2() {}
- public static function pubStatFunc3() {}
- protected static function protStatFunc() {}
- private static function privStatFunc() {}
- public function pubFunc1() {}
- function pubFunc2() {}
- public function pubFunc3() {}
- protected function protFunc() {}
- private function privFunc() {}
- }
- EOT
- ],
- ];
- }
- /**
- * @param array $configuration
- * @param string $input
- * @param string $expected
- *
- * @dataProvider provideSortingConfigurationCases
- */
- public function testFixWithSortingAlhorithm(array $configuration, $input, $expected)
- {
- $this->fixer->configure($configuration);
- $this->doTest($expected, $input);
- }
- public function provideSortingConfigurationCases()
- {
- return [
- [
- [
- 'order' => [
- 'property_public_static',
- 'method_public',
- 'method_private',
- ],
- 'sortAlgorithm' => 'alpha',
- ],
- <<<'EOT'
- <?php
- class Example
- {
- public function D(){}
- public static $pubStatProp2;
- public function B1(){}
- public function B2(){}
- private function E(){}
- public static $pubStatProp1;
- public function A(){}
- public function C(){}
- public function C1(){}
- }
- EOT
- ,
- <<<'EOT'
- <?php
- class Example
- {
- public static $pubStatProp1;
- public static $pubStatProp2;
- public function A(){}
- public function B1(){}
- public function B2(){}
- public function C(){}
- public function C1(){}
- public function D(){}
- private function E(){}
- }
- EOT
- ],
- [
- [
- 'order' => [
- 'use_trait',
- 'constant',
- 'property_public_static',
- 'property_protected_static',
- 'property_private_static',
- 'property_public',
- 'property_protected',
- 'property_private',
- 'construct',
- 'destruct',
- 'magic',
- 'method_public_static',
- 'method_protected_static',
- 'method_private_static',
- 'method_public',
- 'method_protected',
- 'method_private',
- ],
- 'sortAlgorithm' => 'alpha',
- ],
- <<<'EOT'
- <?php
- class Foo
- {
- private static function privStatFunc() {}
- protected static $protStatProp;
- use BazTrait;
- public static $pubStatProp2;
- public $pubProp3;
- use BarTrait;
- public function __toString() {}
- protected function protFunc() {}
- protected $protProp;
- function pubFunc2() {}
- public $pubProp1;
- public function __destruct() {}
- var $pubProp2;
- public function __magicB() {}
- const C2 = 2;
- public static $pubStatProp1;
- public function __magicA() {}
- private static $privStatProp;
- static function pubStatFunc2() {}
- public function pubFunc3(int $b, int $c) {
- $a = $b*$c;
- return $a % 4;
- }
- private $privProp;
- const C1 = 1;
- public static function pubStatFunc3() {
- return $this->privFunc();
- }
- public function pubFunc1() {}
- public static function pubStatFunc1() {}
- private function privFunc() {}
- protected function __construct() {}
- protected static function protStatFunc() {}
- }
- EOT
- ,
- <<<'EOT'
- <?php
- class Foo
- {
- use BarTrait;
- use BazTrait;
- const C1 = 1;
- const C2 = 2;
- public static $pubStatProp1;
- public static $pubStatProp2;
- protected static $protStatProp;
- private static $privStatProp;
- public $pubProp1;
- var $pubProp2;
- public $pubProp3;
- protected $protProp;
- private $privProp;
- protected function __construct() {}
- public function __destruct() {}
- public function __magicA() {}
- public function __magicB() {}
- public function __toString() {}
- public static function pubStatFunc1() {}
- static function pubStatFunc2() {}
- public static function pubStatFunc3() {
- return $this->privFunc();
- }
- protected static function protStatFunc() {}
- private static function privStatFunc() {}
- public function pubFunc1() {}
- function pubFunc2() {}
- public function pubFunc3(int $b, int $c) {
- $a = $b*$c;
- return $a % 4;
- }
- protected function protFunc() {}
- private function privFunc() {}
- }
- EOT
- ],
- ];
- }
- public function testWrongConfig()
- {
- $this->expectException(\PhpCsFixer\ConfigurationException\InvalidFixerConfigurationException::class);
- $this->expectExceptionMessageRegExp('/^\[ordered_class_elements\] Invalid configuration: The option "order" .*\.$/');
- $this->fixer->configure(['order' => ['foo']]);
- }
- }
|