forked from phpstan/phpstan-src
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPureMethodRuleTest.php
More file actions
392 lines (373 loc) · 11.1 KB
/
PureMethodRuleTest.php
File metadata and controls
392 lines (373 loc) · 11.1 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
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
<?php declare(strict_types = 1);
namespace PHPStan\Rules\Pure;
use PHPStan\Rules\Rule;
use PHPStan\Testing\RuleTestCase;
use PHPUnit\Framework\Attributes\DataProvider;
use PHPUnit\Framework\Attributes\RequiresPhp;
/**
* @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,
],
[
'Impure echo in pure method PureMethod\TestMagicMethods::doEcho().',
309,
],
[
'Impure echo in pure method PureMethod\TestMagicMethods::doEcho().',
310,
],
[
'Possibly impure call to method PureMethod\MaybePureMagicMethods::__toString() in pure method PureMethod\TestMagicMethods::doEcho().',
311,
],
[
'Impure echo in pure method PureMethod\TestMagicMethods::doEcho().',
311,
],
[
'Impure call to method PureMethod\ImpureMagicMethods::__toString() in pure method PureMethod\TestMagicMethods::doEcho().',
312,
],
[
'Impure echo in pure method PureMethod\TestMagicMethods::doEcho().',
312,
],
[
'Impure print in pure method PureMethod\TestMagicMethods::doPrint().',
324,
],
[
'Possibly impure call to method PureMethod\MaybePureMagicMethods::__toString() in pure method PureMethod\TestMagicMethods::doPrint().',
325,
],
[
'Impure print in pure method PureMethod\TestMagicMethods::doPrint().',
325,
],
[
'Impure call to method PureMethod\ImpureMagicMethods::__toString() in pure method PureMethod\TestMagicMethods::doPrint().',
326,
],
[
'Impure print in pure method PureMethod\TestMagicMethods::doPrint().',
326,
],
[
'Possibly impure call to method PureMethod\MaybePureMagicMethods::__toString() in pure method PureMethod\TestMagicMethods::doConcat().',
339,
],
[
'Impure call to method PureMethod\ImpureMagicMethods::__toString() in pure method PureMethod\TestMagicMethods::doConcat().',
340,
],
[
'Possibly impure call to method PureMethod\MaybePureMagicMethods::__toString() in pure method PureMethod\TestMagicMethods::doConcatAssign().',
355,
],
[
'Impure call to method PureMethod\ImpureMagicMethods::__toString() in pure method PureMethod\TestMagicMethods::doConcatAssign().',
357,
],
[
'Possibly impure call to method PureMethod\MaybePureMagicMethods::__toString() in pure method PureMethod\TestMagicMethods::doInterpolation().',
370,
],
[
'Impure call to method PureMethod\ImpureMagicMethods::__toString() in pure method PureMethod\TestMagicMethods::doInterpolation().',
371,
],
[
'Possibly impure call to a callable in pure method PureMethod\MaybeCallableFromUnion::doFoo().',
405,
],
[
'Possibly impure call to a callable in pure method PureMethod\MaybeCallableFromUnion::doFoo().',
405,
],
[
'Impure static property access in pure method PureMethod\StaticMethodAccessingStaticProperty::getA().',
463,
],
[
'Impure property assignment in pure method PureMethod\StaticMethodAssigningStaticProperty::getA().',
484,
],
]);
}
#[RequiresPhp('>= 8.0.0')]
public function testPureConstructor(): void
{
$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 static function dataBug11207(): array
{
return [
[true],
[false],
];
}
public function testBug12048(): void
{
$this->treatPhpDocTypesAsCertain = true;
$this->analyse([__DIR__ . '/data/bug-12048.php'], []);
}
public function testBug12224(): void
{
$this->treatPhpDocTypesAsCertain = true;
$this->analyse([__DIR__ . '/data/bug-12224.php'], [
['Method PHPStan\Rules\Pure\data\A::pureWithThrowsVoid() is marked as pure but returns void.', 47],
]);
}
public function testAllMethodsArePure(): void
{
$this->treatPhpDocTypesAsCertain = true;
$this->analyse([__DIR__ . '/data/all-methods-are-pure.php'], [
[
'Method AllMethodsArePure\Foo::pureVoid() is marked as pure but returns void.',
30,
],
[
'Method AllMethodsArePure\Foo::impure() is marked as impure but does not have any side effects.',
37,
],
[
'Method AllMethodsArePure\Foo::impureVoid() is marked as impure but does not have any side effects.',
45,
],
[
'Method AllMethodsArePure\Bar::test() is marked as impure but does not have any side effects.',
55,
],
[
'Method AllMethodsArePure\Bar::testVoid() is marked as impure but does not have any side effects.',
60,
],
[
'Method AllMethodsArePure\Bar::pureVoid() is marked as pure but returns void.',
75,
],
[
'Method AllMethodsArePure\Bar::impure() is marked as impure but does not have any side effects.',
82,
],
[
'Method AllMethodsArePure\Bar::impureVoid() is marked as impure but does not have any side effects.',
90,
],
[
'Impure call to method AllMethodsArePure\Test::impure() in pure method AllMethodsArePure\SideEffectPure::nothingWithImpure().',
120,
],
[
'Method AllMethodsArePure\SideEffectPure::impureWithPure() is marked as impure but does not have any side effects.',
130,
],
[
'Method AllMethodsArePure\SideEffectImpure::nothingWithPure() is marked as impure but does not have any side effects.',
143,
],
[
'Impure call to method AllMethodsArePure\Test::impure() in pure method AllMethodsArePure\SideEffectImpure::pureWithImpure().',
148,
],
[
'Impure call to method AllMethodsArePure\FooWithMixed::impureMethod() in pure method AllMethodsArePure\FooWithMixed::testMixed().',
163,
],
[
'Impure call to method AllMethodsArePure\FooWithMixed::impureMethod() in pure method AllMethodsArePure\FooWithMixed::testMixed2().',
171,
],
]);
}
#[RequiresPhp('>= 8.0.0')]
public function testBug14138Pure(): void
{
$this->treatPhpDocTypesAsCertain = true;
$this->analyse([__DIR__ . '/data/bug-14138-pure.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,
],
[
'Method Bug12382\FinalHelloWorld3::dummy() is marked as impure but does not have any side effects.',
42,
],
[
'Method Bug12382\FinalHelloWorld4::dummy() is marked as impure but does not have any side effects.',
53,
],
]);
}
public function testBug14504(): void
{
$this->treatPhpDocTypesAsCertain = true;
$this->analyse([__DIR__ . '/data/bug-14504-method.php'], []);
}
public function testBug14511(): void
{
$this->treatPhpDocTypesAsCertain = true;
$this->analyse([__DIR__ . '/data/bug-14511-method.php'], []);
}
}