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
|
<?php
declare(strict_types=1);
namespace ProxyManagerTest\ProxyGenerator\LazyLoadingValueHolder\MethodGenerator;
use Laminas\Code\Generator\PropertyGenerator;
use PHPUnit\Framework\TestCase;
use ProxyManager\ProxyGenerator\LazyLoadingValueHolder\MethodGenerator\MagicClone;
use ProxyManagerTestAsset\EmptyClass;
use ReflectionClass;
/**
* Tests for {@see \ProxyManager\ProxyGenerator\LazyLoadingValueHolder\MethodGenerator\MagicClone}
*
* @group Coverage
*/
final class MagicCloneTest extends TestCase
{
/**
* @covers \ProxyManager\ProxyGenerator\LazyLoadingValueHolder\MethodGenerator\MagicClone::__construct
*/
public function testBodyStructure(): void
{
$reflection = new ReflectionClass(EmptyClass::class);
$initializer = $this->createMock(PropertyGenerator::class);
$valueHolder = $this->createMock(PropertyGenerator::class);
$initializer->method('getName')->willReturn('foo');
$valueHolder->method('getName')->willReturn('bar');
$magicClone = new MagicClone($reflection, $initializer, $valueHolder);
self::assertSame('__clone', $magicClone->getName());
self::assertCount(0, $magicClone->getParameters());
self::assertSame(
'$this->foo && ($this->foo->__invoke($bar, $this, '
. "'__clone', array(), \$this->foo) || 1) && \$this->bar = \$bar;\n\n\$this->bar = clone \$this->bar;",
$magicClone->getBody()
);
}
}
|