123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252 |
- <?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\ConfigurationException\InvalidFixerConfigurationException;
- use PhpCsFixer\Tests\Test\AbstractFixerTestCase;
- /**
- * @author Vladimir Reznichenko <kalessil@gmail.com>
- *
- * @internal
- *
- * @covers \PhpCsFixer\AbstractFunctionReferenceFixer
- * @covers \PhpCsFixer\Fixer\Alias\RandomApiMigrationFixer
- *
- * @extends AbstractFixerTestCase<\PhpCsFixer\Fixer\Alias\RandomApiMigrationFixer>
- *
- * @phpstan-import-type _AutogeneratedInputConfiguration from \PhpCsFixer\Fixer\Alias\RandomApiMigrationFixer
- */
- final class RandomApiMigrationFixerTest extends AbstractFixerTestCase
- {
- /**
- * @param _AutogeneratedInputConfiguration $configuration
- *
- * @dataProvider provideInvalidConfigurationCases
- */
- public function testInvalidConfiguration(string $message, array $configuration): void
- {
- $this->expectException(InvalidFixerConfigurationException::class);
- $this->expectExceptionMessage($message);
- $this->fixer->configure($configuration);
- }
- public static function provideInvalidConfigurationCases(): iterable
- {
- yield 'not supported function' => [
- '[random_api_migration] Invalid configuration: Function "is_null" is not handled by the fixer.',
- ['replacements' => ['is_null' => 'random_int']],
- ];
- yield 'wrong replacement' => [
- '[random_api_migration] Invalid configuration: The option "replacements" with value array is expected to be of type "string[]", but one of the elements is of type "null".',
- ['replacements' => ['rand' => null]],
- ];
- }
- public function testConfigure(): void
- {
- $this->fixer->configure(['replacements' => ['rand' => 'random_int']]);
- $reflectionProperty = new \ReflectionProperty($this->fixer, 'configuration');
- $reflectionProperty->setAccessible(true);
- self::assertSame(
- ['replacements' => [
- 'rand' => 'random_int',
- ]],
- $reflectionProperty->getValue($this->fixer)
- );
- }
- /**
- * @param _AutogeneratedInputConfiguration $config
- *
- * @dataProvider provideFixCases
- */
- public function testFix(string $expected, ?string $input = null, array $config = []): void
- {
- $this->fixer->configure($config);
- $this->doTest($expected, $input);
- }
- /**
- * @return iterable<array{0: string, 1?: ?string, 2?: array<string, mixed>}>
- */
- public static function provideFixCases(): iterable
- {
- yield [
- '<?php random_int(0, getrandmax());',
- '<?php rand();',
- ['replacements' => ['rand' => 'random_int']],
- ];
- yield [
- '<?php random_int#1
- #2
- (0, getrandmax()#3
- #4
- )#5
- ;',
- '<?php rand#1
- #2
- (#3
- #4
- )#5
- ;',
- ['replacements' => ['rand' => 'random_int']],
- ];
- yield ['<?php $smth->srand($a);'];
- yield ['<?php srandSmth($a);'];
- yield ['<?php smth_srand($a);'];
- yield ['<?php new srand($a);'];
- yield ['<?php new Smth\srand($a);'];
- yield ['<?php Smth\srand($a);'];
- yield ['<?php namespace\srand($a);'];
- yield ['<?php Smth::srand($a);'];
- yield ['<?php new srand\smth($a);'];
- yield ['<?php srand::smth($a);'];
- yield ['<?php srand\smth($a);'];
- yield ['<?php "SELECT ... srand(\$a) ...";'];
- yield ['<?php "SELECT ... SRAND($a) ...";'];
- yield ["<?php 'test'.'srand' . 'in concatenation';"];
- yield ['<?php "test" . "srand"."in concatenation";'];
- yield [
- '<?php
- class SrandClass
- {
- const srand = 1;
- public function srand($srand)
- {
- if (!defined("srand") || $srand instanceof srand) {
- echo srand;
- }
- }
- }
- class srand extends SrandClass{
- const srand = "srand";
- }
- ',
- ];
- yield ['<?php mt_srand($a);', '<?php srand($a);'];
- yield ['<?php \mt_srand($a);', '<?php \srand($a);'];
- yield ['<?php $a = &mt_srand($a);', '<?php $a = &srand($a);'];
- yield ['<?php $a = &\mt_srand($a);', '<?php $a = &\srand($a);'];
- yield ['<?php /* foo */ mt_srand /** bar */ ($a);', '<?php /* foo */ srand /** bar */ ($a);'];
- yield ['<?php a(mt_getrandmax ());', '<?php a(getrandmax ());'];
- yield ['<?php a(mt_rand());', '<?php a(rand());'];
- yield ['<?php a(mt_srand());', '<?php a(srand());'];
- yield ['<?php a(\mt_srand());', '<?php a(\srand());'];
- yield [
- '<?php rand(rand($a));',
- null,
- ['replacements' => ['rand' => 'random_int']],
- ];
- yield [
- '<?php random_int($d, random_int($a,$b));',
- '<?php rand($d, rand($a,$b));',
- ['replacements' => ['rand' => 'random_int']],
- ];
- yield [
- '<?php random_int($a, \Other\Scope\mt_rand($a));',
- '<?php rand($a, \Other\Scope\mt_rand($a));',
- ['replacements' => ['rand' => 'random_int']],
- ];
- yield [
- '<?php $a = random_int(1,2) + random_int(3,4);',
- '<?php $a = rand(1,2) + mt_rand(3,4);',
- ['replacements' => ['rand' => 'random_int', 'mt_rand' => 'random_int']],
- ];
- yield [
- '<?php
- interface Test
- {
- public function getrandmax();
- public function &rand();
- }',
- null,
- ['replacements' => ['rand' => 'random_int']],
- ];
- yield [
- '<?php rand($d, rand($a,$b));',
- null,
- ['replacements' => ['rand' => 'rand']],
- ];
- yield [
- '<?php $a = random_int(1,2,) + random_int(3,4,);',
- '<?php $a = rand(1,2,) + mt_rand(3,4,);',
- ['replacements' => ['rand' => 'random_int', 'mt_rand' => 'random_int']],
- ];
- yield [
- '<?php mt_srand($a,);',
- '<?php srand($a,);',
- ];
- }
- /**
- * @dataProvider provideFix81Cases
- *
- * @requires PHP 8.1
- */
- public function testFix81(string $expected, ?string $input = null): void
- {
- $this->doTest($expected, $input);
- }
- /**
- * @return iterable<string, array{string}>
- */
- public static function provideFix81Cases(): iterable
- {
- yield 'simple 8.1' => [
- '<?php $f = srand(...);',
- ];
- }
- }
|