forked from rectorphp/rector-phpunit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAddDoesNotPerformAssertionToNonAssertingTestRector.php
134 lines (114 loc) · 3.76 KB
/
AddDoesNotPerformAssertionToNonAssertingTestRector.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
<?php
declare(strict_types=1);
namespace Rector\PHPUnit\PHPUnit60\Rector\ClassMethod;
use PhpParser\Node;
use PhpParser\Node\Stmt\ClassMethod;
use PHPStan\PhpDocParser\Ast\PhpDoc\GenericTagValueNode;
use PHPStan\PhpDocParser\Ast\PhpDoc\PhpDocTagNode;
use Rector\Core\Rector\AbstractRector;
use Rector\Php80\NodeAnalyzer\PhpAttributeAnalyzer;
use Rector\PHPUnit\NodeAnalyzer\AssertCallAnalyzer;
use Rector\PHPUnit\NodeAnalyzer\MockedVariableAnalyzer;
use Rector\PHPUnit\NodeAnalyzer\TestsNodeAnalyzer;
use Symplify\RuleDocGenerator\ValueObject\CodeSample\CodeSample;
use Symplify\RuleDocGenerator\ValueObject\RuleDefinition;
/**
* @changelog https://phpunit.readthedocs.io/en/9.5/annotations.html#doesnotperformassertions
* @changelog https://github.com/sebastianbergmann/phpunit/issues/2484
*
* @see \Rector\PHPUnit\Tests\PHPUnit60\Rector\ClassMethod\AddDoesNotPerformAssertionToNonAssertingTestRector\AddDoesNotPerformAssertionToNonAssertingTestRectorTest
*/
final class AddDoesNotPerformAssertionToNonAssertingTestRector extends AbstractRector
{
public function __construct(
private readonly TestsNodeAnalyzer $testsNodeAnalyzer,
private readonly AssertCallAnalyzer $assertCallAnalyzer,
private readonly MockedVariableAnalyzer $mockedVariableAnalyzer,
private readonly PhpAttributeAnalyzer $phpAttributeAnalyzer
) {
}
public function getRuleDefinition(): RuleDefinition
{
return new RuleDefinition(
'Tests without assertion will have @doesNotPerformAssertion',
[
new CodeSample(
<<<'CODE_SAMPLE'
use PHPUnit\Framework\TestCase;
class SomeClass extends TestCase
{
public function test()
{
$nothing = 5;
}
}
CODE_SAMPLE
,
<<<'CODE_SAMPLE'
use PHPUnit\Framework\TestCase;
class SomeClass extends TestCase
{
/**
* @doesNotPerformAssertions
*/
public function test()
{
$nothing = 5;
}
}
CODE_SAMPLE
),
]
);
}
/**
* @return array<class-string<Node>>
*/
public function getNodeTypes(): array
{
return [ClassMethod::class];
}
/**
* @param ClassMethod $node
*/
public function refactor(Node $node): ?Node
{
if ($this->shouldSkipClassMethod($node)) {
return null;
}
$phpDocInfo = $this->phpDocInfoFactory->createFromNodeOrEmpty($node);
$phpDocInfo->addPhpDocTagNode(new PhpDocTagNode('@doesNotPerformAssertions', new GenericTagValueNode('')));
return $node;
}
private function shouldSkipClassMethod(ClassMethod $classMethod): bool
{
if (! $this->testsNodeAnalyzer->isInTestClass($classMethod)) {
return true;
}
if (! $this->testsNodeAnalyzer->isTestClassMethod($classMethod)) {
return true;
}
if ($classMethod->isAbstract()) {
return true;
}
if ($this->hasAssertingAnnotationOrAttribute($classMethod)) {
return true;
}
$this->assertCallAnalyzer->resetNesting();
if ($this->assertCallAnalyzer->containsAssertCall($classMethod)) {
return true;
}
return $this->mockedVariableAnalyzer->containsMockAsUsedVariable($classMethod);
}
private function hasAssertingAnnotationOrAttribute(ClassMethod $classMethod): bool
{
$phpDocInfo = $this->phpDocInfoFactory->createFromNodeOrEmpty($classMethod);
if ($phpDocInfo->hasByNames(['doesNotPerformAssertions', 'expectedException'])) {
return true;
}
return $this->phpAttributeAnalyzer->hasPhpAttribute(
$classMethod,
'PHPUnit\Framework\Attributes\DoesNotPerformAssertions'
);
}
}