-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathAbstractPropertyInfoExtractorTest.php
90 lines (76 loc) · 3.01 KB
/
AbstractPropertyInfoExtractorTest.php
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
<?php
/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <fabien@symfony.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Symfony\Component\PropertyInfo\Tests;
use PHPUnit\Framework\TestCase;
use Symfony\Component\PropertyInfo\PropertyAccessExtractorInterface;
use Symfony\Component\PropertyInfo\PropertyDescriptionExtractorInterface;
use Symfony\Component\PropertyInfo\PropertyInfoExtractor;
use Symfony\Component\PropertyInfo\PropertyInfoExtractorInterface;
use Symfony\Component\PropertyInfo\PropertyInitializableExtractorInterface;
use Symfony\Component\PropertyInfo\PropertyTypeExtractorInterface;
use Symfony\Component\PropertyInfo\Tests\Fixtures\DummyExtractor;
use Symfony\Component\PropertyInfo\Tests\Fixtures\NullExtractor;
use Symfony\Component\PropertyInfo\Type as LegacyType;
use Symfony\Component\TypeInfo\Type;
/**
* @author Kévin Dunglas <dunglas@gmail.com>
*/
class AbstractPropertyInfoExtractorTest extends TestCase
{
protected PropertyInfoExtractorInterface $propertyInfo;
protected function setUp(): void
{
$extractors = [new NullExtractor(), new DummyExtractor()];
$this->propertyInfo = new PropertyInfoExtractor($extractors, $extractors, $extractors, $extractors, $extractors);
}
public function testInstanceOf()
{
$this->assertInstanceOf(PropertyInfoExtractorInterface::class, $this->propertyInfo);
$this->assertInstanceOf(PropertyTypeExtractorInterface::class, $this->propertyInfo);
$this->assertInstanceOf(PropertyDescriptionExtractorInterface::class, $this->propertyInfo);
$this->assertInstanceOf(PropertyAccessExtractorInterface::class, $this->propertyInfo);
$this->assertInstanceOf(PropertyInitializableExtractorInterface::class, $this->propertyInfo);
}
public function testGetShortDescription()
{
$this->assertSame('short', $this->propertyInfo->getShortDescription('Foo', 'bar', []));
}
public function testGetLongDescription()
{
$this->assertSame('long', $this->propertyInfo->getLongDescription('Foo', 'bar', []));
}
public function testGetType()
{
$this->assertEquals(Type::int(), $this->propertyInfo->getType('Foo', 'bar', []));
}
/**
* @group legacy
*/
public function testGetTypes()
{
$this->assertEquals([new LegacyType(LegacyType::BUILTIN_TYPE_INT)], $this->propertyInfo->getTypes('Foo', 'bar', []));
}
public function testIsReadable()
{
$this->assertTrue($this->propertyInfo->isReadable('Foo', 'bar', []));
}
public function testIsWritable()
{
$this->assertTrue($this->propertyInfo->isWritable('Foo', 'bar', []));
}
public function testGetProperties()
{
$this->assertEquals(['a', 'b'], $this->propertyInfo->getProperties('Foo'));
}
public function testIsInitializable()
{
$this->assertTrue($this->propertyInfo->isInitializable('Foo', 'bar', []));
}
}