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
|
<?php
declare(strict_types=1);
namespace ProxyManagerTest\ProxyGenerator\LazyLoadingValueHolder\MethodGenerator;
use Laminas\Code\Generator\PropertyGenerator;
use PHPUnit\Framework\TestCase;
use ProxyManager\ProxyGenerator\LazyLoadingValueHolder\MethodGenerator\MagicGet;
use ProxyManager\ProxyGenerator\PropertyGenerator\PublicPropertiesMap;
use ProxyManagerTestAsset\ClassWithMagicMethods;
use ProxyManagerTestAsset\EmptyClass;
use ReflectionClass;
/**
* Tests for {@see \ProxyManager\ProxyGenerator\LazyLoadingValueHolder\MethodGenerator\MagicGet}
*
* @group Coverage
*/
final class MagicGetTest extends TestCase
{
/**
* @covers \ProxyManager\ProxyGenerator\LazyLoadingValueHolder\MethodGenerator\MagicGet::__construct
*/
public function testBodyStructure(): void
{
$reflection = new ReflectionClass(EmptyClass::class);
$initializer = $this->createMock(PropertyGenerator::class);
$valueHolder = $this->createMock(PropertyGenerator::class);
$publicProperties = $this->createMock(PublicPropertiesMap::class);
$initializer->method('getName')->willReturn('foo');
$valueHolder->method('getName')->willReturn('bar');
$publicProperties->method('isEmpty')->willReturn(false);
$publicProperties->method('getName')->willReturn('bar');
$magicGet = new MagicGet($reflection, $initializer, $valueHolder, $publicProperties);
self::assertSame('__get', $magicGet->getName());
self::assertCount(1, $magicGet->getParameters());
self::assertStringMatchesFormat(
"\$this->foo && (\$this->foo->__invoke(\$bar, \$this, '__get', ['name' => \$name]"
. ", \$this->foo) || 1) && \$this->bar = \$bar;\n\n"
. "if (isset(self::\$bar[\$name])) {\n return \$this->bar->\$name;\n}"
. '%areturn %s;',
$magicGet->getBody()
);
self::assertStringNotMatchesFormat('%Areturn $this->bar->__get($name);%A', $magicGet->getBody());
}
/**
* @group 344
*/
public function testBodyStructureWithPreExistingGetMethod(): void
{
$reflection = new ReflectionClass(ClassWithMagicMethods::class);
$initializer = $this->createMock(PropertyGenerator::class);
$valueHolder = $this->createMock(PropertyGenerator::class);
$publicProperties = $this->createMock(PublicPropertiesMap::class);
$initializer->method('getName')->willReturn('foo');
$valueHolder->method('getName')->willReturn('bar');
$publicProperties->method('isEmpty')->willReturn(false);
$publicProperties->method('getName')->willReturn('bar');
$magicGet = new MagicGet($reflection, $initializer, $valueHolder, $publicProperties);
self::assertSame('__get', $magicGet->getName());
self::assertCount(1, $magicGet->getParameters());
self::assertStringMatchesFormat(
"\$this->foo && (\$this->foo->__invoke(\$bar, \$this, '__get', ['name' => \$name]"
. ", \$this->foo) || 1) && \$this->bar = \$bar;\n\n"
. "if (isset(self::\$bar[\$name])) {\n return \$this->bar->\$name;\n}\n\n"
. 'return $this->bar->__get($name);',
$magicGet->getBody(),
'The pre-existing magic `__get` is called, if the property is not accessible'
);
}
}
|