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
|
<?php
declare(strict_types=1);
namespace ProxyManagerTest\ProxyGenerator\PropertyGenerator;
use PHPUnit\Framework\TestCase;
use ProxyManager\ProxyGenerator\PropertyGenerator\PublicPropertiesMap;
use ProxyManager\ProxyGenerator\Util\Properties;
use ProxyManagerTestAsset\ClassWithMixedProperties;
use ProxyManagerTestAsset\ClassWithPublicProperties;
use ProxyManagerTestAsset\EmptyClass;
use ReflectionClass;
/**
* Tests for {@see \ProxyManager\ProxyGenerator\PropertyGenerator\PublicPropertiesMap}
*
* @covers \ProxyManager\ProxyGenerator\PropertyGenerator\PublicPropertiesMap
* @group Coverage
*/
final class PublicPropertiesMapTest extends TestCase
{
public function testEmptyClass(): void
{
$publicProperties = new PublicPropertiesMap(
Properties::fromReflectionClass(new ReflectionClass(EmptyClass::class))
);
$defaultValue = $publicProperties->getDefaultValue();
self::assertNotNull($defaultValue);
self::assertIsArray($defaultValue->getValue());
self::assertEmpty($defaultValue->getValue());
self::assertTrue($publicProperties->isStatic());
self::assertSame('private', $publicProperties->getVisibility());
self::assertTrue($publicProperties->isEmpty());
}
public function testClassWithPublicProperties(): void
{
$publicProperties = new PublicPropertiesMap(
Properties::fromReflectionClass(new ReflectionClass(ClassWithPublicProperties::class))
);
$defaultValue = $publicProperties->getDefaultValue();
self::assertTrue($publicProperties->isStatic());
self::assertSame('private', $publicProperties->getVisibility());
self::assertFalse($publicProperties->isEmpty());
self::assertNotNull($defaultValue);
self::assertSame(
[
'property0' => true,
'property1' => true,
'property2' => true,
'property3' => true,
'property4' => true,
'property5' => true,
'property6' => true,
'property7' => true,
'property8' => true,
'property9' => true,
],
$defaultValue->getValue()
);
}
public function testClassWithMixedProperties(): void
{
$defaultValue = (new PublicPropertiesMap(
Properties::fromReflectionClass(new ReflectionClass(ClassWithMixedProperties::class))
))->getDefaultValue();
self::assertNotNull($defaultValue);
self::assertSame(
[
'publicProperty0' => true,
'publicProperty1' => true,
'publicProperty2' => true,
],
$defaultValue->getValue()
);
}
}
|