-
Notifications
You must be signed in to change notification settings - Fork 65
Expand file tree
/
Copy pathTestsNodeAnalyzer.php
More file actions
119 lines (98 loc) · 3.43 KB
/
TestsNodeAnalyzer.php
File metadata and controls
119 lines (98 loc) · 3.43 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
<?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\Stmt\ClassMethod;
use PHPStan\Reflection\ClassReflection;
use PHPStan\Type\ObjectType;
use Rector\BetterPhpDocParser\PhpDocInfo\PhpDocInfoFactory;
use Rector\NodeNameResolver\NodeNameResolver;
use Rector\NodeTypeResolver\NodeTypeResolver;
use Rector\PHPUnit\Enum\PHPUnitClassName;
use Rector\Reflection\ReflectionResolver;
final readonly class TestsNodeAnalyzer
{
/**
* @var string[]
*/
private const TEST_CASE_OBJECT_CLASSES = ['PHPUnit\Framework\TestCase', 'PHPUnit_Framework_TestCase'];
public function __construct(
private NodeTypeResolver $nodeTypeResolver,
private NodeNameResolver $nodeNameResolver,
private PhpDocInfoFactory $phpDocInfoFactory,
private ReflectionResolver $reflectionResolver
) {
}
public function isInTestClass(Node $node): bool
{
$classReflection = $this->reflectionResolver->resolveClassReflection($node);
if (! $classReflection instanceof ClassReflection) {
return false;
}
foreach (self::TEST_CASE_OBJECT_CLASSES as $testCaseObjectClass) {
if ($classReflection->is($testCaseObjectClass)) {
return true;
}
}
return false;
}
public function isTestClassMethod(ClassMethod $classMethod): bool
{
if (! $classMethod->isPublic()) {
return false;
}
if (str_starts_with($classMethod->name->toString(), 'test')) {
return true;
}
$phpDocInfo = $this->phpDocInfoFactory->createFromNodeOrEmpty($classMethod);
return $phpDocInfo->hasByName('test');
}
public function isAssertMethodCallName(Node $node, string $name): bool
{
if ($node instanceof StaticCall) {
$callerType = $this->nodeTypeResolver->getType($node->class);
} elseif ($node instanceof MethodCall) {
$callerType = $this->nodeTypeResolver->getType($node->var);
} else {
return false;
}
$assertObjectType = new ObjectType('PHPUnit\Framework\Assert');
if (! $assertObjectType->isSuperTypeOf($callerType)
->yes()) {
return false;
}
/** @var StaticCall|MethodCall $node */
return $this->nodeNameResolver->isName($node->name, $name);
}
/**
* @param string[] $names
*/
public function isPHPUnitMethodCallNames(Node $node, array $names): bool
{
if (! $this->isPHPUnitTestCaseCall($node)) {
return false;
}
/** @var MethodCall|StaticCall $node */
return $this->nodeNameResolver->isNames($node->name, $names);
}
public function isPHPUnitTestCaseCall(Node $node): bool
{
if ($node instanceof MethodCall) {
return $this->isInTestClass($node);
}
if ($node instanceof StaticCall) {
$classType = $this->nodeTypeResolver->getType($node->class);
if ($classType instanceof ObjectType) {
if ($classType->isInstanceOf(PHPUnitClassName::TEST_CASE)->yes()) {
return true;
}
if ($classType->isInstanceOf(PHPUnitClassName::ASSERT)->yes()) {
return true;
}
}
}
return false;
}
}