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 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193
|
<?php
declare(strict_types=1);
namespace ProxyManagerTest\Factory;
use Laminas\Code\Generator\ClassGenerator;
use PHPUnit\Framework\MockObject\MockObject;
use PHPUnit\Framework\TestCase;
use ProxyManager\Autoloader\AutoloaderInterface;
use ProxyManager\Configuration;
use ProxyManager\Factory\AccessInterceptorValueHolderFactory;
use ProxyManager\Generator\Util\UniqueIdentifierGenerator;
use ProxyManager\GeneratorStrategy\GeneratorStrategyInterface;
use ProxyManager\Inflector\ClassNameInflectorInterface;
use ProxyManager\Signature\ClassSignatureGeneratorInterface;
use ProxyManager\Signature\SignatureCheckerInterface;
use ProxyManagerTest\Assert;
use ProxyManagerTestAsset\AccessInterceptorValueHolderMock;
use ProxyManagerTestAsset\EmptyClass;
use stdClass;
/**
* @covers \ProxyManager\Factory\AbstractBaseFactory
* @covers \ProxyManager\Factory\AccessInterceptorValueHolderFactory
* @group Coverage
*/
final class AccessInterceptorValueHolderFactoryTest extends TestCase
{
/** @var ClassNameInflectorInterface&MockObject */
private $inflector;
/** @var SignatureCheckerInterface&MockObject */
private $signatureChecker;
/** @var ClassSignatureGeneratorInterface&MockObject */
private $classSignatureGenerator;
/** @var Configuration&MockObject */
private $config;
protected function setUp(): void
{
$this->config = $this->createMock(Configuration::class);
$this->inflector = $this->createMock(ClassNameInflectorInterface::class);
$this->signatureChecker = $this->createMock(SignatureCheckerInterface::class);
$this->classSignatureGenerator = $this->createMock(ClassSignatureGeneratorInterface::class);
$this
->config
->method('getClassNameInflector')
->willReturn($this->inflector);
$this
->config
->method('getSignatureChecker')
->willReturn($this->signatureChecker);
$this
->config
->method('getClassSignatureGenerator')
->willReturn($this->classSignatureGenerator);
}
/**
* {@inheritDoc}
*
* @covers \ProxyManager\Factory\AccessInterceptorValueHolderFactory::__construct
*/
public static function testWithOptionalFactory(): void
{
self::assertInstanceOf(
Configuration::class,
Assert::readAttribute(new AccessInterceptorValueHolderFactory(), 'configuration')
);
}
/**
* {@inheritDoc}
*
* @covers \ProxyManager\Factory\AccessInterceptorValueHolderFactory::__construct
* @covers \ProxyManager\Factory\AccessInterceptorValueHolderFactory::createProxy
* @covers \ProxyManager\Factory\AccessInterceptorValueHolderFactory::getGenerator
*/
public function testWillSkipAutoGeneration(): void
{
$instance = new stdClass();
$this
->inflector
->expects(self::once())
->method('getProxyClassName')
->with(stdClass::class)
->willReturn(AccessInterceptorValueHolderMock::class);
$factory = new AccessInterceptorValueHolderFactory($this->config);
$prefixInterceptors = [
'methodName' => static function (): void {
self::fail('Not supposed to be called');
},
];
$suffixInterceptors = [
'methodName' => static function (): void {
self::fail('Not supposed to be called');
},
];
$proxy = $factory->createProxy($instance, $prefixInterceptors, $suffixInterceptors);
self::assertSame($instance, $proxy->instance);
self::assertSame($prefixInterceptors, $proxy->prefixInterceptors);
self::assertSame($suffixInterceptors, $proxy->suffixInterceptors);
}
/**
* {@inheritDoc}
*
* @covers \ProxyManager\Factory\AccessInterceptorValueHolderFactory::__construct
* @covers \ProxyManager\Factory\AccessInterceptorValueHolderFactory::createProxy
* @covers \ProxyManager\Factory\AccessInterceptorValueHolderFactory::getGenerator
*
* NOTE: serious mocking going on in here (a class is generated on-the-fly) - careful
*/
public function testWillTryAutoGeneration(): void
{
$instance = new stdClass();
$proxyClassName = UniqueIdentifierGenerator::getIdentifier('bar');
$generator = $this->createMock(GeneratorStrategyInterface::class);
$autoloader = $this->createMock(AutoloaderInterface::class);
$this->config->method('getGeneratorStrategy')->will(self::returnValue($generator));
$this->config->method('getProxyAutoloader')->will(self::returnValue($autoloader));
$generator
->expects(self::once())
->method('generate')
->with(
self::callback(
static function (ClassGenerator $targetClass) use ($proxyClassName): bool {
return $targetClass->getName() === $proxyClassName;
}
)
);
// simulate autoloading
$autoloader
->expects(self::once())
->method('__invoke')
->with($proxyClassName)
->willReturnCallback(static function () use ($proxyClassName): bool {
eval(
'class ' . $proxyClassName
. ' extends \\ProxyManagerTestAsset\\AccessInterceptorValueHolderMock {}'
);
return true;
});
$this
->inflector
->expects(self::once())
->method('getProxyClassName')
->with(stdClass::class)
->willReturn($proxyClassName);
$this
->inflector
->expects(self::once())
->method('getUserClassName')
->with(stdClass::class)
->willReturn(EmptyClass::class);
$this->signatureChecker->expects(self::atLeastOnce())->method('checkSignature');
$this->classSignatureGenerator->expects(self::once())->method('addSignature')->will(self::returnArgument(0));
$factory = new AccessInterceptorValueHolderFactory($this->config);
$prefixInterceptors = [
'methodName' => static function (): void {
self::fail('Not supposed to be called');
},
];
$suffixInterceptors = [
'methodName' => static function (): void {
self::fail('Not supposed to be called');
},
];
$proxy = $factory->createProxy($instance, $prefixInterceptors, $suffixInterceptors);
self::assertInstanceOf($proxyClassName, $proxy);
self::assertSame($instance, $proxy->instance);
self::assertSame($prefixInterceptors, $proxy->prefixInterceptors);
self::assertSame($suffixInterceptors, $proxy->suffixInterceptors);
}
}
|