File manager - Edit - /var/www/payraty/helpdesk/vendor/rector/rector/vendor/rector/rector-phpunit/src/Rector/MethodCall/ExplicitPhpErrorApiRector.php
Back
<?php declare (strict_types=1); namespace Rector\PHPUnit\Rector\MethodCall; use PhpParser\Node; use PhpParser\Node\Expr; use PhpParser\Node\Expr\ClassConstFetch; use PhpParser\Node\Expr\MethodCall; use PhpParser\Node\Expr\StaticCall; use Rector\Core\Rector\AbstractRector; use Rector\PHPUnit\NodeAnalyzer\TestsNodeAnalyzer; use Rector\PHPUnit\NodeFactory\AssertCallFactory; use Symplify\RuleDocGenerator\ValueObject\CodeSample\CodeSample; use Symplify\RuleDocGenerator\ValueObject\RuleDefinition; /** * @changelog https://github.com/sebastianbergmann/phpunit/blob/master/ChangeLog-9.0.md * @changelog https://github.com/sebastianbergmann/phpunit/commit/1ba2e3e1bb091acda3139f8a9259fa8161f3242d * * @see \Rector\PHPUnit\Tests\Rector\MethodCall\ExplicitPhpErrorApiRector\ExplicitPhpErrorApiRectorTest */ final class ExplicitPhpErrorApiRector extends AbstractRector { /** * @var array<string, string> */ private const REPLACEMENTS = ['PHPUnit\\Framework\\TestCase\\Notice' => 'expectNotice', 'PHPUnit\\Framework\\TestCase\\Deprecated' => 'expectDeprecation', 'PHPUnit\\Framework\\TestCase\\Error' => 'expectError', 'PHPUnit\\Framework\\TestCase\\Warning' => 'expectWarning']; /** * @readonly * @var \Rector\PHPUnit\NodeFactory\AssertCallFactory */ private $assertCallFactory; /** * @readonly * @var \Rector\PHPUnit\NodeAnalyzer\TestsNodeAnalyzer */ private $testsNodeAnalyzer; public function __construct(AssertCallFactory $assertCallFactory, TestsNodeAnalyzer $testsNodeAnalyzer) { $this->assertCallFactory = $assertCallFactory; $this->testsNodeAnalyzer = $testsNodeAnalyzer; } public function getRuleDefinition() : RuleDefinition { return new RuleDefinition('Use explicit API for expecting PHP errors, warnings, and notices', [new CodeSample(<<<'CODE_SAMPLE' final class SomeTest extends \PHPUnit\Framework\TestCase { public function test() { $this->expectException(\PHPUnit\Framework\TestCase\Deprecated::class); $this->expectException(\PHPUnit\Framework\TestCase\Error::class); $this->expectException(\PHPUnit\Framework\TestCase\Notice::class); $this->expectException(\PHPUnit\Framework\TestCase\Warning::class); } } CODE_SAMPLE , <<<'CODE_SAMPLE' final class SomeTest extends \PHPUnit\Framework\TestCase { public function test() { $this->expectDeprecation(); $this->expectError(); $this->expectNotice(); $this->expectWarning(); } } CODE_SAMPLE )]); } /** * @return array<class-string<Node>> */ public function getNodeTypes() : array { return [MethodCall::class, StaticCall::class]; } /** * @param MethodCall|StaticCall $node */ public function refactor(Node $node) : ?Node { if (!$this->testsNodeAnalyzer->isPHPUnitMethodCallNames($node, ['expectException'])) { return null; } foreach (self::REPLACEMENTS as $class => $method) { $newNode = $this->replaceExceptionWith($node, $class, $method); if ($newNode !== null) { return $newNode; } } return $node; } /** * @param \PhpParser\Node\Expr\MethodCall|\PhpParser\Node\Expr\StaticCall $node */ private function replaceExceptionWith($node, string $exceptionClass, string $explicitMethod) : ?Node { if (!isset($node->args[0])) { return null; } if (!$this->isClassConstReference($node->args[0]->value, $exceptionClass)) { return null; } return $this->assertCallFactory->createCallWithName($node, $explicitMethod); } /** * Detects "SomeClass::class" */ private function isClassConstReference(Expr $expr, string $className) : bool { if (!$expr instanceof ClassConstFetch) { return \false; } if (!$this->isName($expr->name, 'class')) { return \false; } return $this->isName($expr->class, $className); } }
| ver. 1.4 |
Github
|
.
| PHP 8.3.30 | Generation time: 0 |
proxy
|
phpinfo
|
Settings