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 Doctrine\Tests\ORM;
use Doctrine\Deprecations\PHPUnit\VerifyDeprecations;
use Doctrine\ORM\Configuration;
use Doctrine\ORM\Mapping as AnnotationNamespace;
use Doctrine\ORM\Mapping\Driver\AnnotationDriver;
use Doctrine\ORM\Mapping\Driver\AttributeDriver;
use Doctrine\ORM\Mapping\Driver\XmlDriver;
use Doctrine\ORM\Mapping\Driver\YamlDriver;
use Doctrine\ORM\ORMSetup;
use LogicException;
use PHPUnit\Framework\TestCase;
use ReflectionClass;
use ReflectionProperty;
use Symfony\Component\Cache\Adapter\AbstractAdapter;
use Symfony\Component\Cache\Adapter\ApcuAdapter;
use Symfony\Component\Cache\Adapter\ArrayAdapter;
use function sys_get_temp_dir;
class ORMSetupTest extends TestCase
{
use VerifyDeprecations;
public function testAnnotationConfiguration(): void
{
$config = ORMSetup::createAnnotationMetadataConfiguration([], true);
self::assertInstanceOf(Configuration::class, $config);
self::assertEquals(sys_get_temp_dir(), $config->getProxyDir());
self::assertEquals('DoctrineProxies', $config->getProxyNamespace());
self::assertInstanceOf(AnnotationDriver::class, $config->getMetadataDriverImpl());
}
public function testNewDefaultAnnotationDriver(): void
{
$paths = [__DIR__];
$reflectionClass = new ReflectionClass(AnnotatedDummy::class);
$annotationDriver = ORMSetup::createDefaultAnnotationDriver($paths);
$reader = $annotationDriver->getReader();
$annotation = $reader->getMethodAnnotation(
$reflectionClass->getMethod('namespacedAnnotationMethod'),
AnnotationNamespace\PrePersist::class
);
self::assertInstanceOf(AnnotationNamespace\PrePersist::class, $annotation);
}
/**
* @requires PHP 8.0
*/
public function testAttributeConfiguration(): void
{
$config = ORMSetup::createAttributeMetadataConfiguration([], true);
self::assertInstanceOf(Configuration::class, $config);
self::assertEquals(sys_get_temp_dir(), $config->getProxyDir());
self::assertEquals('DoctrineProxies', $config->getProxyNamespace());
self::assertInstanceOf(AttributeDriver::class, $config->getMetadataDriverImpl());
}
/**
* @requires PHP < 8
*/
public function testAttributeConfigurationFailsOnPHP7(): void
{
self::expectException(LogicException::class);
self::expectExceptionMessage(
'The attribute metadata driver cannot be enabled on PHP 7. Please upgrade to PHP 8 or choose a different metadata driver.'
);
ORMSetup::createAttributeMetadataConfiguration([], true);
}
public function testXMLConfiguration(): void
{
$config = ORMSetup::createXMLMetadataConfiguration([], true);
self::assertInstanceOf(Configuration::class, $config);
self::assertInstanceOf(XmlDriver::class, $config->getMetadataDriverImpl());
}
public function testYAMLConfiguration(): void
{
$this->expectDeprecationWithIdentifier('https://github.com/doctrine/orm/issues/8465');
$config = ORMSetup::createYAMLMetadataConfiguration([], true);
self::assertInstanceOf(Configuration::class, $config);
self::assertInstanceOf(YamlDriver::class, $config->getMetadataDriverImpl());
}
/**
* @requires extension apcu
*/
public function testCacheNamespaceShouldBeGeneratedForApcu(): void
{
$config = ORMSetup::createConfiguration(false, '/foo');
$cache = $config->getMetadataCache();
$namespaceProperty = new ReflectionProperty(AbstractAdapter::class, 'namespace');
$namespaceProperty->setAccessible(true);
self::assertInstanceOf(ApcuAdapter::class, $cache);
self::assertSame('dc2_1effb2475fcfba4f9e8b8a1dbc8f3caf:', $namespaceProperty->getValue($cache));
}
/** @group DDC-1350 */
public function testConfigureProxyDir(): void
{
$config = ORMSetup::createAnnotationMetadataConfiguration([], true, '/foo');
self::assertEquals('/foo', $config->getProxyDir());
}
/** @group DDC-1350 */
public function testConfigureCache(): void
{
$cache = new ArrayAdapter();
$config = ORMSetup::createAnnotationMetadataConfiguration([], true, null, $cache);
self::assertSame($cache, $config->getResultCache());
self::assertSame($cache, $config->getResultCacheImpl()->getPool());
self::assertSame($cache, $config->getQueryCache());
self::assertSame($cache, $config->getQueryCacheImpl()->getPool());
self::assertSame($cache, $config->getMetadataCache());
self::assertSame($cache, $config->getMetadataCacheImpl()->getPool());
}
/** @group DDC-3190 */
public function testConfigureCacheCustomInstance(): void
{
$cache = new ArrayAdapter();
$config = ORMSetup::createConfiguration(true, null, $cache);
self::assertSame($cache, $config->getResultCache());
self::assertSame($cache, $config->getResultCacheImpl()->getPool());
self::assertSame($cache, $config->getQueryCache());
self::assertSame($cache, $config->getQueryCacheImpl()->getPool());
self::assertSame($cache, $config->getMetadataCache());
self::assertSame($cache, $config->getMetadataCacheImpl()->getPool());
}
}
class AnnotatedDummy
{
/** @AnnotationNamespace\PrePersist */
public function namespacedAnnotationMethod(): void
{
}
}
|