forked from rectorphp/rector-phpunit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAssertIssetToSpecificMethodRector.php
189 lines (156 loc) · 5.77 KB
/
AssertIssetToSpecificMethodRector.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
<?php
declare(strict_types=1);
namespace Rector\PHPUnit\CodeQuality\Rector\MethodCall;
use PhpParser\Node;
use PhpParser\Node\Expr\ArrayDimFetch;
use PhpParser\Node\Expr\Isset_;
use PhpParser\Node\Expr\MethodCall;
use PhpParser\Node\Expr\PropertyFetch;
use PhpParser\Node\Expr\StaticCall;
use PhpParser\Node\Name\FullyQualified;
use PhpParser\Node\Scalar\String_;
use PhpParser\Node\Stmt\Class_;
use PHPStan\Reflection\ClassReflection;
use PHPStan\Reflection\ReflectionProvider;
use PHPStan\Type\ObjectWithoutClassType;
use PHPStan\Type\TypeWithClassName;
use Rector\Core\PhpParser\AstResolver;
use Rector\Core\Rector\AbstractRector;
use Rector\PHPUnit\NodeAnalyzer\IdentifierManipulator;
use Rector\PHPUnit\NodeAnalyzer\TestsNodeAnalyzer;
use Symplify\RuleDocGenerator\ValueObject\CodeSample\CodeSample;
use Symplify\RuleDocGenerator\ValueObject\RuleDefinition;
/**
* @see \Rector\PHPUnit\Tests\CodeQuality\Rector\MethodCall\AssertIssetToSpecificMethodRector\AssertIssetToSpecificMethodRectorTest
*/
final class AssertIssetToSpecificMethodRector extends AbstractRector
{
/**
* @var string
*/
private const ASSERT_TRUE = 'assertTrue';
/**
* @var string
*/
private const ASSERT_FALSE = 'assertFalse';
public function __construct(
private readonly IdentifierManipulator $identifierManipulator,
private readonly TestsNodeAnalyzer $testsNodeAnalyzer,
private readonly AstResolver $astResolver,
private readonly ReflectionProvider $reflectionProvider
) {
}
public function getRuleDefinition(): RuleDefinition
{
return new RuleDefinition(
'Turns isset comparisons to their method name alternatives in PHPUnit TestCase',
[
new CodeSample(
'$this->assertTrue(isset($anything->foo));',
'$this->assertObjectHasAttribute("foo", $anything);'
),
new CodeSample(
'$this->assertFalse(isset($anything["foo"]), "message");',
'$this->assertArrayNotHasKey("foo", $anything, "message");'
),
]
);
}
/**
* @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, [self::ASSERT_TRUE, self::ASSERT_FALSE])) {
return null;
}
if ($node->isFirstClassCallable()) {
return null;
}
$firstArgumentValue = $node->getArgs()[0]
->value;
// is property access
if (! $firstArgumentValue instanceof Isset_) {
return null;
}
$variableNodeClass = $firstArgumentValue->vars[0]::class;
if (! in_array($variableNodeClass, [ArrayDimFetch::class, PropertyFetch::class], true)) {
return null;
}
/** @var Isset_ $issetNode */
$issetNode = $node->getArgs()[0]
->value;
$issetNodeArg = $issetNode->vars[0];
if ($issetNodeArg instanceof PropertyFetch) {
if ($this->hasMagicIsset($issetNodeArg->var)) {
return null;
}
return $this->refactorPropertyFetchNode($node, $issetNodeArg);
}
if ($issetNodeArg instanceof ArrayDimFetch) {
return $this->refactorArrayDimFetchNode($node, $issetNodeArg);
}
return $node;
}
private function hasMagicIsset(Node $node): bool
{
$type = $this->nodeTypeResolver->getType($node);
if (! $type instanceof TypeWithClassName) {
// object not found, skip
return $type instanceof ObjectWithoutClassType;
}
$classReflection = $type->getClassReflection();
if (! $classReflection instanceof ClassReflection) {
return false;
}
if ($classReflection->hasMethod('__isset')) {
return true;
}
// reflection->getParents() got empty array when
// extends class not found by PHPStan
$className = $classReflection->getName();
$class = $this->astResolver->resolveClassFromName($className);
if (! $class instanceof Class_) {
return false;
}
if (! $class->extends instanceof FullyQualified) {
return false;
}
// if parent class not detected by PHPStan, assume it has __isset
return ! $this->reflectionProvider->hasClass($class->extends->toString());
}
private function refactorPropertyFetchNode(MethodCall|StaticCall $node, PropertyFetch $propertyFetch): ?Node
{
$name = $this->getName($propertyFetch);
if ($name === null) {
return null;
}
$this->identifierManipulator->renameNodeWithMap($node, [
self::ASSERT_TRUE => 'assertObjectHasAttribute',
self::ASSERT_FALSE => 'assertObjectNotHasAttribute',
]);
$oldArgs = $node->getArgs();
unset($oldArgs[0]);
$newArgs = $this->nodeFactory->createArgs([new String_($name), $propertyFetch->var]);
$node->args = array_merge($newArgs, $oldArgs);
return $node;
}
private function refactorArrayDimFetchNode(MethodCall|StaticCall $node, ArrayDimFetch $arrayDimFetch): Node
{
$this->identifierManipulator->renameNodeWithMap($node, [
self::ASSERT_TRUE => 'assertArrayHasKey',
self::ASSERT_FALSE => 'assertArrayNotHasKey',
]);
$oldArgs = $node->getArgs();
unset($oldArgs[0]);
$node->args = array_merge($this->nodeFactory->createArgs([$arrayDimFetch->dim, $arrayDimFetch->var]), $oldArgs);
return $node;
}
}