* 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\LanguageConstruct; use PhpCsFixer\Fixer\LanguageConstruct\ErrorSuppressionFixer; use PhpCsFixer\Tests\Test\AbstractFixerTestCase; /** * @author Jules Pietri * @author Kuba Werłos * * @internal * * @covers \PhpCsFixer\Fixer\LanguageConstruct\ErrorSuppressionFixer * * @extends AbstractFixerTestCase<\PhpCsFixer\Fixer\LanguageConstruct\ErrorSuppressionFixer> * * @phpstan-import-type _AutogeneratedInputConfiguration from \PhpCsFixer\Fixer\LanguageConstruct\ErrorSuppressionFixer */ final class ErrorSuppressionFixerTest extends AbstractFixerTestCase { /** * @param _AutogeneratedInputConfiguration $config * * @dataProvider provideFixCases */ public function testFix(string $expected, ?string $input = null, array $config = []): void { $this->fixer->configure($config); $this->doTest($expected, $input); } public static function provideFixCases(): iterable { yield [ '', ]; yield [ '', ]; yield [ '', ]; yield [ '', '', ]; yield [ '', null, [ErrorSuppressionFixer::OPTION_MUTE_DEPRECATION_ERROR => false], ]; yield [ '', '', ]; yield [ '', '', ]; yield [ '', '', ]; yield [ '', ]; yield [ '', ]; yield [ 'trigger_error("This is not a deprecation warning.", E_USER_DEPRECATED); ?>', ]; yield [ '', ]; yield [ '', '', [ErrorSuppressionFixer::OPTION_MUTE_DEPRECATION_ERROR => true, ErrorSuppressionFixer::OPTION_NOISE_REMAINING_USAGES => true], ]; yield [ 'isBar(); ?>', 'isBar(); ?>', [ErrorSuppressionFixer::OPTION_NOISE_REMAINING_USAGES => true], ]; yield [ '', '', [ErrorSuppressionFixer::OPTION_NOISE_REMAINING_USAGES => true], ]; yield [ '', '', [ErrorSuppressionFixer::OPTION_MUTE_DEPRECATION_ERROR => true, ErrorSuppressionFixer::OPTION_NOISE_REMAINING_USAGES => true, ErrorSuppressionFixer::OPTION_NOISE_REMAINING_USAGES_EXCLUDE => ['mkdir']], ]; yield [ '', '', [ErrorSuppressionFixer::OPTION_MUTE_DEPRECATION_ERROR => true, ErrorSuppressionFixer::OPTION_NOISE_REMAINING_USAGES => true, ErrorSuppressionFixer::OPTION_NOISE_REMAINING_USAGES_EXCLUDE => ['mkdir']], ]; yield [ '', '', [ErrorSuppressionFixer::OPTION_MUTE_DEPRECATION_ERROR => true, ErrorSuppressionFixer::OPTION_NOISE_REMAINING_USAGES => true, ErrorSuppressionFixer::OPTION_NOISE_REMAINING_USAGES_EXCLUDE => ['trigger_error']], ]; yield [ 'doTest($expected, $input); } /** * @return iterable */ public static function provideFixPre80Cases(): iterable { yield [ '', ]; } /** * @dataProvider provideFix81Cases * * @requires PHP 8.1 */ public function testFix81(string $expected, ?string $input = null): void { $this->doTest($expected, $input); } /** * @return iterable */ public static function provideFix81Cases(): iterable { yield [ '