-
Notifications
You must be signed in to change notification settings - Fork 56
Expand file tree
/
Copy pathAttributeRequiresPhpVersionRule.php
More file actions
132 lines (109 loc) · 3.39 KB
/
AttributeRequiresPhpVersionRule.php
File metadata and controls
132 lines (109 loc) · 3.39 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
<?php declare(strict_types = 1);
namespace PHPStan\Rules\PHPUnit;
use Composer\Semver\Constraint\ConstraintInterface;
use Composer\Semver\VersionParser;
use PhpParser\Node;
use PHPStan\Analyser\Scope;
use PHPStan\Node\InClassMethodNode;
use PHPStan\Php\PhpVersion;
use PHPStan\Rules\Rule;
use PHPStan\Rules\RuleErrorBuilder;
use PHPUnit\Framework\TestCase;
use UnexpectedValueException;
use function count;
use function is_numeric;
use function method_exists;
use function sprintf;
/**
* @implements Rule<InClassMethodNode>
*/
class AttributeRequiresPhpVersionRule implements Rule
{
private ConstraintInterface $phpstanVersionConstraint;
private PHPUnitVersion $PHPUnitVersion;
private TestMethodsHelper $testMethodsHelper;
/**
* When phpstan-deprecation-rules is installed, it reports deprecated usages.
*/
private bool $deprecationRulesInstalled;
public function __construct(
PHPUnitVersion $PHPUnitVersion,
TestMethodsHelper $testMethodsHelper,
bool $deprecationRulesInstalled,
PhpVersion $phpVersion
)
{
$this->PHPUnitVersion = $PHPUnitVersion;
$this->testMethodsHelper = $testMethodsHelper;
$this->deprecationRulesInstalled = $deprecationRulesInstalled;
$parser = new VersionParser();
$this->phpstanVersionConstraint = $parser->parseConstraints($phpVersion->getVersionString());
}
public function getNodeType(): string
{
return InClassMethodNode::class;
}
public function processNode(Node $node, Scope $scope): array
{
$classReflection = $scope->getClassReflection();
if ($classReflection === null || $classReflection->is(TestCase::class) === false) {
return [];
}
$reflectionMethod = $this->testMethodsHelper->getTestMethodReflection($classReflection, $node->getMethodReflection(), $scope);
if ($reflectionMethod === null) {
return [];
}
/** @phpstan-ignore function.alreadyNarrowedType */
if (!method_exists($reflectionMethod, 'getAttributes')) {
return [];
}
$errors = [];
$parser = new VersionParser();
foreach ($reflectionMethod->getAttributes('PHPUnit\Framework\Attributes\RequiresPhp') as $attr) {
$args = $attr->getArguments();
if (count($args) !== 1) {
continue;
}
if (
!is_numeric($args[0])
) {
try {
$testPhpVersionConstraint = $parser->parseConstraints($args[0]);
} catch (UnexpectedValueException $e) {
$errors[] = RuleErrorBuilder::message(
sprintf($e->getMessage()),
)
->identifier('phpunit.attributeRequiresPhpVersion')
->build();
continue;
}
if ($this->phpstanVersionConstraint->matches($testPhpVersionConstraint)) {
continue;
}
$errors[] = RuleErrorBuilder::message(
sprintf('Version requirement will always evaluate to false.'),
)
->identifier('phpunit.attributeRequiresPhpVersion')
->build();
continue;
}
if ($this->PHPUnitVersion->requiresPhpversionAttributeWithOperator()->yes()) {
$errors[] = RuleErrorBuilder::message(
sprintf('Version requirement is missing operator.'),
)
->identifier('phpunit.attributeRequiresPhpVersion')
->build();
} elseif (
$this->deprecationRulesInstalled
&& $this->PHPUnitVersion->deprecatesPhpversionAttributeWithoutOperator()->yes()
) {
$errors[] = RuleErrorBuilder::message(
sprintf('Version requirement without operator is deprecated.'),
)
->identifier('phpunit.attributeRequiresPhpVersion')
->build();
}
}
return $errors;
}
}