2009-01-22 22:38:10 +03:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Doctrine\Tests;
|
|
|
|
|
2011-05-25 02:26:20 +04:00
|
|
|
use Doctrine\Common\Cache\ArrayCache;
|
|
|
|
|
2009-01-22 22:38:10 +03:00
|
|
|
/**
|
|
|
|
* Base testcase class for all ORM testcases.
|
|
|
|
*/
|
2009-11-01 01:23:36 +03:00
|
|
|
abstract class OrmTestCase extends DoctrineTestCase
|
2009-01-22 22:38:10 +03:00
|
|
|
{
|
2012-12-14 22:55:49 +04:00
|
|
|
/**
|
|
|
|
* The metadata cache that is shared between all ORM tests (except functional tests).
|
|
|
|
*
|
|
|
|
* @var \Doctrine\Common\Cache\Cache|null
|
|
|
|
*/
|
2009-02-04 21:03:05 +03:00
|
|
|
private static $_metadataCacheImpl = null;
|
2011-12-20 01:56:19 +04:00
|
|
|
|
2012-12-14 22:55:49 +04:00
|
|
|
/**
|
|
|
|
* The query cache that is shared between all ORM tests (except functional tests).
|
|
|
|
*
|
|
|
|
* @var \Doctrine\Common\Cache\Cache|null
|
|
|
|
*/
|
2009-05-21 23:18:14 +04:00
|
|
|
private static $_queryCacheImpl = null;
|
2009-02-04 21:03:05 +03:00
|
|
|
|
2011-05-25 02:26:20 +04:00
|
|
|
/**
|
|
|
|
* @param array $paths
|
2012-12-14 22:55:49 +04:00
|
|
|
* @param mixed $alias
|
|
|
|
*
|
2011-11-20 16:35:58 +04:00
|
|
|
* @return \Doctrine\ORM\Mapping\Driver\AnnotationDriver
|
2011-05-25 02:26:20 +04:00
|
|
|
*/
|
|
|
|
protected function createAnnotationDriver($paths = array(), $alias = null)
|
|
|
|
{
|
|
|
|
if (version_compare(\Doctrine\Common\Version::VERSION, '3.0.0', '>=')) {
|
|
|
|
$reader = new \Doctrine\Common\Annotations\CachedReader(
|
|
|
|
new \Doctrine\Common\Annotations\AnnotationReader(), new ArrayCache()
|
|
|
|
);
|
2011-08-13 23:28:05 +04:00
|
|
|
}
|
|
|
|
else if (version_compare(\Doctrine\Common\Version::VERSION, '2.2.0-DEV', '>=')) {
|
|
|
|
// Register the ORM Annotations in the AnnotationRegistry
|
|
|
|
$reader = new \Doctrine\Common\Annotations\SimpleAnnotationReader();
|
|
|
|
$reader->addNamespace('Doctrine\ORM\Mapping');
|
|
|
|
$reader = new \Doctrine\Common\Annotations\CachedReader($reader, new ArrayCache());
|
|
|
|
}
|
|
|
|
else if (version_compare(\Doctrine\Common\Version::VERSION, '2.1.0-BETA3-DEV', '>=')) {
|
2011-05-25 02:26:20 +04:00
|
|
|
$reader = new \Doctrine\Common\Annotations\AnnotationReader();
|
|
|
|
$reader->setIgnoreNotImportedAnnotations(true);
|
|
|
|
$reader->setEnableParsePhpImports(false);
|
|
|
|
if ($alias) {
|
|
|
|
$reader->setAnnotationNamespaceAlias('Doctrine\ORM\Mapping\\', $alias);
|
|
|
|
} else {
|
|
|
|
$reader->setDefaultAnnotationNamespace('Doctrine\ORM\Mapping\\');
|
|
|
|
}
|
|
|
|
$reader = new \Doctrine\Common\Annotations\CachedReader(
|
|
|
|
new \Doctrine\Common\Annotations\IndexedReader($reader), new ArrayCache()
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
$reader = new \Doctrine\Common\Annotations\AnnotationReader();
|
|
|
|
if ($alias) {
|
|
|
|
$reader->setAnnotationNamespaceAlias('Doctrine\ORM\Mapping\\', $alias);
|
|
|
|
} else {
|
|
|
|
$reader->setDefaultAnnotationNamespace('Doctrine\ORM\Mapping\\');
|
|
|
|
}
|
|
|
|
}
|
2011-11-20 18:01:56 +04:00
|
|
|
\Doctrine\Common\Annotations\AnnotationRegistry::registerFile(
|
|
|
|
__DIR__ . "/../../../lib/Doctrine/ORM/Mapping/Driver/DoctrineAnnotations.php");
|
2011-05-25 02:26:20 +04:00
|
|
|
return new \Doctrine\ORM\Mapping\Driver\AnnotationDriver($reader, (array)$paths);
|
|
|
|
}
|
2011-12-20 01:56:19 +04:00
|
|
|
|
2009-01-22 22:38:10 +03:00
|
|
|
/**
|
|
|
|
* Creates an EntityManager for testing purposes.
|
2011-12-20 01:56:19 +04:00
|
|
|
*
|
2009-03-14 12:05:52 +03:00
|
|
|
* NOTE: The created EntityManager will have its dependant DBAL parts completely
|
|
|
|
* mocked out using a DriverMock, ConnectionMock, etc. These mocks can then
|
|
|
|
* be configured in the tests to simulate the DBAL behavior that is desired
|
|
|
|
* for a particular test,
|
2009-01-22 22:38:10 +03:00
|
|
|
*
|
2012-12-14 22:55:49 +04:00
|
|
|
* @param \Doctrine\DBAL\Connection|array $conn
|
|
|
|
* @param mixed $conf
|
|
|
|
* @param \Doctrine\Common\EventManager|null $eventManager
|
|
|
|
* @param bool $withSharedMetadata
|
|
|
|
*
|
|
|
|
* @return \Doctrine\ORM\EntityManager
|
2009-01-22 22:38:10 +03:00
|
|
|
*/
|
2009-11-01 01:23:36 +03:00
|
|
|
protected function _getTestEntityManager($conn = null, $conf = null, $eventManager = null, $withSharedMetadata = true)
|
2009-02-17 05:43:40 +03:00
|
|
|
{
|
2011-12-20 01:56:19 +04:00
|
|
|
$metadataCache = $withSharedMetadata
|
|
|
|
? self::getSharedMetadataCacheImpl()
|
2011-10-16 08:10:59 +04:00
|
|
|
: new \Doctrine\Common\Cache\ArrayCache;
|
2011-12-20 01:56:19 +04:00
|
|
|
|
2009-01-22 22:38:10 +03:00
|
|
|
$config = new \Doctrine\ORM\Configuration();
|
2011-12-20 01:56:19 +04:00
|
|
|
|
2011-10-16 08:10:59 +04:00
|
|
|
$config->setMetadataCacheImpl($metadataCache);
|
2012-07-08 16:58:06 +04:00
|
|
|
$config->setMetadataDriverImpl($config->newDefaultAnnotationDriver(array(), true));
|
2009-05-21 23:18:14 +04:00
|
|
|
$config->setQueryCacheImpl(self::getSharedQueryCacheImpl());
|
2009-10-15 00:18:36 +04:00
|
|
|
$config->setProxyDir(__DIR__ . '/Proxies');
|
|
|
|
$config->setProxyNamespace('Doctrine\Tests\Proxies');
|
2011-12-20 01:56:19 +04:00
|
|
|
|
2009-03-14 12:05:52 +03:00
|
|
|
if ($conn === null) {
|
2009-02-17 15:25:03 +03:00
|
|
|
$conn = array(
|
2011-10-16 08:10:59 +04:00
|
|
|
'driverClass' => 'Doctrine\Tests\Mocks\DriverMock',
|
2009-01-22 22:38:10 +03:00
|
|
|
'wrapperClass' => 'Doctrine\Tests\Mocks\ConnectionMock',
|
2011-10-16 08:10:59 +04:00
|
|
|
'user' => 'john',
|
|
|
|
'password' => 'wayne'
|
2009-02-17 15:25:03 +03:00
|
|
|
);
|
|
|
|
}
|
2011-12-20 01:56:19 +04:00
|
|
|
|
2009-07-20 16:05:19 +04:00
|
|
|
if (is_array($conn)) {
|
|
|
|
$conn = \Doctrine\DBAL\DriverManager::getConnection($conn, $config, $eventManager);
|
|
|
|
}
|
2011-12-20 01:56:19 +04:00
|
|
|
|
2009-07-20 16:05:19 +04:00
|
|
|
return \Doctrine\Tests\Mocks\EntityManagerMock::create($conn, $config, $eventManager);
|
2009-01-22 22:38:10 +03:00
|
|
|
}
|
2009-02-04 21:03:05 +03:00
|
|
|
|
2012-12-14 22:55:49 +04:00
|
|
|
/**
|
|
|
|
* @return \Doctrine\Common\Cache\Cache
|
|
|
|
*/
|
2009-02-04 21:03:05 +03:00
|
|
|
private static function getSharedMetadataCacheImpl()
|
|
|
|
{
|
2009-03-14 12:05:52 +03:00
|
|
|
if (self::$_metadataCacheImpl === null) {
|
2009-07-07 00:34:54 +04:00
|
|
|
self::$_metadataCacheImpl = new \Doctrine\Common\Cache\ArrayCache;
|
2009-02-04 21:03:05 +03:00
|
|
|
}
|
2011-12-20 01:56:19 +04:00
|
|
|
|
2009-02-04 21:03:05 +03:00
|
|
|
return self::$_metadataCacheImpl;
|
|
|
|
}
|
2011-12-20 01:56:19 +04:00
|
|
|
|
2012-12-14 22:55:49 +04:00
|
|
|
/**
|
|
|
|
* @return \Doctrine\Common\Cache\Cache
|
|
|
|
*/
|
2009-05-21 23:18:14 +04:00
|
|
|
private static function getSharedQueryCacheImpl()
|
|
|
|
{
|
|
|
|
if (self::$_queryCacheImpl === null) {
|
2009-07-07 00:34:54 +04:00
|
|
|
self::$_queryCacheImpl = new \Doctrine\Common\Cache\ArrayCache;
|
2009-05-21 23:18:14 +04:00
|
|
|
}
|
2011-12-20 01:56:19 +04:00
|
|
|
|
2009-05-21 23:18:14 +04:00
|
|
|
return self::$_queryCacheImpl;
|
|
|
|
}
|
2009-01-22 22:38:10 +03:00
|
|
|
}
|