mirror of
https://github.com/danog/psalm.git
synced 2024-11-27 12:55:26 +01:00
79 lines
2.3 KiB
PHP
79 lines
2.3 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Psalm\Tests\Internal\Codebase;
|
|
|
|
use Psalm\Internal\Codebase\ClassConstantByWildcardResolver;
|
|
use Psalm\Tests\TestCase;
|
|
use Psalm\Type\Atomic\TLiteralString;
|
|
|
|
final class ClassConstantByWildcardResolverTest extends TestCase
|
|
{
|
|
/**
|
|
* @var ClassConstantByWildcardResolver
|
|
*/
|
|
private $resolver;
|
|
|
|
public function setUp(): void
|
|
{
|
|
parent::setUp();
|
|
$this->resolver = new ClassConstantByWildcardResolver($this->project_analyzer->getCodebase());
|
|
}
|
|
|
|
public function testWillParseAllClassConstants(): void
|
|
{
|
|
$this->addFile(
|
|
'psalm-assert.php',
|
|
'
|
|
<?php
|
|
namespace ReconciliationTest;
|
|
class Foo
|
|
{
|
|
const PREFIX_BAR = \'bar\';
|
|
const PREFIX_BAZ = \'baz\';
|
|
const PREFIX_QOO = Foo::PREFIX_BAR;
|
|
}
|
|
'
|
|
);
|
|
$this->project_analyzer->getCodebase()->scanFiles();
|
|
$resolved = $this->resolver->resolve('ReconciliationTest\\Foo', '*');
|
|
self::assertNotEmpty($resolved);
|
|
foreach ($resolved as $type) {
|
|
self::assertInstanceOf(TLiteralString::class, $type);
|
|
self::assertTrue($type->value === 'bar' || $type->value === 'baz');
|
|
}
|
|
}
|
|
|
|
public function testWillParseMatchingClassConstants(): void
|
|
{
|
|
$this->addFile(
|
|
'psalm-assert.php',
|
|
'
|
|
<?php
|
|
namespace ReconciliationTest;
|
|
class Foo
|
|
{
|
|
const BAR = \'bar\';
|
|
const BAZ = \'baz\';
|
|
const QOO = \'qoo\';
|
|
}
|
|
'
|
|
);
|
|
$this->project_analyzer->getCodebase()->scanFiles();
|
|
$resolved = $this->resolver->resolve('ReconciliationTest\\Foo', 'BA*');
|
|
self::assertNotEmpty($resolved);
|
|
foreach ($resolved as $type) {
|
|
self::assertInstanceOf(TLiteralString::class, $type);
|
|
self::assertTrue($type->value === 'bar' || $type->value === 'baz');
|
|
}
|
|
|
|
$resolved = $this->resolver->resolve('ReconciliationTest\\Foo', 'QOO');
|
|
self::assertNotNull($resolved);
|
|
self::assertCount(1, $resolved);
|
|
$type = $resolved[0];
|
|
self::assertInstanceOf(TLiteralString::class, $type);
|
|
self::assertTrue($type->value === 'qoo');
|
|
}
|
|
}
|