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
|
<?php
declare(strict_types=1);
namespace ProxyManagerTest\ProxyGenerator\LazyLoadingValueHolder\MethodGenerator;
use Laminas\Code\Generator\PropertyGenerator;
use Laminas\Code\Reflection\MethodReflection;
use PHPUnit\Framework\TestCase;
use ProxyManager\ProxyGenerator\LazyLoadingValueHolder\MethodGenerator\LazyLoadingMethodInterceptor;
use ProxyManagerTestAsset\BaseClass;
/**
* Tests for {@see \ProxyManager\ProxyGenerator\LazyLoadingValueHolder\MethodGenerator\LazyLoadingMethodInterceptor}
*
* @group Coverage
*/
final class LazyLoadingMethodInterceptorTest extends TestCase
{
/**
* @covers \ProxyManager\ProxyGenerator\LazyLoadingValueHolder\MethodGenerator\LazyLoadingMethodInterceptor
*/
public function testBodyStructure(): void
{
$initializer = $this->createMock(PropertyGenerator::class);
$valueHolder = $this->createMock(PropertyGenerator::class);
$initializer->method('getName')->willReturn('foo');
$valueHolder->method('getName')->willReturn('bar');
$reflection = new MethodReflection(BaseClass::class, 'publicByReferenceParameterMethod');
$method = LazyLoadingMethodInterceptor::generateMethod($reflection, $initializer, $valueHolder);
self::assertSame('publicByReferenceParameterMethod', $method->getName());
self::assertCount(2, $method->getParameters());
self::assertSame(
"\$this->foo && (\$this->foo->__invoke(\$bar, \$this, 'publicByReferenceParameterMethod', "
. "array('param' => \$param, 'byRefParam' => \$byRefParam), \$this->foo) || 1) && \$this->bar = \$bar;\n\n"
. 'return $this->bar->publicByReferenceParameterMethod($param, $byRefParam);',
$method->getBody()
);
}
/**
* @covers \ProxyManager\ProxyGenerator\LazyLoadingValueHolder\MethodGenerator\LazyLoadingMethodInterceptor
*/
public function testBodyStructureWithoutParameters(): void
{
$reflectionMethod = new MethodReflection(BaseClass::class, 'publicMethod');
$initializer = $this->createMock(PropertyGenerator::class);
$valueHolder = $this->createMock(PropertyGenerator::class);
$initializer->method('getName')->willReturn('foo');
$valueHolder->method('getName')->willReturn('bar');
$initializer->method('getName')->willReturn('foo');
$method = LazyLoadingMethodInterceptor::generateMethod($reflectionMethod, $initializer, $valueHolder);
self::assertSame('publicMethod', $method->getName());
self::assertCount(0, $method->getParameters());
self::assertSame(
'$this->foo && ($this->foo->__invoke($bar, $this, '
. "'publicMethod', array(), \$this->foo) || 1) && \$this->bar = \$bar;\n\n"
. 'return $this->bar->publicMethod();',
$method->getBody()
);
}
}
|