123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923 |
- <?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\Phpdoc;
- use PhpCsFixer\Tests\Test\AbstractFixerTestCase;
- use PhpCsFixer\WhitespacesFixerConfig;
- /**
- * @internal
- *
- * @covers \PhpCsFixer\Fixer\Phpdoc\PhpdocAlignFixer
- */
- final class PhpdocAlignFixerTest extends AbstractFixerTestCase
- {
- public function testFix()
- {
- $this->fixer->configure(['tags' => ['param']]);
- $expected = <<<'EOF'
- <?php
- /**
- * @param EngineInterface $templating
- * @param string $format
- * @param int $code An HTTP response status code
- * @param bool $debug
- * @param mixed &$reference A parameter passed by reference
- */
- EOF;
- $input = <<<'EOF'
- <?php
- /**
- * @param EngineInterface $templating
- * @param string $format
- * @param int $code An HTTP response status code
- * @param bool $debug
- * @param mixed &$reference A parameter passed by reference
- */
- EOF;
- $this->doTest($expected, $input);
- }
- public function testFixMultiLineDesc()
- {
- $this->fixer->configure(['tags' => ['param', 'property', 'method']]);
- $expected = <<<'EOF'
- <?php
- /**
- * @param EngineInterface $templating
- * @param string $format
- * @param int $code An HTTP response status code
- * See constants
- * @param bool $debug
- * @param bool $debug See constants
- * See constants
- * @param mixed &$reference A parameter passed by reference
- * @property mixed $foo A foo
- * See constants
- * @method static baz($bop) A method that does a thing
- * It does it well
- */
- EOF;
- $input = <<<'EOF'
- <?php
- /**
- * @param EngineInterface $templating
- * @param string $format
- * @param int $code An HTTP response status code
- * See constants
- * @param bool $debug
- * @param bool $debug See constants
- * See constants
- * @param mixed &$reference A parameter passed by reference
- * @property mixed $foo A foo
- * See constants
- * @method static baz($bop) A method that does a thing
- * It does it well
- */
- EOF;
- $this->doTest($expected, $input);
- }
- public function testFixMultiLineDescWithThrows()
- {
- $this->fixer->configure(['tags' => ['param', 'return', 'throws']]);
- $expected = <<<'EOF'
- <?php
- /**
- * @param EngineInterface $templating
- * @param string $format
- * @param int $code An HTTP response status code
- * See constants
- * @param bool $debug
- * @param bool $debug See constants
- * See constants
- * @param mixed &$reference A parameter passed by reference
- *
- * @return Foo description foo
- *
- * @throws Foo description foo
- * description foo
- */
- EOF;
- $input = <<<'EOF'
- <?php
- /**
- * @param EngineInterface $templating
- * @param string $format
- * @param int $code An HTTP response status code
- * See constants
- * @param bool $debug
- * @param bool $debug See constants
- * See constants
- * @param mixed &$reference A parameter passed by reference
- *
- * @return Foo description foo
- *
- * @throws Foo description foo
- * description foo
- */
- EOF;
- $this->doTest($expected, $input);
- }
- public function testFixWithReturnAndThrows()
- {
- $this->fixer->configure(['tags' => ['param', 'throws', 'return']]);
- $expected = <<<'EOF'
- <?php
- /**
- * @param EngineInterface $templating
- * @param mixed &$reference A parameter passed by reference
- * @throws Bar description bar
- * @return Foo description foo
- */
- EOF;
- $input = <<<'EOF'
- <?php
- /**
- * @param EngineInterface $templating
- * @param mixed &$reference A parameter passed by reference
- * @throws Bar description bar
- * @return Foo description foo
- */
- EOF;
- $this->doTest($expected, $input);
- }
- /**
- * References the issue #55 on github issue
- * https://github.com/FriendsOfPhp/PHP-CS-Fixer/issues/55.
- */
- public function testFixThreeParamsWithReturn()
- {
- $this->fixer->configure(['tags' => ['param', 'return']]);
- $expected = <<<'EOF'
- <?php
- /**
- * @param string $param1
- * @param bool $param2 lorem ipsum
- * @param string $param3 lorem ipsum
- * @return int lorem ipsum
- */
- EOF;
- $input = <<<'EOF'
- <?php
- /**
- * @param string $param1
- * @param bool $param2 lorem ipsum
- * @param string $param3 lorem ipsum
- * @return int lorem ipsum
- */
- EOF;
- $this->doTest($expected, $input);
- }
- public function testFixOnlyReturn()
- {
- $this->fixer->configure(['tags' => ['return']]);
- $expected = <<<'EOF'
- <?php
- /**
- * @return Foo description foo
- */
- EOF;
- $input = <<<'EOF'
- <?php
- /**
- * @return Foo description foo
- */
- EOF;
- $this->doTest($expected, $input);
- }
- public function testReturnWithDollarThis()
- {
- $this->fixer->configure(['tags' => ['param', 'return']]);
- $expected = <<<'EOF'
- <?php
- /**
- * @param Foo $foo
- * @return $this
- */
- EOF;
- $input = <<<'EOF'
- <?php
- /**
- * @param Foo $foo
- * @return $this
- */
- EOF;
- $this->doTest($expected, $input);
- }
- public function testCustomAnnotationsStayUntouched()
- {
- $this->fixer->configure(['tags' => ['return']]);
- $expected = <<<'EOF'
- <?php
- /**
- * @return string
- * @SuppressWarnings(PHPMD.UnusedLocalVariable)
- */
- EOF;
- $input = <<<'EOF'
- <?php
- /**
- * @return string
- * @SuppressWarnings(PHPMD.UnusedLocalVariable)
- */
- EOF;
- $this->doTest($expected, $input);
- }
- public function testCustomAnnotationsStayUntouched2()
- {
- $this->fixer->configure(['tags' => ['var']]);
- $expected = <<<'EOF'
- <?php
- class X
- {
- /**
- * @var Collection<Value>|Value[]
- * @ORM\ManyToMany(
- * targetEntity="\Dl\Component\DomainModel\Product\Value\AbstractValue",
- * inversedBy="externalAliases"
- * )
- */
- private $values;
- }
- EOF;
- $this->doTest($expected);
- }
- public function testFixWithVar()
- {
- $this->fixer->configure(['tags' => ['var']]);
- $expected = <<<'EOF'
- <?php
- /**
- * @var Type
- */
- EOF;
- $input = <<<'EOF'
- <?php
- /**
- * @var Type
- */
- EOF;
- $this->doTest($expected, $input);
- }
- public function testFixWithType()
- {
- $this->fixer->configure(['tags' => ['type']]);
- $expected = <<<'EOF'
- <?php
- /**
- * @type Type
- */
- EOF;
- $input = <<<'EOF'
- <?php
- /**
- * @type Type
- */
- EOF;
- $this->doTest($expected, $input);
- }
- public function testFixWithVarAndDescription()
- {
- $this->fixer->configure(['tags' => ['var']]);
- $expected = <<<'EOF'
- <?php
- /**
- * This is a variable.
- *
- * @var Type
- */
- EOF;
- $input = <<<'EOF'
- <?php
- /**
- * This is a variable.
- *
- * @var Type
- */
- EOF;
- $this->doTest($expected, $input);
- }
- public function testFixWithVarAndInlineDescription()
- {
- $this->fixer->configure(['tags' => ['var']]);
- $expected = <<<'EOF'
- <?php
- /**
- * @var Type This is a variable.
- */
- EOF;
- $input = <<<'EOF'
- <?php
- /**
- * @var Type This is a variable.
- */
- EOF;
- $this->doTest($expected, $input);
- }
- public function testFixWithTypeAndInlineDescription()
- {
- $this->fixer->configure(['tags' => ['type']]);
- $expected = <<<'EOF'
- <?php
- /**
- * @type Type This is a variable.
- */
- EOF;
- $input = <<<'EOF'
- <?php
- /**
- * @type Type This is a variable.
- */
- EOF;
- $this->doTest($expected, $input);
- }
- public function testRetainsNewLineCharacters()
- {
- $this->fixer->configure(['tags' => ['param']]);
- // when we're not modifying a docblock, then line endings shouldn't change
- $this->doTest("<?php\r /**\r * @param Example Hello there!\r */\r");
- }
- public function testMalformedDocBlock()
- {
- $this->fixer->configure(['tags' => ['return']]);
- $input = <<<'EOF'
- <?php
- /**
- * @return string
- * */
- EOF;
- $this->doTest($input);
- }
- public function testDifferentIndentation()
- {
- $this->fixer->configure(['tags' => ['param', 'return']]);
- $expected = <<<'EOF'
- <?php
- /**
- * @param int $limit
- * @param string $more
- *
- * @return array
- */
- /**
- * @param int $limit
- * @param string $more
- *
- * @return array
- */
- EOF;
- $input = <<<'EOF'
- <?php
- /**
- * @param int $limit
- * @param string $more
- *
- * @return array
- */
- /**
- * @param int $limit
- * @param string $more
- *
- * @return array
- */
- EOF;
- $this->doTest($expected, $input);
- }
- /**
- * @param array $config
- * @param string $expected
- * @param null|string $input
- *
- * @dataProvider provideMessyWhitespacesCases
- */
- public function testMessyWhitespaces(array $config, $expected, $input = null)
- {
- $this->fixer->configure($config);
- $this->fixer->setWhitespacesConfig(new WhitespacesFixerConfig("\t", "\r\n"));
- $this->doTest($expected, $input);
- }
- public function provideMessyWhitespacesCases()
- {
- return [
- [
- ['tags' => ['type']],
- "<?php\r\n\t/**\r\n\t * @type Type This is a variable.\r\n\t */",
- "<?php\r\n\t/**\r\n\t * @type Type This is a variable.\r\n\t */",
- ],
- [
- ['tags' => ['param', 'return']],
- "<?php\r\n/**\r\n * @param int \$limit\r\n * @param string \$more\r\n *\r\n * @return array\r\n */",
- "<?php\r\n/**\r\n * @param int \$limit\r\n * @param string \$more\r\n *\r\n * @return array\r\n */",
- ],
- ];
- }
- public function testCanFixBadFormatted()
- {
- $this->fixer->configure(['tags' => ['var']]);
- $expected = "<?php\n /**\n * @var Foo */\n";
- $this->doTest($expected);
- }
- public function testFixUnicode()
- {
- $this->fixer->configure(['tags' => ['param', 'return']]);
- $expected = <<<'EOF'
- <?php
- /**
- * Method test.
- *
- * @param int $foobar Description
- * @param string $foo Description
- * @param mixed $bar Description word_with_ą
- * @param int|null $test Description
- */
- $a = 1;
- /**
- * @return string
- * @SuppressWarnings(PHPMD.UnusedLocalVariable) word_with_ą
- */
- $b = 1;
- EOF;
- $input = <<<'EOF'
- <?php
- /**
- * Method test.
- *
- * @param int $foobar Description
- * @param string $foo Description
- * @param mixed $bar Description word_with_ą
- * @param int|null $test Description
- */
- $a = 1;
- /**
- * @return string
- * @SuppressWarnings(PHPMD.UnusedLocalVariable) word_with_ą
- */
- $b = 1;
- EOF;
- $this->doTest($expected, $input);
- }
- public function testDoesNotAlignPropertyByDefault()
- {
- $expected = <<<'EOF'
- <?php
- /**
- * @param int $foobar Description
- * @return int
- * @throws Exception
- * @var FooBar
- * @type BarFoo
- * @property string $foo Hello World
- */
- EOF;
- $input = <<<'EOF'
- <?php
- /**
- * @param int $foobar Description
- * @return int
- * @throws Exception
- * @var FooBar
- * @type BarFoo
- * @property string $foo Hello World
- */
- EOF;
- $this->doTest($expected, $input);
- }
- public function testAlignsProperty()
- {
- $this->fixer->configure(['tags' => ['param', 'property', 'return', 'throws', 'type', 'var']]);
- $expected = <<<'EOF'
- <?php
- /**
- * @param int $foobar Description
- * @return int
- * @throws Exception
- * @var FooBar
- * @type BarFoo
- * @property string $foo Hello World
- */
- EOF;
- $input = <<<'EOF'
- <?php
- /**
- * @param int $foobar Description
- * @return int
- * @throws Exception
- * @var FooBar
- * @type BarFoo
- * @property string $foo Hello World
- */
- EOF;
- $this->doTest($expected, $input);
- }
- public function testDoesNotAlignMethodByDefault()
- {
- $expected = <<<'EOF'
- <?php
- /**
- * @param int $foobar Description
- * @return int
- * @throws Exception
- * @var FooBar
- * @type BarFoo
- * @method string foo(string $bar) Hello World
- */
- EOF;
- $input = <<<'EOF'
- <?php
- /**
- * @param int $foobar Description
- * @return int
- * @throws Exception
- * @var FooBar
- * @type BarFoo
- * @method string foo(string $bar) Hello World
- */
- EOF;
- $this->doTest($expected, $input);
- }
- public function testAlignsMethod()
- {
- $this->fixer->configure(['tags' => ['param', 'method', 'return', 'throws', 'type', 'var']]);
- $expected = <<<'EOF'
- <?php
- /**
- * @param int $foobar Description
- * @return int
- * @throws Exception
- * @var FooBar
- * @type BarFoo
- * @method int foo(string $bar, string ...$things, int &$baz) Description
- */
- EOF;
- $input = <<<'EOF'
- <?php
- /**
- * @param int $foobar Description
- * @return int
- * @throws Exception
- * @var FooBar
- * @type BarFoo
- * @method int foo(string $bar, string ...$things, int &$baz) Description
- */
- EOF;
- $this->doTest($expected, $input);
- }
- public function testAlignsMethodWithoutParameters()
- {
- $this->fixer->configure(['tags' => ['method', 'property']]);
- $expected = <<<'EOF'
- <?php
- /**
- * @property string $foo Desc
- * @method int foo() Description
- */
- EOF;
- $input = <<<'EOF'
- <?php
- /**
- * @property string $foo Desc
- * @method int foo() Description
- */
- EOF;
- $this->doTest($expected, $input);
- }
- public function testDoesNotFormatMethod()
- {
- $this->fixer->configure(['tags' => ['method']]);
- $input = <<<'EOF'
- <?php
- /**
- * @method int foo( string $bar ) Description
- */
- EOF;
- $this->doTest($input);
- }
- public function testAlignsMethodWithoutReturnType()
- {
- $this->fixer->configure(['tags' => ['method', 'property']]);
- $expected = <<<'EOF'
- <?php
- /**
- * @property string $foo Desc
- * @method int foo() Description
- * @method bar() Descrip
- */
- EOF;
- $input = <<<'EOF'
- <?php
- /**
- * @property string $foo Desc
- * @method int foo() Description
- * @method bar() Descrip
- */
- EOF;
- $this->doTest($expected, $input);
- }
- public function testAlignsMethodsWithoutReturnType()
- {
- $this->fixer->configure(['tags' => ['method']]);
- $expected = <<<'EOF'
- <?php
- /**
- * @method fooBaz() Description
- * @method bar(string $foo) Descrip
- */
- EOF;
- $input = <<<'EOF'
- <?php
- /**
- * @method fooBaz() Description
- * @method bar(string $foo) Descrip
- */
- EOF;
- $this->doTest($expected, $input);
- }
- public function testDoesNotAlignWithEmptyConfig()
- {
- $this->fixer->configure(['tags' => []]);
- $input = <<<'EOF'
- <?php
- /**
- * @param int $foobar Description
- * @return int
- * @throws Exception
- * @var FooBar
- * @type BarFoo
- * @property string $foo Hello World
- * @method int bar() Description
- */
- EOF;
- $this->doTest($input);
- }
- /**
- * @param array $config
- * @param string $expected
- * @param string $input
- *
- *
- * @dataProvider provideVariadicCases
- */
- public function testVariadicParams(array $config, $expected, $input)
- {
- $this->fixer->configure($config);
- $this->doTest($expected, $input);
- }
- public function provideVariadicCases()
- {
- return [
- [
- ['tags' => ['param']],
- '<?php
- final class Sample
- {
- /**
- * @param int[] $a A
- * @param int &$b B
- * @param array ...$c C
- */
- public function sample2($a, &$b, ...$c)
- {
- }
- }
- ',
- '<?php
- final class Sample
- {
- /**
- * @param int[] $a A
- * @param int &$b B
- * @param array ...$c C
- */
- public function sample2($a, &$b, ...$c)
- {
- }
- }
- ',
- ],
- [
- ['tags' => ['param']],
- '<?php
- final class Sample
- {
- /**
- * @param int $a
- * @param int $b
- * @param array[] ...$c
- */
- public function sample2($a, $b, ...$c)
- {
- }
- }
- ',
- '<?php
- final class Sample
- {
- /**
- * @param int $a
- * @param int $b
- * @param array[] ...$c
- */
- public function sample2($a, $b, ...$c)
- {
- }
- }
- ',
- ],
- ];
- }
- /**
- * @param array $config
- * @param string $input
- *
- * @dataProvider provideInvalidPhpdocCases
- */
- public function testInvalidPhpdocsAreUnchanged(array $config, $input)
- {
- $this->fixer->configure($config);
- $this->doTest($input);
- }
- public function provideInvalidPhpdocCases()
- {
- return [
- [
- ['tags' => ['param', 'return', 'throws', 'type', 'var']],
- '<?php
- /**
- * @ Security("is_granted(\'CANCEL\', giftCard)")
- */
- ',
- ],
- [
- ['tags' => ['param', 'return', 'throws', 'type', 'var', 'method']],
- '<?php
- /**
- * @ Security("is_granted(\'CANCEL\', giftCard)")
- */
- ',
- ],
- [
- ['tags' => ['param', 'return', 'throws', 'type', 'var']],
- '<?php
- /**
- * @ Security("is_granted(\'CANCEL\', giftCard)")
- * @ foo bar
- * @ foo
- */
- ',
- ],
- ];
- }
- }
|