rector/vendor/rector/rector-phpunit/src/Rector/MethodCall/WithConsecutiveArgToArrayRector.php
Tomas Votruba a3e534ff19 Updated Rector to commit db2e76b99c
db2e76b99c load stubs in config
2021-07-22 23:37:17 +00:00

199 lines
7.2 KiB
PHP

<?php
declare (strict_types=1);
namespace Rector\PHPUnit\Rector\MethodCall;
use PhpParser\Node;
use PhpParser\Node\Arg;
use PhpParser\Node\Expr\Array_;
use PhpParser\Node\Expr\Assign;
use PhpParser\Node\Expr\MethodCall;
use PhpParser\Node\Expr\Variable;
use PhpParser\Node\Scalar\String_;
use PHPStan\Reflection\ReflectionProvider;
use PHPStan\Type\ArrayType;
use PHPStan\Type\ObjectType;
use Rector\Core\Exception\ShouldNotHappenException;
use Rector\Core\NodeManipulator\MethodCallManipulator;
use Rector\Core\Rector\AbstractRector;
use Symplify\RuleDocGenerator\ValueObject\CodeSample\CodeSample;
use Symplify\RuleDocGenerator\ValueObject\RuleDefinition;
/**
* @see https://stackoverflow.com/questions/10954107/phpunit-how-do-i-mock-multiple-method-calls-with-multiple-arguments/28045531#28045531
* @see https://github.com/sebastianbergmann/phpunit/commit/72098d80f0cfc06c7e0652d331602685ce5b4b51
*
* @see \Rector\PHPUnit\Tests\Rector\MethodCall\WithConsecutiveArgToArrayRector\WithConsecutiveArgToArrayRectorTest
*/
final class WithConsecutiveArgToArrayRector extends \Rector\Core\Rector\AbstractRector
{
/**
* @var \Rector\Core\NodeManipulator\MethodCallManipulator
*/
private $methodCallManipulator;
/**
* @var \PHPStan\Reflection\ReflectionProvider
*/
private $reflectionProvider;
public function __construct(\Rector\Core\NodeManipulator\MethodCallManipulator $methodCallManipulator, \PHPStan\Reflection\ReflectionProvider $reflectionProvider)
{
$this->methodCallManipulator = $methodCallManipulator;
$this->reflectionProvider = $reflectionProvider;
}
public function getRuleDefinition() : \Symplify\RuleDocGenerator\ValueObject\RuleDefinition
{
return new \Symplify\RuleDocGenerator\ValueObject\RuleDefinition('Split withConsecutive() arg to array', [new \Symplify\RuleDocGenerator\ValueObject\CodeSample\CodeSample(<<<'CODE_SAMPLE'
class SomeClass
{
public function run($one, $two)
{
}
}
class SomeTestCase extends \PHPUnit\Framework\TestCase
{
public function test()
{
$someClassMock = $this->createMock(SomeClass::class);
$someClassMock
->expects($this->exactly(2))
->method('run')
->withConsecutive(1, 2, 3, 5);
}
}
CODE_SAMPLE
, <<<'CODE_SAMPLE'
class SomeClass
{
public function run($one, $two)
{
}
}
class SomeTestCase extends \PHPUnit\Framework\TestCase
{
public function test()
{
$someClassMock = $this->createMock(SomeClass::class);
$someClassMock
->expects($this->exactly(2))
->method('run')
->withConsecutive([1, 2], [3, 5]);
}
}
CODE_SAMPLE
)]);
}
/**
* @return array<class-string<Node>>
*/
public function getNodeTypes() : array
{
return [\PhpParser\Node\Expr\MethodCall::class];
}
/**
* @param MethodCall $node
*/
public function refactor(\PhpParser\Node $node) : ?\PhpParser\Node
{
if (!$this->isName($node->name, 'withConsecutive')) {
return null;
}
if ($this->hasArrayArgType($node)) {
return null;
}
// is a mock?
if (!$this->isObjectType($node, new \PHPStan\Type\ObjectType('PHPUnit\\Framework\\MockObject\\Builder\\InvocationMocker'))) {
return null;
}
$mockClass = $this->inferMockedClassName($node);
if ($mockClass === null) {
return null;
}
$mockMethod = $this->inferMockedMethodName($node);
if (!$this->reflectionProvider->hasClass($mockClass)) {
return null;
}
$numberOfParameters = $this->resolveNumberOfRequiredParameters($mockClass, $mockMethod);
$values = [];
foreach ($node->args as $arg) {
// already an array
$values[] = $arg->value;
}
// simple check argument count fits to method required args
if (\count($values) % $numberOfParameters !== 0) {
return null;
}
$node->args = [];
// split into chunks of X parameters
$valueChunks = \array_chunk($values, $numberOfParameters);
foreach ($valueChunks as $valueChunk) {
$node->args[] = new \PhpParser\Node\Arg($this->nodeFactory->createArray($valueChunk));
}
return $node;
}
private function hasArrayArgType(\PhpParser\Node\Expr\MethodCall $methodCall) : bool
{
foreach ($methodCall->args as $arg) {
if ($arg->value instanceof \PhpParser\Node\Expr\Array_) {
return \true;
}
$argumentStaticType = $this->getStaticType($arg->value);
if ($argumentStaticType instanceof \PHPStan\Type\ArrayType) {
return \true;
}
}
return \false;
}
private function inferMockedClassName(\PhpParser\Node\Expr\MethodCall $methodCall) : ?string
{
$variable = $this->findRootVariableOfChainCall($methodCall);
if (!$variable instanceof \PhpParser\Node\Expr\Variable) {
return null;
}
// look for "$this->createMock(X)"
$assignToVariable = $this->methodCallManipulator->findAssignToVariable($variable);
if (!$assignToVariable instanceof \PhpParser\Node\Expr\Assign) {
return null;
}
if ($assignToVariable->expr instanceof \PhpParser\Node\Expr\MethodCall) {
/** @var MethodCall $assignedMethodCall */
$assignedMethodCall = $assignToVariable->expr;
if ($this->isName($assignedMethodCall->var, 'this') && $this->isName($assignedMethodCall->name, 'createMock')) {
$firstArgumentValue = $assignedMethodCall->args[0]->value;
return $this->valueResolver->getValue($firstArgumentValue);
}
}
return null;
}
private function inferMockedMethodName(\PhpParser\Node\Expr\MethodCall $methodCall) : string
{
$previousMethodCalls = $this->methodCallManipulator->findMethodCallsIncludingChain($methodCall);
foreach ($previousMethodCalls as $previouMethodCall) {
if (!$this->isName($previouMethodCall->name, 'method')) {
continue;
}
$firstArgumentValue = $previouMethodCall->args[0]->value;
if (!$firstArgumentValue instanceof \PhpParser\Node\Scalar\String_) {
continue;
}
return $firstArgumentValue->value;
}
throw new \Rector\Core\Exception\ShouldNotHappenException();
}
private function findRootVariableOfChainCall(\PhpParser\Node\Expr\MethodCall $methodCall) : \PhpParser\Node\Expr\Variable
{
$currentMethodCallee = $methodCall->var;
while (!$currentMethodCallee instanceof \PhpParser\Node\Expr\Variable) {
$currentMethodCallee = $currentMethodCallee->var;
}
return $currentMethodCallee;
}
private function resolveNumberOfRequiredParameters(string $mockClass, string $mockMethod) : int
{
$classReflection = $this->reflectionProvider->getClass($mockClass);
$nativeClassReflection = $classReflection->getNativeReflection();
$reflectionMethod = $nativeClassReflection->getMethod($mockMethod);
return $reflectionMethod->getNumberOfParameters();
}
}