Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
<?php declare (strict_types=1); namespace Rector\PHPUnit\PHPUnit60\Rector\MethodCall; us..
Decoded Output download
<?php
declare (strict_types=1);
namespace Rector\PHPUnit\PHPUnit60\Rector\MethodCall;
use PhpParser\Node;
use PhpParser\Node\Expr\MethodCall;
use PhpParser\Node\Expr\StaticCall;
use PhpParser\Node\Identifier;
use PhpParser\Node\Stmt\Expression;
use Rector\Contract\PhpParser\Node\StmtsAwareInterface;
use Rector\PHPUnit\NodeAnalyzer\TestsNodeAnalyzer;
use Rector\PHPUnit\NodeFactory\AssertCallFactory;
use Rector\Rector\AbstractRector;
use Symplify\RuleDocGenerator\ValueObject\CodeSample\CodeSample;
use Symplify\RuleDocGenerator\ValueObject\RuleDefinition;
/**
* @see \Rector\PHPUnit\Tests\PHPUnit60\Rector\MethodCall\DelegateExceptionArgumentsRector\DelegateExceptionArgumentsRectorTest
*/
final class DelegateExceptionArgumentsRector extends AbstractRector
{
/**
* @readonly
* @var \Rector\PHPUnit\NodeFactory\AssertCallFactory
*/
private $assertCallFactory;
/**
* @readonly
* @var \Rector\PHPUnit\NodeAnalyzer\TestsNodeAnalyzer
*/
private $testsNodeAnalyzer;
/**
* @var array<string, string>
*/
private const OLD_TO_NEW_METHOD = ['setExpectedException' => 'expectExceptionMessage', 'setExpectedExceptionRegExp' => 'expectExceptionMessageRegExp'];
public function __construct(AssertCallFactory $assertCallFactory, TestsNodeAnalyzer $testsNodeAnalyzer)
{
$this->assertCallFactory = $assertCallFactory;
$this->testsNodeAnalyzer = $testsNodeAnalyzer;
}
public function getRuleDefinition() : RuleDefinition
{
return new RuleDefinition('Takes `setExpectedException()` 2nd and next arguments to own methods in PHPUnit.', [new CodeSample(<<<'CODE_SAMPLE'
use PHPUnit\Framework\TestCase;
class SomeTest extends TestCase
{
public function test()
{
$this->setExpectedException(SomeException::class, "Message", "CODE");
}
}
CODE_SAMPLE
, <<<'CODE_SAMPLE'
use PHPUnit\Framework\TestCase;
class SomeTest extends TestCase
{
public function test()
{
$this->setExpectedException(SomeException::class);
$this->expectExceptionMessage('Message');
$this->expectExceptionCode('CODE');
}
}
CODE_SAMPLE
)]);
}
/**
* @return array<class-string<Node>>
*/
public function getNodeTypes() : array
{
return [StmtsAwareInterface::class];
}
/**
* @param StmtsAwareInterface $node
*/
public function refactor(Node $node) : ?Node
{
if ($node->stmts === null || $node->stmts === []) {
return null;
}
if (!$this->testsNodeAnalyzer->isInTestClass($node)) {
return null;
}
$hasChanged = \false;
$oldMethodNames = \array_keys(self::OLD_TO_NEW_METHOD);
foreach ($node->stmts as $key => $stmt) {
if (!$stmt instanceof Expression) {
continue;
}
if (!$stmt->expr instanceof StaticCall && !$stmt->expr instanceof MethodCall) {
continue;
}
$call = $stmt->expr;
if (!$this->testsNodeAnalyzer->isPHPUnitMethodCallNames($call, $oldMethodNames)) {
continue;
}
// add exception code method call
if (isset($call->args[2])) {
$extraCall = $this->assertCallFactory->createCallWithName($call, 'expectExceptionCode');
$extraCall->args[] = $call->args[2];
\array_splice($node->stmts, $key + 1, 0, [new Expression($extraCall)]);
unset($call->args[2]);
}
if (isset($call->args[1])) {
$extraCall = $this->createFirstArgExtraMethodCall($call);
\array_splice($node->stmts, $key + 1, 0, [new Expression($extraCall)]);
unset($call->args[1]);
}
$hasChanged = \true;
$call->name = new Identifier('expectException');
}
if ($hasChanged) {
return $node;
}
return null;
}
/**
* @param \PhpParser\Node\Expr\StaticCall|\PhpParser\Node\Expr\MethodCall $call
* @return \PhpParser\Node\Expr\MethodCall|\PhpParser\Node\Expr\StaticCall
*/
private function createFirstArgExtraMethodCall($call)
{
/** @var Identifier $identifierNode */
$identifierNode = $call->name;
$oldMethodName = $identifierNode->name;
$extraCall = $this->assertCallFactory->createCallWithName($call, self::OLD_TO_NEW_METHOD[$oldMethodName]);
$extraCall->args[] = $call->args[1];
return $extraCall;
}
}
?>
Did this file decode correctly?
Original Code
<?php
declare (strict_types=1);
namespace Rector\PHPUnit\PHPUnit60\Rector\MethodCall;
use PhpParser\Node;
use PhpParser\Node\Expr\MethodCall;
use PhpParser\Node\Expr\StaticCall;
use PhpParser\Node\Identifier;
use PhpParser\Node\Stmt\Expression;
use Rector\Contract\PhpParser\Node\StmtsAwareInterface;
use Rector\PHPUnit\NodeAnalyzer\TestsNodeAnalyzer;
use Rector\PHPUnit\NodeFactory\AssertCallFactory;
use Rector\Rector\AbstractRector;
use Symplify\RuleDocGenerator\ValueObject\CodeSample\CodeSample;
use Symplify\RuleDocGenerator\ValueObject\RuleDefinition;
/**
* @see \Rector\PHPUnit\Tests\PHPUnit60\Rector\MethodCall\DelegateExceptionArgumentsRector\DelegateExceptionArgumentsRectorTest
*/
final class DelegateExceptionArgumentsRector extends AbstractRector
{
/**
* @readonly
* @var \Rector\PHPUnit\NodeFactory\AssertCallFactory
*/
private $assertCallFactory;
/**
* @readonly
* @var \Rector\PHPUnit\NodeAnalyzer\TestsNodeAnalyzer
*/
private $testsNodeAnalyzer;
/**
* @var array<string, string>
*/
private const OLD_TO_NEW_METHOD = ['setExpectedException' => 'expectExceptionMessage', 'setExpectedExceptionRegExp' => 'expectExceptionMessageRegExp'];
public function __construct(AssertCallFactory $assertCallFactory, TestsNodeAnalyzer $testsNodeAnalyzer)
{
$this->assertCallFactory = $assertCallFactory;
$this->testsNodeAnalyzer = $testsNodeAnalyzer;
}
public function getRuleDefinition() : RuleDefinition
{
return new RuleDefinition('Takes `setExpectedException()` 2nd and next arguments to own methods in PHPUnit.', [new CodeSample(<<<'CODE_SAMPLE'
use PHPUnit\Framework\TestCase;
class SomeTest extends TestCase
{
public function test()
{
$this->setExpectedException(SomeException::class, "Message", "CODE");
}
}
CODE_SAMPLE
, <<<'CODE_SAMPLE'
use PHPUnit\Framework\TestCase;
class SomeTest extends TestCase
{
public function test()
{
$this->setExpectedException(SomeException::class);
$this->expectExceptionMessage('Message');
$this->expectExceptionCode('CODE');
}
}
CODE_SAMPLE
)]);
}
/**
* @return array<class-string<Node>>
*/
public function getNodeTypes() : array
{
return [StmtsAwareInterface::class];
}
/**
* @param StmtsAwareInterface $node
*/
public function refactor(Node $node) : ?Node
{
if ($node->stmts === null || $node->stmts === []) {
return null;
}
if (!$this->testsNodeAnalyzer->isInTestClass($node)) {
return null;
}
$hasChanged = \false;
$oldMethodNames = \array_keys(self::OLD_TO_NEW_METHOD);
foreach ($node->stmts as $key => $stmt) {
if (!$stmt instanceof Expression) {
continue;
}
if (!$stmt->expr instanceof StaticCall && !$stmt->expr instanceof MethodCall) {
continue;
}
$call = $stmt->expr;
if (!$this->testsNodeAnalyzer->isPHPUnitMethodCallNames($call, $oldMethodNames)) {
continue;
}
// add exception code method call
if (isset($call->args[2])) {
$extraCall = $this->assertCallFactory->createCallWithName($call, 'expectExceptionCode');
$extraCall->args[] = $call->args[2];
\array_splice($node->stmts, $key + 1, 0, [new Expression($extraCall)]);
unset($call->args[2]);
}
if (isset($call->args[1])) {
$extraCall = $this->createFirstArgExtraMethodCall($call);
\array_splice($node->stmts, $key + 1, 0, [new Expression($extraCall)]);
unset($call->args[1]);
}
$hasChanged = \true;
$call->name = new Identifier('expectException');
}
if ($hasChanged) {
return $node;
}
return null;
}
/**
* @param \PhpParser\Node\Expr\StaticCall|\PhpParser\Node\Expr\MethodCall $call
* @return \PhpParser\Node\Expr\MethodCall|\PhpParser\Node\Expr\StaticCall
*/
private function createFirstArgExtraMethodCall($call)
{
/** @var Identifier $identifierNode */
$identifierNode = $call->name;
$oldMethodName = $identifierNode->name;
$extraCall = $this->assertCallFactory->createCallWithName($call, self::OLD_TO_NEW_METHOD[$oldMethodName]);
$extraCall->args[] = $call->args[1];
return $extraCall;
}
}
Function Calls
None |
Stats
MD5 | e5f48ea5fac28a88d0781d11da118a3c |
Eval Count | 0 |
Decode Time | 89 ms |