-
Notifications
You must be signed in to change notification settings - Fork 65
Expand file tree
/
Copy pathConstructClassMethodToSetUpTestCaseRector.php
More file actions
242 lines (197 loc) · 7.03 KB
/
ConstructClassMethodToSetUpTestCaseRector.php
File metadata and controls
242 lines (197 loc) · 7.03 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
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
<?php
declare(strict_types=1);
namespace Rector\PHPUnit\CodeQuality\Rector\Class_;
use PhpParser\Node;
use PhpParser\Node\Expr;
use PhpParser\Node\Expr\StaticCall;
use PhpParser\Node\Expr\Variable;
use PhpParser\Node\Identifier;
use PhpParser\Node\Stmt;
use PhpParser\Node\Stmt\Class_;
use PhpParser\Node\Stmt\ClassMethod;
use PhpParser\Node\Stmt\Expression;
use PhpParser\NodeVisitor;
use PHPStan\Reflection\ClassReflection;
use Rector\NodeAnalyzer\ClassAnalyzer;
use Rector\PHPUnit\Enum\PHPUnitClassName;
use Rector\PHPUnit\NodeAnalyzer\SetUpMethodDecorator;
use Rector\PHPUnit\NodeAnalyzer\TestsNodeAnalyzer;
use Rector\Privatization\NodeManipulator\VisibilityManipulator;
use Rector\Rector\AbstractRector;
use Rector\Reflection\ReflectionResolver;
use Rector\ValueObject\MethodName;
use Symplify\RuleDocGenerator\ValueObject\CodeSample\CodeSample;
use Symplify\RuleDocGenerator\ValueObject\RuleDefinition;
/**
* @changelog https://github.com/sebastianbergmann/phpunit/issues/3975#issuecomment-562584609
*
* @see \Rector\PHPUnit\Tests\CodeQuality\Rector\Class_\ConstructClassMethodToSetUpTestCaseRector\ConstructClassMethodToSetUpTestCaseRectorTest
*/
final class ConstructClassMethodToSetUpTestCaseRector extends AbstractRector
{
public function __construct(
private readonly TestsNodeAnalyzer $testsNodeAnalyzer,
private readonly ClassAnalyzer $classAnalyzer,
private readonly VisibilityManipulator $visibilityManipulator,
private readonly SetUpMethodDecorator $setUpMethodDecorator,
private readonly ReflectionResolver $reflectionResolver
) {
}
public function getRuleDefinition(): RuleDefinition
{
return new RuleDefinition(
'Change __construct() method in tests of `PHPUnit\Framework\TestCase` to setUp(), to prevent dangerous override',
[
new CodeSample(
<<<'CODE_SAMPLE'
use PHPUnit\Framework\TestCase;
final class SomeTest extends TestCase
{
private $someValue;
public function __construct(?string $name = null, array $data = [], string $dataName = '')
{
$this->someValue = 1000;
parent::__construct($name, $data, $dataName);
}
}
CODE_SAMPLE
,
<<<'CODE_SAMPLE'
use PHPUnit\Framework\TestCase;
final class SomeTest extends TestCase
{
private $someValue;
protected function setUp()
{
parent::setUp();
$this->someValue = 1000;
}
}
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;
}
if ($this->shouldSkipClass($node)) {
return null;
}
foreach ($node->stmts as $stmtKey => $classStmt) {
if (! $classStmt instanceof ClassMethod) {
continue;
}
if (! $this->isName($classStmt->name, MethodName::CONSTRUCT)) {
continue;
}
if ($this->shouldSkip($node, $classStmt)) {
return null;
}
$addedStmts = $this->resolveStmtsToAddToSetUp($classStmt);
$setUpClassMethod = $node->getMethod(MethodName::SET_UP);
if (! $setUpClassMethod instanceof ClassMethod) {
// no setUp() method yet, rename it to setUp :)
$classStmt->name = new Identifier(MethodName::SET_UP);
$classStmt->params = [];
$classStmt->stmts = $addedStmts;
$this->setUpMethodDecorator->decorate($classStmt);
$this->visibilityManipulator->makeProtected($classStmt);
return $node;
}
// remove constructor and add stmts to already existing setUp() method
unset($node->stmts[$stmtKey]);
$setUpClassMethod->stmts = array_merge((array) $setUpClassMethod->stmts, $addedStmts);
return $node;
}
return null;
}
private function shouldSkip(Class_ $class, ClassMethod $classMethod): bool
{
$classReflection = $this->reflectionResolver->resolveClassReflection($class);
if (! $classReflection instanceof ClassReflection) {
return true;
}
$currentParent = current($classReflection->getParents());
if (! $currentParent instanceof ClassReflection) {
return true;
}
if ($currentParent->getName() !== PHPUnitClassName::TEST_CASE) {
return true;
}
$paramNames = [];
foreach ($classMethod->params as $param) {
$paramNames[] = $this->getName($param);
}
$isFoundParamUsed = false;
$this->traverseNodesWithCallable(
(array) $classMethod->stmts,
function (Node $subNode) use ($paramNames, &$isFoundParamUsed): ?int {
if ($subNode instanceof StaticCall && $this->isName($subNode->name, MethodName::CONSTRUCT)) {
return NodeVisitor::DONT_TRAVERSE_CHILDREN;
}
if ($subNode instanceof Variable && $this->isNames($subNode, $paramNames)) {
$isFoundParamUsed = true;
return NodeVisitor::STOP_TRAVERSAL;
}
return null;
}
);
return $isFoundParamUsed;
}
/**
* @return Stmt[]
*/
private function resolveStmtsToAddToSetUp(ClassMethod $constructClassMethod): array
{
$constructorStmts = (array) $constructClassMethod->stmts;
// remove parent call
foreach ($constructorStmts as $key => $constructorStmt) {
if ($constructorStmt instanceof Expression) {
$constructorStmt = clone $constructorStmt->expr;
}
if (! $this->isParentCallNamed($constructorStmt, MethodName::CONSTRUCT)) {
continue;
}
unset($constructorStmts[$key]);
}
return $constructorStmts;
}
private function isParentCallNamed(Node $node, string $desiredMethodName): bool
{
if (! $node instanceof StaticCall) {
return false;
}
if ($node->class instanceof Expr) {
return false;
}
if (! $this->isName($node->class, 'parent')) {
return false;
}
if ($node->name instanceof Expr) {
return false;
}
return $this->isName($node->name, $desiredMethodName);
}
private function shouldSkipClass(Class_ $class): bool
{
$className = $this->getName($class);
// probably helper class with access to protected methods like createMock()
if (! str_ends_with((string) $className, 'Test') && ! str_ends_with((string) $className, 'TestCase')) {
return true;
}
return $this->classAnalyzer->isAnonymousClass($class);
}
}