* Dariusz Rumiński * * 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; /** * @author Graham Campbell * @author Dariusz Rumiński * @author SpacePossum * * @internal * * @covers \PhpCsFixer\Fixer\Phpdoc\PhpdocNoAliasTagFixer */ final class PhpdocNoAliasTagFixerTest extends AbstractFixerTestCase { public function testInvalidConfigCase1() { $this->expectException(\PhpCsFixer\ConfigurationException\InvalidFixerConfigurationException::class); $this->expectExceptionMessageRegExp('#^\[phpdoc_no_alias_tag\] Invalid configuration: Tag to replace must be a string\.$#'); $this->fixer->configure(['replacements' => [1 => 'abc']]); } public function testInvalidConfigCase2() { $this->expectException(\PhpCsFixer\ConfigurationException\InvalidFixerConfigurationException::class); $this->expectExceptionMessageRegExp('#^\[phpdoc_no_alias_tag\] Invalid configuration: Tag to replace to from "a" must be a string\.$#'); $this->fixer->configure(['replacements' => ['a' => null]]); } public function testInvalidConfigCase3() { $this->expectException(\PhpCsFixer\ConfigurationException\InvalidFixerConfigurationException::class); $this->expectExceptionMessageRegExp('#^\[phpdoc_no_alias_tag\] Invalid configuration: Tag "see" cannot be replaced by invalid tag "link\*\/"\.$#'); $this->fixer->configure(['replacements' => ['see' => 'link*/']]); } public function testInvalidConfigCase4() { $this->expectException(\PhpCsFixer\ConfigurationException\InvalidFixerConfigurationException::class); $this->expectExceptionMessageRegExp('#^\[phpdoc_no_alias_tag\] Invalid configuration: Cannot change tag "link" to tag "see", as the tag "see" is configured to be replaced to "link"\.$#'); $this->fixer->configure(['replacements' => [ 'link' => 'see', 'a' => 'b', 'see' => 'link', ]]); } public function testInvalidConfigCase5() { $this->expectException(\PhpCsFixer\ConfigurationException\InvalidFixerConfigurationException::class); $this->expectExceptionMessageRegExp('#^\[phpdoc_no_alias_tag\] Invalid configuration: Cannot change tag "b" to tag "see", as the tag "see" is configured to be replaced to "link"\.$#'); $this->fixer->configure(['replacements' => [ 'b' => 'see', 'see' => 'link', 'link' => 'b', ]]); } public function testInvalidConfigCase6() { $this->expectException(\PhpCsFixer\ConfigurationException\InvalidFixerConfigurationException::class); $this->expectExceptionMessageRegExp('#^\[phpdoc_no_alias_tag\] Invalid configuration: Cannot change tag "see" to tag "link", as the tag "link" is configured to be replaced to "b"\.$#'); $this->fixer->configure(['replacements' => [ 'see' => 'link', 'link' => 'b', ]]); } /** * @param string $expected * @param null|string $input * * @group legacy * @dataProvider providePropertyCases * @expectedDeprecation Passing "replacements" at the root of the configuration is deprecated and will not be supported in 3.0, use "replacements" => array(...) option instead. */ public function testLegacyPropertyFix($expected, $input = null) { $this->fixer->configure([ 'property-read' => 'property', 'property-write' => 'property', ]); $this->doTest($expected, $input); } /** * @param string $expected * @param null|string $input * * @dataProvider providePropertyCases */ public function testPropertyFix($expected, $input = null) { $this->fixer->configure(['replacements' => [ 'property-read' => 'property', 'property-write' => 'property', ]]); $this->doTest($expected, $input); } public function providePropertyCases() { return [ [ 'fixer->configure(['replacements' => [ 'type' => 'var', ]]); $this->doTest($expected, $input); } public function provideTypeToVarCases() { return [ [ 'fixer->configure(['replacements' => [ 'var' => 'type', ]]); $this->doTest($expected, $input); } public function provideVarToTypeCases() { return [ [ 'fixer->configure(['replacements' => [ 'link' => 'see', ]]); $this->doTest( '