-
Notifications
You must be signed in to change notification settings - Fork 507
/
Copy pathPureMethodRuleTest.php
230 lines (215 loc) · 6.01 KB
/
PureMethodRuleTest.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
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
<?php declare(strict_types = 1);
namespace PHPStan\Rules\Pure;
use PHPStan\Rules\Rule;
use PHPStan\Testing\RuleTestCase;
use const PHP_VERSION_ID;
/**
* @extends RuleTestCase<PureMethodRule>
*/
class PureMethodRuleTest extends RuleTestCase
{
private bool $treatPhpDocTypesAsCertain;
public function getRule(): Rule
{
return new PureMethodRule(new FunctionPurityCheck());
}
protected function shouldTreatPhpDocTypesAsCertain(): bool
{
return $this->treatPhpDocTypesAsCertain;
}
public function testRule(): void
{
$this->treatPhpDocTypesAsCertain = true;
$this->analyse([__DIR__ . '/data/pure-method.php'], [
[
'Method PureMethod\Foo::doFoo() is marked as pure but parameter $p is passed by reference.',
11,
],
[
'Impure echo in pure method PureMethod\Foo::doFoo().',
13,
],
[
'Method PureMethod\Foo::doFoo2() is marked as pure but returns void.',
19,
],
[
'Impure die in pure method PureMethod\Foo::doFoo2().',
21,
],
[
'Impure property assignment in pure method PureMethod\Foo::doFoo3().',
29,
],
[
'Impure call to method PureMethod\Foo::voidMethod() in pure method PureMethod\Foo::doFoo4().',
71,
],
[
'Impure call to method PureMethod\Foo::impureVoidMethod() in pure method PureMethod\Foo::doFoo4().',
72,
],
[
'Possibly impure call to method PureMethod\Foo::returningMethod() in pure method PureMethod\Foo::doFoo4().',
73,
],
[
'Impure call to method PureMethod\Foo::impureReturningMethod() in pure method PureMethod\Foo::doFoo4().',
75,
],
[
'Possibly impure call to unknown method in pure method PureMethod\Foo::doFoo4().',
76,
],
[
'Impure call to method PureMethod\Foo::voidMethod() in pure method PureMethod\Foo::doFoo5().',
84,
],
[
'Impure call to method PureMethod\Foo::impureVoidMethod() in pure method PureMethod\Foo::doFoo5().',
85,
],
[
'Possibly impure call to method PureMethod\Foo::returningMethod() in pure method PureMethod\Foo::doFoo5().',
86,
],
[
'Impure call to method PureMethod\Foo::impureReturningMethod() in pure method PureMethod\Foo::doFoo5().',
88,
],
[
'Possibly impure call to unknown method in pure method PureMethod\Foo::doFoo5().',
89,
],
[
'Impure instantiation of class PureMethod\ImpureConstructor in pure method PureMethod\TestConstructors::doFoo().',
140,
],
[
'Possibly impure instantiation of class PureMethod\PossiblyImpureConstructor in pure method PureMethod\TestConstructors::doFoo().',
141,
],
[
'Possibly impure instantiation of unknown class in pure method PureMethod\TestConstructors::doFoo().',
142,
],
[
'Method PureMethod\ActuallyPure::doFoo() is marked as impure but does not have any side effects.',
153,
],
[
'Impure echo in pure method PureMethod\ExtendingClass::pure().',
183,
],
[
'Method PureMethod\ExtendingClass::impure() is marked as impure but does not have any side effects.',
187,
],
[
'Method PureMethod\ClassWithVoidMethods::privateEmptyVoidFunction() returns void but does not have any side effects.',
214,
],
[
'Impure assign to superglobal variable in pure method PureMethod\ClassWithVoidMethods::purePostGetAssign().',
230,
],
[
'Impure assign to superglobal variable in pure method PureMethod\ClassWithVoidMethods::purePostGetAssign().',
231,
],
[
'Possibly impure call to method PureMethod\MaybePureMagicMethods::__toString() in pure method PureMethod\TestMagicMethods::doFoo().',
295,
],
[
'Impure call to method PureMethod\ImpureMagicMethods::__toString() in pure method PureMethod\TestMagicMethods::doFoo().',
296,
],
[
'Possibly impure call to a callable in pure method PureMethod\MaybeCallableFromUnion::doFoo().',
330,
],
[
'Possibly impure call to a callable in pure method PureMethod\MaybeCallableFromUnion::doFoo().',
330,
],
[
'Impure static property access in pure method PureMethod\StaticMethodAccessingStaticProperty::getA().',
388,
],
[
'Impure property assignment in pure method PureMethod\StaticMethodAssigningStaticProperty::getA().',
409,
],
]);
}
public function testPureConstructor(): void
{
if (PHP_VERSION_ID < 80000) {
$this->markTestSkipped('Test requires PHP 8.0.');
}
$this->treatPhpDocTypesAsCertain = true;
$this->analyse([__DIR__ . '/data/pure-constructor.php'], [
[
'Impure static property access in pure method PureConstructor\Foo::__construct().',
19,
],
[
'Impure property assignment in pure method PureConstructor\Foo::__construct().',
19,
],
[
'Method PureConstructor\Bar::__construct() is marked as impure but does not have any side effects.',
30,
],
[
'Impure property assignment in pure method PureConstructor\AssignOtherThanThis::__construct().',
49,
],
]);
}
public function testImpureAssignRef(): void
{
$this->treatPhpDocTypesAsCertain = true;
$this->analyse([__DIR__ . '/data/impure-assign-ref.php'], [
[
'Possibly impure property assignment by reference in pure method ImpureAssignRef\HelloWorld::bar6().',
49,
],
]);
}
/**
* @dataProvider dataBug11207
*/
public function testBug11207(bool $treatPhpDocTypesAsCertain): void
{
$this->treatPhpDocTypesAsCertain = $treatPhpDocTypesAsCertain;
$this->analyse([__DIR__ . '/data/bug-11207.php'], []);
}
public function dataBug11207(): array
{
return [
[true],
[false],
];
}
public function testBug12048(): void
{
$this->treatPhpDocTypesAsCertain = true;
$this->analyse([__DIR__ . '/data/bug-12048.php'], []);
}
public function testBug12382(): void
{
$this->treatPhpDocTypesAsCertain = true;
$this->analyse([__DIR__ . '/data/bug-12382.php'], [
[
'Method Bug12382\FinalHelloWorld1::dummy() is marked as impure but does not have any side effects.',
25,
],
[
'Method Bug12382\FinalHelloWorld2::dummy() is marked as impure but does not have any side effects.',
33,
],
]);
}
}