* 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 */ final class ErrorSuppressionFixerTest extends AbstractFixerTestCase { /** * @dataProvider provideFixCases */ public function testFix(string $expected, ?string $input = null, array $config = []): void { $this->fixer->configure($config); $this->doTest($expected, $input); } public function provideFixCases(): \Generator { yield from [ [ '', ], [ '', ], [ '', ], [ '', '', ], [ '', null, [ErrorSuppressionFixer::OPTION_MUTE_DEPRECATION_ERROR => false], ], [ '', '', ], [ '', '', ], [ '', '', ], [ '', ], [ '', ], [ 'trigger_error("This is not a deprecation warning.", E_USER_DEPRECATED); ?>', ], [ '', ], [ '', '', [ErrorSuppressionFixer::OPTION_MUTE_DEPRECATION_ERROR => true, ErrorSuppressionFixer::OPTION_NOISE_REMAINING_USAGES => true], ], [ 'isBar(); ?>', 'isBar(); ?>', [ErrorSuppressionFixer::OPTION_NOISE_REMAINING_USAGES => true], ], [ '', '', [ErrorSuppressionFixer::OPTION_NOISE_REMAINING_USAGES => true], ], [ '', '', [ErrorSuppressionFixer::OPTION_MUTE_DEPRECATION_ERROR => true, ErrorSuppressionFixer::OPTION_NOISE_REMAINING_USAGES => true, ErrorSuppressionFixer::OPTION_NOISE_REMAINING_USAGES_EXCLUDE => ['mkdir']], ], [ '', '', [ErrorSuppressionFixer::OPTION_MUTE_DEPRECATION_ERROR => true, ErrorSuppressionFixer::OPTION_NOISE_REMAINING_USAGES => true, ErrorSuppressionFixer::OPTION_NOISE_REMAINING_USAGES_EXCLUDE => ['mkdir']], ], [ '', '', [ErrorSuppressionFixer::OPTION_MUTE_DEPRECATION_ERROR => true, ErrorSuppressionFixer::OPTION_NOISE_REMAINING_USAGES => true, ErrorSuppressionFixer::OPTION_NOISE_REMAINING_USAGES_EXCLUDE => ['trigger_error']], ], ]; } /** * @dataProvider provideFixPre80Cases * @requires PHP <8.0 */ public function testFixPre80(string $expected, string $input = null): void { $this->doTest($expected, $input); } public function provideFixPre80Cases(): \Generator { yield [ '', ]; } /** * @requires PHP 7.3 */ public function testFix73(): void { $this->doTest( 'doTest($expected, $input); } public function provideFix81Cases(): \Generator { yield [ '