1
0
mirror of https://github.com/danog/psalm.git synced 2024-12-02 17:52:45 +01:00
psalm/tests/Internal/Codebase/ClassConstantByWildcardResolverTest.php

80 lines
2.4 KiB
PHP
Raw Normal View History

<?php
2021-12-15 04:42:37 +01:00
declare(strict_types=1);
namespace Psalm\Tests\Internal\Codebase;
use Psalm\Internal\Codebase\ClassConstantByWildcardResolver;
use Psalm\Tests\TestCase;
use Psalm\Type\Atomic\TLiteralString;
use function reset;
final class ClassConstantByWildcardResolverTest extends TestCase
{
2022-12-16 19:58:47 +01:00
private ClassConstantByWildcardResolver $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;
}
2022-12-18 17:15:15 +01:00
',
);
$codebase = $this->project_analyzer->getCodebase();
$codebase->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\';
}
2022-12-18 17:15:15 +01:00
',
);
$codebase = $this->project_analyzer->getCodebase();
$codebase->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 = reset($resolved);
self::assertInstanceOf(TLiteralString::class, $type);
self::assertTrue($type->value === 'qoo');
}
}