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
|
<?php
declare(strict_types=1);
namespace ProxyManagerTest\ProxyGenerator\AccessInterceptorScopeLocalizer\MethodGenerator;
use Laminas\Code\Generator\PropertyGenerator;
use Laminas\Code\Reflection\MethodReflection;
use PHPUnit\Framework\MockObject\MockObject;
use PHPUnit\Framework\TestCase;
use ProxyManager\ProxyGenerator\AccessInterceptorScopeLocalizer\MethodGenerator\InterceptedMethod;
use ProxyManagerTestAsset\BaseClass;
use ProxyManagerTestAsset\ClassWithMethodWithVariadicFunction;
/**
* Tests for {@see \ProxyManager\ProxyGenerator\AccessInterceptorScopeLocalizer\MethodGenerator\InterceptedMethod}
*
* @covers \ProxyManager\ProxyGenerator\AccessInterceptorScopeLocalizer\MethodGenerator\InterceptedMethod
* @group Coverage
*/
final class InterceptedMethodTest extends TestCase
{
/** @var PropertyGenerator&MockObject */
private $prefixInterceptors;
/** @var PropertyGenerator&MockObject */
private $suffixInterceptors;
protected function setUp(): void
{
parent::setUp();
$this->prefixInterceptors = $this->createMock(PropertyGenerator::class);
$this->suffixInterceptors = $this->createMock(PropertyGenerator::class);
$this->prefixInterceptors->method('getName')->willReturn('pre');
$this->suffixInterceptors->method('getName')->willReturn('post');
}
public function testBodyStructure(): void
{
$method = InterceptedMethod::generateMethod(
new MethodReflection(BaseClass::class, 'publicByReferenceParameterMethod'),
$this->prefixInterceptors,
$this->suffixInterceptors
);
self::assertSame('publicByReferenceParameterMethod', $method->getName());
self::assertCount(2, $method->getParameters());
self::assertStringMatchesFormat(
'%a$returnValue = parent::publicByReferenceParameterMethod($param, $byRefParam);%A',
$method->getBody()
);
}
public function testForwardsVariadicParameters(): void
{
$method = InterceptedMethod::generateMethod(
new MethodReflection(ClassWithMethodWithVariadicFunction::class, 'foo'),
$this->prefixInterceptors,
$this->suffixInterceptors
);
self::assertSame('foo', $method->getName());
self::assertCount(2, $method->getParameters());
self::assertStringMatchesFormat(
'%a$returnValue = parent::foo($bar, ...$baz);%A',
$method->getBody()
);
}
}
|