-
Notifications
You must be signed in to change notification settings - Fork 568
Expand file tree
/
Copy pathMatchExpressionRuleTest.php
More file actions
460 lines (414 loc) · 10.8 KB
/
MatchExpressionRuleTest.php
File metadata and controls
460 lines (414 loc) · 10.8 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
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
<?php declare(strict_types = 1);
namespace PHPStan\Rules\Comparison;
use PHPStan\Rules\Rule;
use PHPStan\Testing\RuleTestCase;
use PHPUnit\Framework\Attributes\RequiresPhp;
/**
* @extends RuleTestCase<MatchExpressionRule>
*/
class MatchExpressionRuleTest extends RuleTestCase
{
private bool $treatPhpDocTypesAsCertain = true;
protected function getRule(): Rule
{
return new MatchExpressionRule(
new ConstantConditionRuleHelper(
new ImpossibleCheckTypeHelper(
self::createReflectionProvider(),
$this->getTypeSpecifier(),
[],
$this->treatPhpDocTypesAsCertain,
),
$this->treatPhpDocTypesAsCertain,
),
$this->treatPhpDocTypesAsCertain,
);
}
protected function shouldTreatPhpDocTypesAsCertain(): bool
{
return $this->treatPhpDocTypesAsCertain;
}
public function testRule(): void
{
$tipText = 'Remove remaining cases below this one and this error will disappear too.';
$this->analyse([__DIR__ . '/data/match-expr.php'], [
[
'Match arm comparison between 1|2|3 and \'foo\' is always false.',
14,
],
[
'Match arm comparison between 1|2|3 and 0 is always false.',
19,
],
[
'Match arm comparison between 3 and 3 is always true.',
28,
$tipText,
],
[
'Match arm comparison between 3 and 3 is always true.',
35,
$tipText,
],
[
'Match arm comparison between 1 and 1 is always true.',
40,
$tipText,
],
[
'Match arm comparison between 1 and 1 is always true.',
46,
$tipText,
],
[
'Match expression does not handle remaining value: 3',
50,
],
[
'Match arm comparison between 1|2 and 3 is always false.',
61,
],
[
'Match expression does not handle remaining values: 1|2|3',
78,
],
[
'Match expression does not handle remaining value: true',
90,
],
[
'Match expression does not handle remaining values: int<min, 0>|int<2, max>',
168,
],
]);
}
public function testBug5161(): void
{
$this->analyse([__DIR__ . '/data/bug-5161.php'], []);
}
public function testBug4857(): void
{
$this->analyse([__DIR__ . '/data/bug-4857.php'], [
[
'Match expression does not handle remaining value: true',
13,
],
[
'Match expression does not handle remaining value: true',
23,
],
]);
}
#[RequiresPhp('>= 8.0')]
public function testBug5454(): void
{
$this->analyse([__DIR__ . '/data/bug-5454.php'], []);
}
#[RequiresPhp('>= 8.1')]
public function testEnums(): void
{
$this->analyse([__DIR__ . '/data/match-enums.php'], [
[
'Match expression does not handle remaining values: MatchEnums\Foo::THREE|MatchEnums\Foo::TWO',
19,
],
[
'Match expression does not handle remaining values: MatchEnums\Foo::THREE|MatchEnums\Foo::TWO',
35,
],
[
'Match expression does not handle remaining value: MatchEnums\Foo::THREE',
56,
],
[
'Match arm comparison between MatchEnums\Foo::THREE and MatchEnums\Foo::THREE is always true.',
76,
'Remove remaining cases below this one and this error will disappear too.',
],
[
'Match arm comparison between MatchEnums\Foo and MatchEnums\Foo::ONE is always false.',
85,
],
[
'Match arm comparison between *NEVER* and MatchEnums\DifferentEnum::ONE is always false.',
95,
],
[
'Match arm comparison between MatchEnums\Foo and MatchEnums\Foo::ONE is always false.',
104,
],
[
'Match arm comparison between *NEVER* and MatchEnums\DifferentEnum::ONE is always false.',
113,
],
]);
}
#[RequiresPhp('>= 8.1')]
public function testBug6394(): void
{
$this->analyse([__DIR__ . '/data/bug-6394.php'], []);
}
#[RequiresPhp('>= 8.0')]
public function testBug6115(): void
{
$this->analyse([__DIR__ . '/data/bug-6115.php'], [
[
'Match expression does not handle remaining value: 3',
32,
],
]);
}
#[RequiresPhp('>= 8.0')]
public function testBug7095(): void
{
$this->analyse([__DIR__ . '/data/bug-7095.php'], []);
}
#[RequiresPhp('>= 8.1')]
public function testBug7176(): void
{
$this->analyse([__DIR__ . '/data/bug-7176.php'], []);
}
#[RequiresPhp('>= 8.1')]
public function testBug6064(): void
{
$this->analyse([__DIR__ . '/data/bug-6064.php'], []);
}
#[RequiresPhp('>= 8.1')]
public function testBug6647(): void
{
$this->analyse([__DIR__ . '/data/bug-6647.php'], []);
}
#[RequiresPhp('>= 8.0')]
public function testBug7622(): void
{
$this->treatPhpDocTypesAsCertain = false;
$this->analyse([__DIR__ . '/data/bug-7622.php'], []);
}
#[RequiresPhp('>= 8.1')]
public function testBug7698(): void
{
$this->treatPhpDocTypesAsCertain = false;
$this->analyse([__DIR__ . '/data/bug-7698.php'], []);
}
#[RequiresPhp('>= 8.1')]
public function testBug7746(): void
{
$this->treatPhpDocTypesAsCertain = true;
$this->analyse([__DIR__ . '/data/bug-7746.php'], []);
}
#[RequiresPhp('>= 8.1')]
public function testBug8240(): void
{
$this->treatPhpDocTypesAsCertain = true;
$this->analyse([__DIR__ . '/data/bug-8240.php'], [
[
'Match arm comparison between Bug8240\Foo::BAR and Bug8240\Foo::BAR is always true.',
13,
'Remove remaining cases below this one and this error will disappear too.',
],
[
'Match arm comparison between Bug8240\Foo2::BAZ and Bug8240\Foo2::BAZ is always true.',
28,
'Remove remaining cases below this one and this error will disappear too.',
],
]);
}
#[RequiresPhp('>= 8.1')]
public function testLastArmAlwaysTrue(): void
{
$this->treatPhpDocTypesAsCertain = true;
$tipText = 'Remove remaining cases below this one and this error will disappear too.';
$this->analyse([__DIR__ . '/data/last-match-arm-always-true.php'], [
[
'Match arm comparison between $this(LastMatchArmAlwaysTrue\Foo)&LastMatchArmAlwaysTrue\Foo::TWO and LastMatchArmAlwaysTrue\Foo::TWO is always true.',
22,
$tipText,
],
[
'Match arm comparison between $this(LastMatchArmAlwaysTrue\Foo)&LastMatchArmAlwaysTrue\Foo::TWO and LastMatchArmAlwaysTrue\Foo::TWO is always true.',
31,
$tipText,
],
[
'Match arm comparison between $this(LastMatchArmAlwaysTrue\Foo)&LastMatchArmAlwaysTrue\Foo::TWO and LastMatchArmAlwaysTrue\Foo::TWO is always true.',
40,
$tipText,
],
[
'Match arm comparison between $this(LastMatchArmAlwaysTrue\Bar)&LastMatchArmAlwaysTrue\Bar::ONE and LastMatchArmAlwaysTrue\Bar::ONE is always true.',
62,
$tipText,
],
[
'Match arm comparison between 1 and 0 is always false.',
70,
],
[
'Match expression does not handle remaining value: 1',
69,
],
]);
}
#[RequiresPhp('>= 8.1')]
public function testLastCondition(): void
{
$this->treatPhpDocTypesAsCertain = true;
$this->analyse([__DIR__ . '/data/match-always-true-last-arm.php'], [
[
'Match arm comparison between $this(MatchAlwaysTrueLastArm\Foo)&MatchAlwaysTrueLastArm\Foo::BAR and MatchAlwaysTrueLastArm\Foo::BAR is always true.',
23,
'Remove remaining cases below this one and this error will disappear too.',
],
[
'Match arm comparison between $this(MatchAlwaysTrueLastArm\Foo)&MatchAlwaysTrueLastArm\Foo::BAR and MatchAlwaysTrueLastArm\Foo::BAR is always true.',
49,
'Remove remaining cases below this one and this error will disappear too.',
],
]);
}
#[RequiresPhp('>= 8.0')]
public function testBug8932(): void
{
$this->treatPhpDocTypesAsCertain = false;
$this->analyse([__DIR__ . '/data/bug-8932.php'], []);
}
#[RequiresPhp('>= 8.0')]
public function testBug8937(): void
{
$this->treatPhpDocTypesAsCertain = false;
$this->analyse([__DIR__ . '/data/bug-8937.php'], []);
}
#[RequiresPhp('>= 8.0')]
public function testBug8900(): void
{
$this->analyse([__DIR__ . '/data/bug-8900.php'], []);
}
#[RequiresPhp('>= 8.1')]
public function testBug4451(): void
{
$this->analyse([__DIR__ . '/data/bug-4451.php'], []);
}
#[RequiresPhp('>= 8.1')]
public function testBug9007(): void
{
$this->analyse([__DIR__ . '/data/bug-9007.php'], []);
}
#[RequiresPhp('>= 8.1')]
public function testBug9457(): void
{
$this->analyse([__DIR__ . '/data/bug-9457.php'], []);
}
#[RequiresPhp('>= 8.1')]
public function testBug8614(): void
{
$this->analyse([__DIR__ . '/data/bug-8614.php'], []);
}
#[RequiresPhp('>= 8.1')]
public function testBug8536(): void
{
$this->analyse([__DIR__ . '/data/bug-8536.php'], []);
}
#[RequiresPhp('>= 8.1')]
public function testBug9499(): void
{
$this->analyse([__DIR__ . '/data/bug-9499.php'], []);
}
#[RequiresPhp('>= 8.0')]
public function testBug6407(): void
{
$this->analyse([__DIR__ . '/data/bug-6407.php'], []);
}
#[RequiresPhp('>= 8.1')]
public function testBugUnhandledTrueWithComplexCondition(): void
{
$this->analyse([__DIR__ . '/data/bug-unhandled-true-with-complex-condition.php'], []);
}
#[RequiresPhp('>= 8.1')]
public function testBug11246(): void
{
$this->analyse([__DIR__ . '/data/bug-11246.php'], []);
}
#[RequiresPhp('>= 8.1')]
public function testBug9879(): void
{
$this->analyse([__DIR__ . '/data/bug-9879.php'], []);
}
#[RequiresPhp('>= 8.1')]
public function testBug11313(): void
{
$this->analyse([__DIR__ . '/data/bug-11313.php'], []);
}
#[RequiresPhp('>= 8.0')]
public function testBug9436(): void
{
$this->analyse([__DIR__ . '/data/bug-9436.php'], []);
}
#[RequiresPhp('>= 8.0')]
public function testBug11852(): void
{
$this->analyse([__DIR__ . '/data/bug-11852.php'], []);
}
#[RequiresPhp('>= 8.4')]
public function testPropertyHooks(): void
{
$this->analyse([__DIR__ . '/data/match-expr-property-hooks.php'], [
[
'Match expression does not handle remaining value: 3',
13,
],
]);
}
#[RequiresPhp('>= 8.1')]
public function testBug13048(): void
{
$this->analyse([__DIR__ . '/data/bug-13048.php'], []);
}
#[RequiresPhp('>= 8.0')]
public function testBug13303(): void
{
$this->analyse([__DIR__ . '/data/bug-13303.php'], [
[
'Match expression does not handle remaining value: true',
34,
],
]);
}
#[RequiresPhp('>= 8.0')]
public function testBug12998(): void
{
$this->analyse([__DIR__ . '/data/bug-12998.php'], [
[
'Match expression does not handle remaining value: class-string<T of Bug12998\C|Bug12998\D>',
37,
],
]);
}
#[RequiresPhp('>= 8.0')]
public function testBug9534(): void
{
$this->analyse([__DIR__ . '/data/bug-9534.php'], [
[
'Match expression does not handle remaining value: class-string<Bug9534\Bike|Bug9534\Boat|Bug9534\Car>',
21,
],
[
'Match expression does not handle remaining value: class-string<Bug9534\FinalBike|Bug9534\FinalBoat>',
47,
],
[
'Match expression does not handle remaining value: class-string<Bug9534\Bike|Bug9534\Car>',
58,
],
]);
}
#[RequiresPhp('>= 8.0')]
public function testBug11310(): void
{
$this->analyse([__DIR__ . '/data/bug-11310.php'], [
[
'Match arm comparison between int<1, max> and 0 is always false.',
24,
],
]);
}
}