123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146 |
- <?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;
- use PhpCsFixer\AbstractFunctionReferenceFixer;
- use PhpCsFixer\AccessibleObject\AccessibleObject;
- use PhpCsFixer\FixerDefinition\FixerDefinitionInterface;
- use PhpCsFixer\Tokenizer\Tokens;
- /**
- * @internal
- *
- * @covers \PhpCsFixer\AbstractFunctionReferenceFixer
- */
- final class AbstractFunctionReferenceFixerTest extends TestCase
- {
- /**
- * @param null|list<int> $expected
- *
- * @dataProvider provideAbstractFunctionReferenceFixerCases
- */
- public function testAbstractFunctionReferenceFixer(
- ?array $expected,
- string $source,
- string $functionNameToSearch,
- int $start = 0,
- ?int $end = null
- ): void {
- $fixer = $this->createAbstractFunctionReferenceFixerDouble();
- self::assertTrue($fixer->isRisky());
- $tokens = Tokens::fromCode($source);
- self::assertSame(
- $expected,
- AccessibleObject::create($fixer)->find(
- $functionNameToSearch,
- $tokens,
- $start,
- $end
- )
- );
- self::assertFalse($tokens->isChanged());
- }
- public static function provideAbstractFunctionReferenceFixerCases(): iterable
- {
- yield 'simple case I' => [
- [1, 2, 3],
- '<?php foo();',
- 'foo',
- ];
- yield 'simple case II' => [
- [2, 3, 4],
- '<?php \foo();',
- 'foo',
- ];
- yield 'test start offset' => [
- null,
- '<?php
- foo();
- bar();
- ',
- 'foo',
- 5,
- ];
- yield 'test returns only the first candidate' => [
- [2, 3, 4],
- '<?php
- foo();
- foo();
- foo();
- foo();
- foo();
- ',
- 'foo',
- ];
- yield 'not found I' => [
- null,
- '<?php foo();',
- 'bar',
- ];
- yield 'not found II' => [
- null,
- '<?php $foo();',
- 'foo',
- ];
- yield 'not found III' => [
- null,
- '<?php function foo(){}',
- 'foo',
- ];
- yield 'not found IIIb' => [
- null,
- '<?php function foo($a){}',
- 'foo',
- ];
- yield 'not found IV' => [
- null,
- '<?php \A\foo();',
- 'foo',
- ];
- }
- private function createAbstractFunctionReferenceFixerDouble(): AbstractFunctionReferenceFixer
- {
- return new class extends AbstractFunctionReferenceFixer {
- public function getDefinition(): FixerDefinitionInterface
- {
- throw new \BadMethodCallException('Not implemented.');
- }
- public function isCandidate(Tokens $tokens): bool
- {
- throw new \BadMethodCallException('Not implemented.');
- }
- protected function applyFix(\SplFileInfo $file, Tokens $tokens): void
- {
- throw new \BadMethodCallException('Not implemented.');
- }
- };
- }
- }
|