-
Notifications
You must be signed in to change notification settings - Fork 65
Expand file tree
/
Copy pathRemoveNeverUsedMockPropertyRector.php
More file actions
198 lines (165 loc) · 5.87 KB
/
RemoveNeverUsedMockPropertyRector.php
File metadata and controls
198 lines (165 loc) · 5.87 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
195
196
197
198
<?php
declare(strict_types=1);
namespace Rector\PHPUnit\CodeQuality\Rector\Class_;
use PhpParser\Node;
use PhpParser\Node\Expr\Assign;
use PhpParser\Node\Expr\MethodCall;
use PhpParser\Node\Expr\PropertyFetch;
use PhpParser\Node\Stmt\Class_;
use PhpParser\Node\Stmt\ClassMethod;
use PhpParser\Node\Stmt\Expression;
use PhpParser\Node\Stmt\Property;
use Rector\PHPUnit\CodeQuality\NodeAnalyser\MockObjectExprDetector;
use Rector\PHPUnit\CodeQuality\NodeAnalyser\MockObjectPropertyDetector;
use Rector\PHPUnit\NodeAnalyzer\TestsNodeAnalyzer;
use Rector\Rector\AbstractRector;
use Rector\ValueObject\MethodName;
use Symplify\RuleDocGenerator\ValueObject\CodeSample\CodeSample;
use Symplify\RuleDocGenerator\ValueObject\RuleDefinition;
/**
* @see \Rector\PHPUnit\Tests\CodeQuality\Rector\Class_\RemoveNeverUsedMockPropertyRector\RemoveNeverUsedMockPropertyRectorTest
*/
final class RemoveNeverUsedMockPropertyRector extends AbstractRector
{
public function __construct(
private readonly TestsNodeAnalyzer $testsNodeAnalyzer,
private readonly MockObjectPropertyDetector $mockObjectPropertyDetector,
private readonly MockObjectExprDetector $mockObjectExprDetector,
) {
}
public function getRuleDefinition(): RuleDefinition
{
return new RuleDefinition(
'Remove never used property mock, only to set expectations',
[
new CodeSample(
<<<'CODE_SAMPLE'
use PHPUnit\Framework\TestCase;
final class SomeTest extends TestCase
{
private $mockProperty = null;
protected function setUp(): void
{
$this->mockProperty = $this->createMock(SomeClass::class);
$this->mockProperty->expects($this->once())
->method('someMethod')
->willReturn('someValue');
}
}
CODE_SAMPLE
,
<<<'CODE_SAMPLE'
use PHPUnit\Framework\TestCase;
final class SomeTest extends TestCase
{
protected function setUp(): void
{
}
}
CODE_SAMPLE
),
]
);
}
/**
* @return array<class-string<Node>>
*/
public function getNodeTypes(): array
{
return [Class_::class];
}
/**
* @param Class_ $node
*/
public function refactor(Node $node): ?Node
{
if (! $this->testsNodeAnalyzer->isInTestClass($node)) {
return null;
}
$setUpClassMethod = $node->getMethod(MethodName::SET_UP);
if (! $setUpClassMethod instanceof ClassMethod) {
return null;
}
$propertyNamesToCreateMockMethodCalls = $this->mockObjectPropertyDetector->collectFromClassMethod(
$setUpClassMethod
);
if ($propertyNamesToCreateMockMethodCalls === []) {
return null;
}
$propertyNamesToRemove = [];
foreach (array_keys($propertyNamesToCreateMockMethodCalls) as $propertyName) {
if ($this->mockObjectExprDetector->isPropertyMockObjectPassedAsArgument($node, $propertyName)) {
continue;
}
$propertyNamesToRemove[] = $propertyName;
}
if ($propertyNamesToRemove === []) {
return null;
}
// remove never used mock properties
foreach ($propertyNamesToRemove as $propertyNameToRemove) {
// 1. remove property
$this->removePropertyFromClass($node, $propertyNameToRemove);
// 2. remove assign from setUp()
$this->removeMockPropertyFromSetUpMethod($setUpClassMethod, $propertyNameToRemove);
// 3. remove expression method calls on this property
foreach ($node->getMethods() as $classMethod) {
foreach ((array) $classMethod->stmts as $key => $classMethodStmt) {
if (! $classMethodStmt instanceof Expression) {
continue;
}
if (! $classMethodStmt->expr instanceof MethodCall) {
continue;
}
$methodCall = $classMethodStmt->expr;
$currentMethodCall = $methodCall;
while ($currentMethodCall->var instanceof MethodCall) {
$currentMethodCall = $currentMethodCall->var;
}
if (! $currentMethodCall->var instanceof PropertyFetch) {
continue;
}
$propertyFetch = $currentMethodCall->var;
if (! $this->isName($propertyFetch->name, $propertyNameToRemove)) {
continue;
}
unset($classMethod->stmts[$key]);
}
}
}
return $node;
}
private function removeMockPropertyFromSetUpMethod(ClassMethod $setUpClassMethod, string $propertyName): void
{
foreach ((array) $setUpClassMethod->stmts as $key => $classStmt) {
if (! $classStmt instanceof Expression) {
continue;
}
if (! $classStmt->expr instanceof Assign) {
continue;
}
$assign = $classStmt->expr;
if (! $assign->var instanceof PropertyFetch) {
continue;
}
$assignedPropertyFetch = $assign->var;
if (! $this->isName($assignedPropertyFetch->name, $propertyName)) {
continue;
}
unset($setUpClassMethod->stmts[$key]);
return;
}
}
private function removePropertyFromClass(Class_ $class, string $propertyNameToRemove): void
{
foreach ($class->stmts as $key => $stmt) {
if (! $stmt instanceof Property) {
continue;
}
if (! $this->isName($stmt, $propertyNameToRemove)) {
continue;
}
unset($class->stmts[$key]);
}
}
}