123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157 |
- <?php
- declare(strict_types=1);
- /*
- * 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\Alias;
- use PhpCsFixer\Tests\Test\AbstractFixerTestCase;
- /**
- * @author Matteo Beccati <matteo@beccati.com>
- *
- * @internal
- *
- * @covers \PhpCsFixer\Fixer\Alias\EregToPregFixer
- *
- * @extends AbstractFixerTestCase<\PhpCsFixer\Fixer\Alias\EregToPregFixer>
- */
- final class EregToPregFixerTest extends AbstractFixerTestCase
- {
- /**
- * @dataProvider provideFixCases
- */
- public function testFix(string $expected, ?string $input = null): void
- {
- $this->doTest($expected, $input);
- }
- /**
- * @return iterable<int|string, array{0: string, 1?: string}>
- */
- public static function provideFixCases(): iterable
- {
- yield ['<?php $x = 1;'];
- yield ['<?php $x = "ereg";'];
- yield ['<?php $x = ereg("[A-Z]"."foo", $m);'];
- yield ['<?php $x = ereg("^*broken", $m);'];
- yield ['<?php $x = Foo::split("[A-Z]", $m);'];
- yield ['<?php $x = $foo->split("[A-Z]", $m);'];
- yield ['<?php $x = Foo\split("[A-Z]", $m);'];
- yield [
- '<?php $x = preg_match(\'/[A-Z]/D\');',
- '<?php $x = ereg(\'[A-Z]\');',
- ];
- yield [
- '<?php $x = preg_match(\'/[A-Z]/D\', $m);',
- '<?php $x = ereg(\'[A-Z]\', $m);',
- ];
- yield [
- '<?php $x = preg_match("/[A-Z]/D", $m);',
- '<?php $x = ereg("[A-Z]", $m);',
- ];
- yield [
- '<?php $x = preg_match("/[A-Z]/Di", $m);',
- '<?php $x = eregi("[A-Z]", $m);',
- ];
- yield [
- '<?php $x = preg_match("#/[AZ]#D", $m);',
- '<?php $x = ereg("/[AZ]", $m);',
- ];
- yield [
- '<?php $x = preg_match("#[AZ]/#D", $m);',
- '<?php $x = ereg("[AZ]/", $m);',
- ];
- yield [
- '<?php $x = preg_match("!#[A]/!D", $m);',
- '<?php $x = ereg("#[A]/", $m);',
- ];
- yield [
- '<?php $x = preg_match("!##[A\!]//!D", $m);',
- '<?php $x = ereg("##[A!]//", $m);',
- ];
- yield [
- '<?php $x = preg_match("/##[A!!]\/\//D", $m);',
- '<?php $x = ereg("##[A!!]//", $m);',
- ];
- yield [
- '<?php $x = preg_match("#\#\#[A!!]///#D", $m);',
- '<?php $x = ereg("##[A!!]///", $m);',
- ];
- yield [
- '<?php $x = preg_replace("/[A-Z]/D", "", $m);',
- '<?php $x = ereg_replace("[A-Z]", "", $m);',
- ];
- yield [
- '<?php $x = preg_replace("/[A-Z]/Di", "", $m);',
- '<?php $x = eregi_replace("[A-Z]", "", $m);',
- ];
- yield [
- '<?php $x = preg_split("/[A-Z]/D", $m);',
- '<?php $x = split("[A-Z]", $m);',
- ];
- yield [
- '<?php $x = preg_split("/[A-Z]/Di", $m);',
- '<?php $x = spliti("[A-Z]", $m);',
- ];
- yield 'binary lowercase' => [
- '<?php $x = preg_split(b"/[A-Z]/Di", $m);',
- '<?php $x = spliti(b"[A-Z]", $m);',
- ];
- yield 'binary uppercase' => [
- '<?php $x = preg_split(B"/[A-Z]/Di", $m);',
- '<?php $x = spliti(B"[A-Z]", $m);',
- ];
- }
- /**
- * @dataProvider provideFix81Cases
- *
- * @requires PHP 8.1
- */
- public function testFix81(string $expected, ?string $input = null): void
- {
- $this->doTest($expected, $input);
- }
- /**
- * @return iterable<array{string}>
- */
- public static function provideFix81Cases(): iterable
- {
- yield [
- '<?php $x = spliti(...);',
- ];
- }
- }
|