rector/rules/PhpSpecToPHPUnit/Rector/Class_/PhpSpecClassToPHPUnitClassRector.php
Tomas Votruba 816016aac7 Updated Rector to commit 294bea2d18
294bea2d18 [FileProcessor] Run untill the file is fixed completelly (#432)
2021-07-15 03:40:51 +00:00

148 lines
6.0 KiB
PHP

<?php
declare (strict_types=1);
namespace Rector\PhpSpecToPHPUnit\Rector\Class_;
use PhpParser\Node;
use PhpParser\Node\Expr\Assign;
use PhpParser\Node\Expr\MethodCall;
use PhpParser\Node\Expr\New_;
use PhpParser\Node\Expr\PropertyFetch;
use PhpParser\Node\Expr\Variable;
use PhpParser\Node\Name;
use PhpParser\Node\Stmt;
use PhpParser\Node\Stmt\Class_;
use PhpParser\Node\Stmt\ClassMethod;
use PhpParser\Node\Stmt\Expression;
use PHPStan\Type\ObjectType;
use Rector\Core\Exception\ShouldNotHappenException;
use Rector\Core\NodeManipulator\ClassInsertManipulator;
use Rector\PhpSpecToPHPUnit\LetManipulator;
use Rector\PhpSpecToPHPUnit\Naming\PhpSpecRenaming;
use Rector\PhpSpecToPHPUnit\Rector\AbstractPhpSpecToPHPUnitRector;
use Rector\PHPStanStaticTypeMapper\ValueObject\TypeKind;
use Rector\PHPUnit\NodeFactory\SetUpClassMethodFactory;
/**
* @see \Rector\Tests\PhpSpecToPHPUnit\Rector\Variable\PhpSpecToPHPUnitRector\PhpSpecToPHPUnitRectorTest
*/
final class PhpSpecClassToPHPUnitClassRector extends \Rector\PhpSpecToPHPUnit\Rector\AbstractPhpSpecToPHPUnitRector
{
/**
* @var string
*/
private const ALREADY_RENAMED_TO_TEST = 'already_renamed_to_test';
/**
* @var \Rector\Core\NodeManipulator\ClassInsertManipulator
*/
private $classInsertManipulator;
/**
* @var \Rector\PhpSpecToPHPUnit\LetManipulator
*/
private $letManipulator;
/**
* @var \Rector\PhpSpecToPHPUnit\Naming\PhpSpecRenaming
*/
private $phpSpecRenaming;
/**
* @var \Rector\PHPUnit\NodeFactory\SetUpClassMethodFactory
*/
private $setUpClassMethodFactory;
public function __construct(\Rector\Core\NodeManipulator\ClassInsertManipulator $classInsertManipulator, \Rector\PhpSpecToPHPUnit\LetManipulator $letManipulator, \Rector\PhpSpecToPHPUnit\Naming\PhpSpecRenaming $phpSpecRenaming, \Rector\PHPUnit\NodeFactory\SetUpClassMethodFactory $setUpClassMethodFactory)
{
$this->classInsertManipulator = $classInsertManipulator;
$this->letManipulator = $letManipulator;
$this->phpSpecRenaming = $phpSpecRenaming;
$this->setUpClassMethodFactory = $setUpClassMethodFactory;
}
/**
* @return array<class-string<Node>>
*/
public function getNodeTypes() : array
{
return [\PhpParser\Node\Stmt\Class_::class];
}
/**
* @param Class_ $node
*/
public function refactor(\PhpParser\Node $node) : ?\PhpParser\Node
{
if (!$this->isInPhpSpecBehavior($node)) {
return null;
}
$isAlreadyRenamedToTest = $node->getAttribute(self::ALREADY_RENAMED_TO_TEST);
if ($isAlreadyRenamedToTest) {
return null;
}
// 1. change namespace name to PHPUnit-like
$this->phpSpecRenaming->renameNamespace($node);
$propertyName = $this->phpSpecRenaming->resolveObjectPropertyName($node);
$node->setAttribute(self::ALREADY_RENAMED_TO_TEST, \true);
$this->phpSpecRenaming->renameClass($node);
$this->phpSpecRenaming->renameExtends($node);
$testedClass = $this->phpSpecRenaming->resolveTestedClass($node);
$testedObjectType = new \PHPStan\Type\ObjectType($testedClass);
$this->classInsertManipulator->addPropertyToClass($node, $propertyName, $testedObjectType);
$classMethod = $node->getMethod('let');
// add let if missing
if (!$classMethod instanceof \PhpParser\Node\Stmt\ClassMethod) {
if (!$this->letManipulator->isLetNeededInClass($node)) {
return null;
}
$letClassMethod = $this->createLetClassMethod($propertyName, $testedObjectType);
$this->classInsertManipulator->addAsFirstMethod($node, $letClassMethod);
}
return $this->removeSelfTypeMethod($node, $testedObjectType);
}
private function createLetClassMethod(string $propertyName, \PHPStan\Type\ObjectType $testedObjectType) : \PhpParser\Node\Stmt\ClassMethod
{
$propertyFetch = new \PhpParser\Node\Expr\PropertyFetch(new \PhpParser\Node\Expr\Variable('this'), $propertyName);
$testedObjectType = $this->staticTypeMapper->mapPHPStanTypeToPhpParserNode($testedObjectType, \Rector\PHPStanStaticTypeMapper\ValueObject\TypeKind::RETURN());
if (!$testedObjectType instanceof \PhpParser\Node\Name) {
throw new \Rector\Core\Exception\ShouldNotHappenException();
}
$new = new \PhpParser\Node\Expr\New_($testedObjectType);
$assign = new \PhpParser\Node\Expr\Assign($propertyFetch, $new);
return $this->setUpClassMethodFactory->createSetUpMethod([$assign]);
}
/**
* This is already checked on construction of object
*/
private function removeSelfTypeMethod(\PhpParser\Node\Stmt\Class_ $class, \PHPStan\Type\ObjectType $testedObjectType) : \PhpParser\Node\Stmt\Class_
{
foreach ($class->getMethods() as $classMethod) {
$classMethodStmts = (array) $classMethod->stmts;
if (\count($classMethodStmts) !== 1) {
continue;
}
$innerClassMethodStmt = $this->resolveFirstNonExpressionStmt($classMethodStmts);
if (!$innerClassMethodStmt instanceof \PhpParser\Node\Expr\MethodCall) {
continue;
}
if (!$this->isName($innerClassMethodStmt->name, 'shouldHaveType')) {
continue;
}
// not the tested type
if (!$this->valueResolver->isValue($innerClassMethodStmt->args[0]->value, $testedObjectType->getClassName())) {
continue;
}
// remove it
$this->removeNodeFromStatements($class, $classMethod);
}
return $class;
}
/**
* @param Stmt[] $stmts
*/
private function resolveFirstNonExpressionStmt(array $stmts) : ?\PhpParser\Node
{
if (!isset($stmts[0])) {
return null;
}
$firstStmt = $stmts[0];
if ($firstStmt instanceof \PhpParser\Node\Stmt\Expression) {
return $firstStmt->expr;
}
return $firstStmt;
}
}