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
|
<?php
declare(strict_types=1);
namespace ProxyManagerTest\Functional;
use PHPUnit\Framework\TestCase;
use ProxyManager\Factory\AccessInterceptorScopeLocalizerFactory;
use ProxyManager\Factory\AccessInterceptorValueHolderFactory;
use ProxyManager\Factory\LazyLoadingGhostFactory;
use ProxyManager\Factory\LazyLoadingValueHolderFactory;
use ProxyManagerTestAsset\BaseClass;
use ProxyManagerTestAsset\ClassWithByRefMagicMethods;
use ProxyManagerTestAsset\ClassWithCollidingPrivateInheritedProperties;
use ProxyManagerTestAsset\ClassWithFinalMagicMethods;
use ProxyManagerTestAsset\ClassWithFinalMethods;
use ProxyManagerTestAsset\ClassWithMagicMethods;
use ProxyManagerTestAsset\ClassWithTypedMagicMethods;
use ProxyManagerTestAsset\ClassWithMethodWithByRefVariadicFunction;
use ProxyManagerTestAsset\ClassWithMethodWithVariadicFunction;
use ProxyManagerTestAsset\ClassWithMixedProperties;
use ProxyManagerTestAsset\ClassWithMixedReferenceableTypedProperties;
use ProxyManagerTestAsset\ClassWithMixedTypedProperties;
use ProxyManagerTestAsset\ClassWithParentHint;
use ProxyManagerTestAsset\ClassWithPhp80TypedMethods;
use ProxyManagerTestAsset\ClassWithPhp81Defaults;
use ProxyManagerTestAsset\ClassWithPrivateProperties;
use ProxyManagerTestAsset\ClassWithProtectedProperties;
use ProxyManagerTestAsset\ClassWithPublicProperties;
use ProxyManagerTestAsset\ClassWithReadOnlyProperties;
use ProxyManagerTestAsset\ClassWithSelfHint;
use ProxyManagerTestAsset\EmptyClass;
use ProxyManagerTestAsset\HydratedObject;
use ProxyManagerTestAsset\IterableTypeHintClass;
use ProxyManagerTestAsset\ObjectTypeHintClass;
use ProxyManagerTestAsset\ReturnTypeHintedClass;
use ProxyManagerTestAsset\ScalarTypeHintedClass;
use ProxyManagerTestAsset\VoidMethodTypeHintedClass;
use function get_class;
use function in_array;
use const PHP_VERSION_ID;
/**
* Verifies that proxy factories don't conflict with each other when generating proxies
*
* @link https://github.com/Ocramius/ProxyManager/issues/10
*
* @group Functional
* @group issue-10
* @coversNothing
*/
final class MultipleProxyGenerationTest extends TestCase
{
/**
* Verifies that proxies generated from different factories will retain their specific implementation
* and won't conflict
*
* @dataProvider getTestedClasses
*/
public function testCanGenerateMultipleDifferentProxiesForSameClass($object): void
{
if (null === $object && PHP_VERSION_ID < 70400) {
self::markTestSkipped('PHP 7.4 required.');
}
$ghostProxyFactory = new LazyLoadingGhostFactory();
$virtualProxyFactory = new LazyLoadingValueHolderFactory();
$accessInterceptorFactory = new AccessInterceptorValueHolderFactory();
$accessInterceptorScopeLocalizerFactory = new AccessInterceptorScopeLocalizerFactory();
$className = get_class($object);
$initializer = static function (): bool {
return true;
};
$generated = [
$ghostProxyFactory->createProxy($className, $initializer),
$virtualProxyFactory->createProxy($className, $initializer),
$accessInterceptorFactory->createProxy($object),
];
if (! in_array($className, [ClassWithMixedTypedProperties::class, ClassWithReadOnlyProperties::class], true)) {
$generated[] = $accessInterceptorScopeLocalizerFactory->createProxy($object);
}
foreach ($generated as $key => $proxy) {
self::assertInstanceOf($className, $proxy);
foreach ($generated as $comparedKey => $comparedProxy) {
if ($comparedKey === $key) {
continue;
}
self::assertNotSame(get_class($comparedProxy), get_class($proxy));
}
$proxyClass = get_class($proxy);
/**
* @psalm-suppress InvalidStringClass
* @psalm-suppress MixedMethodCall
*/
self::assertInstanceOf($proxyClass, new $proxyClass(), 'Proxy can be instantiated via normal constructor');
}
}
/**
* @return object[][]
*/
public static function getTestedClasses(): array
{
$objects = [
[new BaseClass()],
[new ClassWithMagicMethods()],
// [new ClassWithFinalMethods()],
[new ClassWithFinalMagicMethods()],
[new ClassWithByRefMagicMethods()],
[new ClassWithMixedProperties()],
[PHP_VERSION_ID >= 70400 ? new ClassWithMixedTypedProperties() : null],
[PHP_VERSION_ID >= 70400 ? new ClassWithMixedReferenceableTypedProperties() : null],
// [new ClassWithPublicStringTypedProperty()],
// [new ClassWithPublicStringNullableTypedProperty()],
[new ClassWithPrivateProperties()],
[new ClassWithProtectedProperties()],
[new ClassWithPublicProperties()],
[new EmptyClass()],
[new HydratedObject()],
[new ClassWithSelfHint()],
[new ClassWithParentHint()],
[new ClassWithCollidingPrivateInheritedProperties()],
[new ClassWithMethodWithVariadicFunction()],
[new ClassWithMethodWithByRefVariadicFunction()],
[new ScalarTypeHintedClass()],
[new IterableTypeHintClass()],
[new ObjectTypeHintClass()],
[new ReturnTypeHintedClass()],
[new VoidMethodTypeHintedClass()],
];
if (PHP_VERSION_ID >= 80000) {
$objects[] = [new ClassWithPhp80TypedMethods()];
$objects[] = [new ClassWithTypedMagicMethods()];
}
if (PHP_VERSION_ID >= 80100) {
$objects['php81defaults'] = [new ClassWithPhp81Defaults()];
$objects['readonly'] = [new ClassWithReadOnlyProperties()];
}
return $objects;
}
}
|