-
Notifications
You must be signed in to change notification settings - Fork 65
Expand file tree
/
Copy pathAssertCallAnalyzer.php
More file actions
194 lines (157 loc) · 5.89 KB
/
AssertCallAnalyzer.php
File metadata and controls
194 lines (157 loc) · 5.89 KB
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
190
191
192
193
194
<?php
declare(strict_types=1);
namespace Rector\PHPUnit\NodeAnalyzer;
use PhpParser\Node;
use PhpParser\Node\Expr\MethodCall;
use PhpParser\Node\Expr\StaticCall;
use PhpParser\Node\Identifier;
use PhpParser\Node\Stmt\ClassMethod;
use PHPStan\Type\TypeWithClassName;
use Rector\NodeNameResolver\NodeNameResolver;
use Rector\NodeTypeResolver\NodeTypeResolver;
use Rector\PhpParser\AstResolver;
use Rector\PhpParser\Node\BetterNodeFinder;
use Rector\PhpParser\Printer\BetterStandardPrinter;
use Rector\StaticTypeMapper\ValueObject\Type\FullyQualifiedObjectType;
final class AssertCallAnalyzer
{
/**
* @var int
*/
private const MAX_NESTED_METHOD_CALL_LEVEL = 5;
/**
* @var string[]
*/
private const ASSERT_METHOD_NAME_PREFIXES = [
'expectNotToPerformAssertions',
'assert',
'expectException',
'setExpectedException',
'expectOutput',
'should',
];
/**
* @var array<string, bool>
*/
private array $containsAssertCallByClassMethod = [];
/**
* This should prevent segfaults while going too deep into to parsed code. Without it, it might end-up with segfault
*/
private int $classMethodNestingLevel = 0;
public function __construct(
private readonly AstResolver $astResolver,
private readonly BetterStandardPrinter $betterStandardPrinter,
private readonly BetterNodeFinder $betterNodeFinder,
private readonly NodeNameResolver $nodeNameResolver,
private readonly NodeTypeResolver $nodeTypeResolver,
) {
}
public function resetNesting(): void
{
$this->classMethodNestingLevel = 0;
}
public function containsAssertCall(ClassMethod $classMethod): bool
{
++$this->classMethodNestingLevel;
// probably no assert method in the end
if ($this->classMethodNestingLevel > self::MAX_NESTED_METHOD_CALL_LEVEL) {
return false;
}
$cacheHash = md5($this->betterStandardPrinter->prettyPrint([$classMethod]));
if (isset($this->containsAssertCallByClassMethod[$cacheHash])) {
return $this->containsAssertCallByClassMethod[$cacheHash];
}
// A. try "->assert" shallow search first for performance
$hasDirectAssertOrMockCall = $this->hasDirectAssertOrMockCall($classMethod);
if ($hasDirectAssertOrMockCall) {
$this->containsAssertCallByClassMethod[$cacheHash] = $hasDirectAssertOrMockCall;
return true;
}
// B. look for nested calls
$hasNestedAssertOrMockCall = $this->hasNestedAssertCall($classMethod);
$this->containsAssertCallByClassMethod[$cacheHash] = $hasNestedAssertOrMockCall;
return $hasNestedAssertOrMockCall;
}
public function isAssertMethodCall(MethodCall|StaticCall $call): bool
{
if (! $call->name instanceof Identifier) {
return false;
}
$callName = $this->nodeNameResolver->getName($call->name);
if (! is_string($callName)) {
return false;
}
foreach (self::ASSERT_METHOD_NAME_PREFIXES as $assertMethodNamePrefix) {
if (str_starts_with($callName, $assertMethodNamePrefix)) {
return true;
}
}
return false;
}
private function hasDirectAssertOrMockCall(ClassMethod $classMethod): bool
{
return (bool) $this->betterNodeFinder->findFirst((array) $classMethod->stmts, function (Node $node): bool {
if ($node instanceof MethodCall) {
// probably a mock
if ($this->nodeNameResolver->isName($node->name, 'expects')) {
return true;
}
$type = $this->nodeTypeResolver->getType($node->var);
if ($type instanceof FullyQualifiedObjectType && in_array(
$type->getClassName(),
['PHPUnit\Framework\MockObject\MockBuilder', 'Prophecy\Prophet'],
true
)) {
return true;
}
return $this->isAssertMethodCall($node);
}
if ($node instanceof StaticCall) {
return $this->isAssertMethodCall($node);
}
return false;
});
}
private function hasNestedAssertCall(ClassMethod $classMethod): bool
{
$currentClassMethod = $classMethod;
// over and over the same method :/
return (bool) $this->betterNodeFinder->findFirst((array) $classMethod->stmts, function (Node $node) use (
$currentClassMethod
): bool {
if (! $node instanceof MethodCall && ! $node instanceof StaticCall) {
return false;
}
// is a mock call
if ($this->nodeNameResolver->isName($node->name, 'expects')) {
return true;
}
$classMethod = $this->resolveClassMethodFromCall($node);
// skip circular self calls
if ($currentClassMethod === $classMethod) {
return false;
}
if ($classMethod instanceof ClassMethod) {
return $this->containsAssertCall($classMethod);
}
return false;
});
}
private function resolveClassMethodFromCall(StaticCall | MethodCall $call): ?ClassMethod
{
if ($call instanceof MethodCall) {
$objectType = $this->nodeTypeResolver->getType($call->var);
} else {
// StaticCall
$objectType = $this->nodeTypeResolver->getType($call->class);
}
if (! $objectType instanceof TypeWithClassName) {
return null;
}
$methodName = $this->nodeNameResolver->getName($call->name);
if ($methodName === null) {
return null;
}
return $this->astResolver->resolveClassMethod($objectType->getClassName(), $methodName);
}
}