@@ -19,6 +19,8 @@ class ClassConstantRuleTest extends RuleTestCase
19
19
20
20
private int $ phpVersion ;
21
21
22
+ private bool $ checkNonStringableDynamicAccess ;
23
+
22
24
protected function getRule (): Rule
23
25
{
24
26
$ reflectionProvider = $ this ->createReflectionProvider ();
@@ -30,12 +32,14 @@ protected function getRule(): Rule
30
32
new ClassForbiddenNameCheck (self ::getContainer ()),
31
33
),
32
34
new PhpVersion ($ this ->phpVersion ),
35
+ $ this ->checkNonStringableDynamicAccess ,
33
36
);
34
37
}
35
38
36
39
public function testClassConstant (): void
37
40
{
38
41
$ this ->phpVersion = PHP_VERSION_ID ;
42
+ $ this ->checkNonStringableDynamicAccess = true ;
39
43
$ this ->analyse (
40
44
[
41
45
__DIR__ . '/data/class-constant.php ' ,
@@ -99,6 +103,7 @@ public function testClassConstant(): void
99
103
public function testClassConstantVisibility (): void
100
104
{
101
105
$ this ->phpVersion = PHP_VERSION_ID ;
106
+ $ this ->checkNonStringableDynamicAccess = true ;
102
107
$ this ->analyse ([__DIR__ . '/data/class-constant-visibility.php ' ], [
103
108
[
104
109
'Access to private constant PRIVATE_BAR of class ClassConstantVisibility\Bar. ' ,
@@ -168,6 +173,7 @@ public function testClassConstantVisibility(): void
168
173
public function testClassExists (): void
169
174
{
170
175
$ this ->phpVersion = PHP_VERSION_ID ;
176
+ $ this ->checkNonStringableDynamicAccess = true ;
171
177
$ this ->analyse ([__DIR__ . '/data/class-exists.php ' ], [
172
178
[
173
179
'Class UnknownClass\Bar not found. ' ,
@@ -242,12 +248,14 @@ public function dataClassConstantOnExpression(): array
242
248
public function testClassConstantOnExpression (int $ phpVersion , array $ errors ): void
243
249
{
244
250
$ this ->phpVersion = $ phpVersion ;
251
+ $ this ->checkNonStringableDynamicAccess = true ;
245
252
$ this ->analyse ([__DIR__ . '/data/class-constant-on-expr.php ' ], $ errors );
246
253
}
247
254
248
255
public function testAttributes (): void
249
256
{
250
257
$ this ->phpVersion = PHP_VERSION_ID ;
258
+ $ this ->checkNonStringableDynamicAccess = true ;
251
259
$ this ->analyse ([__DIR__ . '/data/class-constant-attribute.php ' ], [
252
260
[
253
261
'Access to undefined constant ClassConstantAttribute\Foo::BAR. ' ,
@@ -287,18 +295,21 @@ public function testRuleWithNullsafeVariant(): void
287
295
}
288
296
289
297
$ this ->phpVersion = PHP_VERSION_ID ;
298
+ $ this ->checkNonStringableDynamicAccess = true ;
290
299
$ this ->analyse ([__DIR__ . '/data/class-constant-nullsafe.php ' ], []);
291
300
}
292
301
293
302
public function testBug7675 (): void
294
303
{
295
304
$ this ->phpVersion = PHP_VERSION_ID ;
305
+ $ this ->checkNonStringableDynamicAccess = true ;
296
306
$ this ->analyse ([__DIR__ . '/data/bug-7675.php ' ], []);
297
307
}
298
308
299
309
public function testBug8034 (): void
300
310
{
301
311
$ this ->phpVersion = PHP_VERSION_ID ;
312
+ $ this ->checkNonStringableDynamicAccess = true ;
302
313
$ this ->analyse ([__DIR__ . '/data/bug-8034.php ' ], [
303
314
[
304
315
'Access to undefined constant static(Bug8034\HelloWorld)::FIELDS. ' ,
@@ -310,6 +321,7 @@ public function testBug8034(): void
310
321
public function testClassConstFetchDefined (): void
311
322
{
312
323
$ this ->phpVersion = PHP_VERSION_ID ;
324
+ $ this ->checkNonStringableDynamicAccess = true ;
313
325
$ this ->analyse ([__DIR__ . '/data/class-const-fetch-defined.php ' ], [
314
326
[
315
327
'Access to undefined constant ClassConstFetchDefined\Foo::TEST. ' ,
@@ -411,6 +423,7 @@ public function testPhpstanInternalClass(): void
411
423
$ tip = 'This is most likely unintentional. Did you mean to type \AClass? ' ;
412
424
413
425
$ this ->phpVersion = PHP_VERSION_ID ;
426
+ $ this ->checkNonStringableDynamicAccess = true ;
414
427
$ this ->analyse ([__DIR__ . '/data/phpstan-internal-class.php ' ], [
415
428
[
416
429
'Referencing prefixed PHPStan class: _PHPStan_156ee64ba\AClass. ' ,
@@ -427,6 +440,7 @@ public function testClassConstantAccessedOnTrait(): void
427
440
}
428
441
429
442
$ this ->phpVersion = PHP_VERSION_ID ;
443
+ $ this ->checkNonStringableDynamicAccess = true ;
430
444
$ this ->analyse ([__DIR__ . '/data/class-constant-accessed-on-trait.php ' ], [
431
445
[
432
446
'Cannot access constant TEST on trait ClassConstantAccessedOnTrait\Foo. ' ,
@@ -442,8 +456,17 @@ public function testDynamicAccess(): void
442
456
}
443
457
444
458
$ this ->phpVersion = PHP_VERSION_ID ;
459
+ $ this ->checkNonStringableDynamicAccess = true ;
445
460
446
461
$ this ->analyse ([__DIR__ . '/data/dynamic-constant-access.php ' ], [
462
+ [
463
+ 'Access to undefined constant ClassConstantDynamicAccess\Foo::FOO. ' ,
464
+ 17 ,
465
+ ],
466
+ [
467
+ 'Cannot fetch class constant with a non-stringable type object. ' ,
468
+ 19 ,
469
+ ],
447
470
[
448
471
'Access to undefined constant ClassConstantDynamicAccess\Foo::FOO. ' ,
449
472
20 ,
@@ -479,4 +502,41 @@ public function testDynamicAccess(): void
479
502
]);
480
503
}
481
504
505
+ public function testStringableDynamicAccess (): void
506
+ {
507
+ if (PHP_VERSION_ID < 80300 ) {
508
+ $ this ->markTestSkipped ('Test requires PHP 8.3. ' );
509
+ }
510
+
511
+ $ this ->phpVersion = PHP_VERSION_ID ;
512
+ $ this ->checkNonStringableDynamicAccess = true ;
513
+
514
+ $ this ->analyse ([__DIR__ . '/data/dynamic-constant-stringable-access.php ' ], [
515
+ [
516
+ 'Cannot fetch class constant with a non-stringable type mixed. ' ,
517
+ 13 ,
518
+ ],
519
+ [
520
+ 'Cannot fetch class constant with a non-stringable type string|null. ' ,
521
+ 14 ,
522
+ ],
523
+ [
524
+ 'Cannot fetch class constant with a non-stringable type Stringable|null. ' ,
525
+ 15 ,
526
+ ],
527
+ [
528
+ 'Cannot fetch class constant with a non-stringable type int. ' ,
529
+ 16 ,
530
+ ],
531
+ [
532
+ 'Cannot fetch class constant with a non-stringable type int|null. ' ,
533
+ 17 ,
534
+ ],
535
+ [
536
+ 'Cannot fetch class constant with a non-stringable type DateTime|string. ' ,
537
+ 18 ,
538
+ ],
539
+ ]);
540
+ }
541
+
482
542
}
0 commit comments