Skip to content

Commit fdd5ad9

Browse files
committed
TypeInferenceTestCase - fail when analysed symbols do not exist (misconfigured autoloading)
1 parent 44c74b5 commit fdd5ad9

File tree

3 files changed

+60
-1
lines changed

3 files changed

+60
-1
lines changed

src/Testing/TypeInferenceTestCase.php

+32-1
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,16 @@
1313
use PHPStan\DependencyInjection\Type\ParameterOutTypeExtensionProvider;
1414
use PHPStan\File\FileHelper;
1515
use PHPStan\File\SystemAgnosticSimpleRelativePathHelper;
16+
use PHPStan\Node\InClassNode;
1617
use PHPStan\Php\PhpVersion;
1718
use PHPStan\PhpDoc\PhpDocInheritanceResolver;
1819
use PHPStan\PhpDoc\StubPhpDocProvider;
1920
use PHPStan\Reflection\AttributeReflectionFactory;
2021
use PHPStan\Reflection\InitializerExprTypeResolver;
22+
use PHPStan\Reflection\ReflectionProvider;
2123
use PHPStan\Reflection\SignatureMap\SignatureMapProvider;
2224
use PHPStan\Rules\Properties\ReadWritePropertiesExtensionProvider;
25+
use PHPStan\ShouldNotHappenException;
2326
use PHPStan\TrinaryLogic;
2427
use PHPStan\Type\ConstantScalarType;
2528
use PHPStan\Type\FileTypeMapper;
@@ -136,6 +139,8 @@ public function assertFileAsserts(
136139
$expectedCertainty->equals($actualCertainty),
137140
sprintf('Expected %s, actual certainty of %s is %s in %s on line %d.', $expectedCertainty->describe(), $variableName, $actualCertainty->describe(), $file, $args[3]),
138141
);
142+
} elseif ($assertType === 'error') {
143+
$this->fail($args[0]);
139144
}
140145
}
141146

@@ -148,11 +153,37 @@ public static function gatherAssertTypes(string $file): array
148153
$fileHelper = self::getContainer()->getByType(FileHelper::class);
149154

150155
$relativePathHelper = new SystemAgnosticSimpleRelativePathHelper($fileHelper);
156+
$reflectionProvider = self::getContainer()->getByType(ReflectionProvider::class);
151157

152158
$file = $fileHelper->normalizePath($file);
153159

154160
$asserts = [];
155-
self::processFile($file, static function (Node $node, Scope $scope) use (&$asserts, $file, $relativePathHelper): void {
161+
self::processFile($file, static function (Node $node, Scope $scope) use (&$asserts, $file, $relativePathHelper, $reflectionProvider): void {
162+
if ($node instanceof InClassNode) {
163+
if (!$reflectionProvider->hasClass($node->getClassReflection()->getName())) {
164+
$asserts[$file . ':' . $node->getStartLine()] = [
165+
'error',
166+
$file,
167+
sprintf(
168+
'%s %s in %s not found in ReflectionProvider. Configure "autoload-dev" section in composer.json to include your tests directory.',
169+
$node->getClassReflection()->getClassTypeDescription(),
170+
$node->getClassReflection()->getName(),
171+
$file,
172+
),
173+
];
174+
}
175+
} elseif ($node instanceof Node\Stmt\Trait_) {
176+
if ($node->namespacedName === null) {
177+
throw new ShouldNotHappenException();
178+
}
179+
if (!$reflectionProvider->hasClass($node->namespacedName->toString())) {
180+
$asserts[$file . ':' . $node->getStartLine()] = [
181+
'error',
182+
$file,
183+
sprintf('Trait %s not found in ReflectionProvider. Configure "autoload-dev" section in composer.json to include your tests directory.', $node->namespacedName->toString()),
184+
];
185+
}
186+
}
156187
if (!$node instanceof Node\Expr\FuncCall) {
157188
return;
158189
}

tests/PHPStan/Testing/TypeInferenceTestCaseTest.php

+13
Original file line numberDiff line numberDiff line change
@@ -101,4 +101,17 @@ public function testVariableOrOffsetDescription(): void
101101
$this->assertSame("offset 'email'", $offsetAssert[4]);
102102
}
103103

104+
public function testNonexistentClassInAnalysedFile(): void
105+
{
106+
try {
107+
foreach ($this->gatherAssertTypes(__DIR__ . '/../../notAutoloaded/nonexistentClasses.php') as $data) {
108+
$this->assertFileAsserts(...$data);
109+
}
110+
111+
$this->fail('Should have failed');
112+
} catch (AssertionFailedError $e) {
113+
$this->assertStringContainsString('not found in ReflectionProvider', $e->getMessage());
114+
}
115+
}
116+
104117
}
+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<?php declare(strict_types = 1);
2+
3+
namespace NamespaceForNonexistentClasses;
4+
5+
use function PHPStan\Testing\assertType;
6+
7+
class Foo
8+
{
9+
10+
public function doFoo(): void
11+
{
12+
assertType('1', 1);
13+
}
14+
15+
}

0 commit comments

Comments
 (0)