2008-05-24 21:37:26 +04:00
|
|
|
<?php
|
2009-01-04 19:15:32 +03:00
|
|
|
|
2009-01-22 22:38:10 +03:00
|
|
|
namespace Doctrine\Tests;
|
2009-01-04 19:15:32 +03:00
|
|
|
|
2008-05-24 21:37:26 +04:00
|
|
|
/**
|
2009-03-30 23:43:05 +04:00
|
|
|
* Base testcase class for all functional ORM testcases.
|
2008-05-24 21:37:26 +04:00
|
|
|
*
|
2009-02-04 21:03:05 +03:00
|
|
|
* @since 2.0
|
2008-05-24 21:37:26 +04:00
|
|
|
*/
|
2010-01-31 17:35:10 +03:00
|
|
|
abstract class OrmFunctionalTestCase extends OrmTestCase
|
2008-05-24 21:37:26 +04:00
|
|
|
{
|
2009-02-04 21:03:05 +03:00
|
|
|
/* The metadata cache shared between all functional tests. */
|
|
|
|
private static $_metadataCacheImpl = null;
|
2009-05-21 23:18:14 +04:00
|
|
|
/* The query cache shared between all functional tests. */
|
|
|
|
private static $_queryCacheImpl = null;
|
2009-02-04 21:03:05 +03:00
|
|
|
|
2009-05-30 14:30:05 +04:00
|
|
|
/* Shared connection when a TestCase is run alone (outside of it's functional suite) */
|
|
|
|
private static $_sharedConn;
|
|
|
|
|
2009-11-04 14:39:49 +03:00
|
|
|
/**
|
|
|
|
* @var \Doctrine\ORM\EntityManager
|
|
|
|
*/
|
2009-01-12 16:34:41 +03:00
|
|
|
protected $_em;
|
|
|
|
|
2009-11-04 14:39:49 +03:00
|
|
|
/**
|
|
|
|
* @var \Doctrine\ORM\Tools\SchemaTool
|
|
|
|
*/
|
2009-03-30 23:43:05 +04:00
|
|
|
protected $_schemaTool;
|
2009-03-28 23:59:07 +03:00
|
|
|
|
2009-11-04 14:39:49 +03:00
|
|
|
/**
|
|
|
|
* @var \Doctrine\DBAL\Logging\DebugStack
|
|
|
|
*/
|
|
|
|
protected $_sqlLoggerStack;
|
|
|
|
|
2009-03-30 23:43:05 +04:00
|
|
|
/** The names of the model sets used in this testcase. */
|
|
|
|
private $_usedModelSets = array();
|
|
|
|
|
|
|
|
/** Whether the database schema has already been created. */
|
|
|
|
private static $_tablesCreated = array();
|
|
|
|
|
|
|
|
/** List of model sets and their classes. */
|
|
|
|
private static $_modelSets = array(
|
|
|
|
'cms' => array(
|
|
|
|
'Doctrine\Tests\Models\CMS\CmsUser',
|
|
|
|
'Doctrine\Tests\Models\CMS\CmsPhonenumber',
|
|
|
|
'Doctrine\Tests\Models\CMS\CmsAddress',
|
2009-04-09 22:12:48 +04:00
|
|
|
'Doctrine\Tests\Models\CMS\CmsGroup',
|
|
|
|
'Doctrine\Tests\Models\CMS\CmsArticle'
|
2009-03-30 23:43:05 +04:00
|
|
|
),
|
|
|
|
'forum' => array(),
|
2009-05-21 12:53:40 +04:00
|
|
|
'company' => array(
|
|
|
|
'Doctrine\Tests\Models\Company\CompanyPerson',
|
|
|
|
'Doctrine\Tests\Models\Company\CompanyEmployee',
|
2009-09-15 16:24:38 +04:00
|
|
|
'Doctrine\Tests\Models\Company\CompanyManager',
|
|
|
|
'Doctrine\Tests\Models\Company\CompanyOrganization',
|
|
|
|
'Doctrine\Tests\Models\Company\CompanyEvent',
|
|
|
|
'Doctrine\Tests\Models\Company\CompanyAuction',
|
2009-10-28 14:06:36 +03:00
|
|
|
'Doctrine\Tests\Models\Company\CompanyRaffle',
|
|
|
|
'Doctrine\Tests\Models\Company\CompanyCar'
|
2009-05-21 12:53:40 +04:00
|
|
|
),
|
2009-07-01 13:18:08 +04:00
|
|
|
'ecommerce' => array(
|
|
|
|
'Doctrine\Tests\Models\ECommerce\ECommerceCart',
|
2009-07-01 16:03:41 +04:00
|
|
|
'Doctrine\Tests\Models\ECommerce\ECommerceCustomer',
|
|
|
|
'Doctrine\Tests\Models\ECommerce\ECommerceProduct',
|
2009-07-01 17:11:45 +04:00
|
|
|
'Doctrine\Tests\Models\ECommerce\ECommerceShipping',
|
2009-07-02 13:37:59 +04:00
|
|
|
'Doctrine\Tests\Models\ECommerce\ECommerceFeature',
|
|
|
|
'Doctrine\Tests\Models\ECommerce\ECommerceCategory'
|
2009-07-01 13:18:08 +04:00
|
|
|
),
|
2009-06-20 16:59:33 +04:00
|
|
|
'generic' => array(
|
|
|
|
'Doctrine\Tests\Models\Generic\DateTimeModel'
|
2010-01-31 17:35:10 +03:00
|
|
|
),
|
|
|
|
'routing' => array(
|
|
|
|
'Doctrine\Tests\Models\Routing\RoutingLeg',
|
|
|
|
'Doctrine\Tests\Models\Routing\RoutingLocation',
|
|
|
|
'Doctrine\Tests\Models\Routing\RoutingRoute',
|
2010-02-15 00:26:15 +03:00
|
|
|
'Doctrine\Tests\Models\Routing\RoutingRouteBooking',
|
2010-01-31 17:35:10 +03:00
|
|
|
),
|
2009-03-30 23:43:05 +04:00
|
|
|
);
|
|
|
|
|
|
|
|
protected function useModelSet($setName)
|
2008-05-24 21:37:26 +04:00
|
|
|
{
|
2009-05-21 12:53:40 +04:00
|
|
|
$this->_usedModelSets[$setName] = true;
|
2008-05-24 21:37:26 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2009-03-30 23:43:05 +04:00
|
|
|
* Sweeps the database tables and clears the EntityManager.
|
2008-05-24 21:37:26 +04:00
|
|
|
*/
|
|
|
|
protected function tearDown()
|
|
|
|
{
|
2009-01-07 20:46:02 +03:00
|
|
|
$conn = $this->sharedFixture['conn'];
|
2009-11-04 14:39:49 +03:00
|
|
|
|
|
|
|
$this->_sqlLoggerStack->enabled = false;
|
2009-10-20 03:23:54 +04:00
|
|
|
|
2009-05-21 12:53:40 +04:00
|
|
|
if (isset($this->_usedModelSets['cms'])) {
|
2009-10-20 12:01:33 +04:00
|
|
|
$conn->executeUpdate('DELETE FROM cms_users_groups');
|
|
|
|
$conn->executeUpdate('DELETE FROM cms_groups');
|
|
|
|
$conn->executeUpdate('DELETE FROM cms_addresses');
|
|
|
|
$conn->executeUpdate('DELETE FROM cms_phonenumbers');
|
|
|
|
$conn->executeUpdate('DELETE FROM cms_articles');
|
|
|
|
$conn->executeUpdate('DELETE FROM cms_users');
|
2008-05-24 21:37:26 +04:00
|
|
|
}
|
2009-10-20 03:23:54 +04:00
|
|
|
|
2009-07-01 13:18:08 +04:00
|
|
|
if (isset($this->_usedModelSets['ecommerce'])) {
|
2009-10-20 12:01:33 +04:00
|
|
|
$conn->executeUpdate('DELETE FROM ecommerce_carts_products');
|
|
|
|
$conn->executeUpdate('DELETE FROM ecommerce_products_categories');
|
|
|
|
$conn->executeUpdate('DELETE FROM ecommerce_products_related');
|
|
|
|
$conn->executeUpdate('DELETE FROM ecommerce_carts');
|
|
|
|
$conn->executeUpdate('DELETE FROM ecommerce_customers');
|
|
|
|
$conn->executeUpdate('DELETE FROM ecommerce_features');
|
|
|
|
$conn->executeUpdate('DELETE FROM ecommerce_products');
|
|
|
|
$conn->executeUpdate('DELETE FROM ecommerce_shippings');
|
2009-08-13 14:13:06 +04:00
|
|
|
$conn->executeUpdate('UPDATE ecommerce_categories SET parent_id = NULL');
|
2009-10-20 12:01:33 +04:00
|
|
|
$conn->executeUpdate('DELETE FROM ecommerce_categories');
|
2009-07-01 13:18:08 +04:00
|
|
|
}
|
2009-10-20 03:23:54 +04:00
|
|
|
|
2009-05-21 12:53:40 +04:00
|
|
|
if (isset($this->_usedModelSets['company'])) {
|
2009-10-20 12:01:33 +04:00
|
|
|
$conn->executeUpdate('DELETE FROM company_persons_friends');
|
|
|
|
$conn->executeUpdate('DELETE FROM company_managers');
|
|
|
|
$conn->executeUpdate('DELETE FROM company_employees');
|
2009-08-13 14:13:06 +04:00
|
|
|
$conn->executeUpdate('UPDATE company_persons SET spouse_id = NULL');
|
2009-10-20 12:01:33 +04:00
|
|
|
$conn->executeUpdate('DELETE FROM company_persons');
|
|
|
|
$conn->executeUpdate('DELETE FROM company_raffles');
|
|
|
|
$conn->executeUpdate('DELETE FROM company_auctions');
|
2009-11-03 21:30:21 +03:00
|
|
|
$conn->executeUpdate('UPDATE company_organizations SET main_event_id = NULL');
|
2009-10-20 12:01:33 +04:00
|
|
|
$conn->executeUpdate('DELETE FROM company_events');
|
|
|
|
$conn->executeUpdate('DELETE FROM company_organizations');
|
2009-05-21 12:53:40 +04:00
|
|
|
}
|
2009-10-20 03:23:54 +04:00
|
|
|
|
2009-06-20 16:59:33 +04:00
|
|
|
if (isset($this->_usedModelSets['generic'])) {
|
2009-10-20 12:01:33 +04:00
|
|
|
$conn->executeUpdate('DELETE FROM date_time_model');
|
2009-06-20 16:59:33 +04:00
|
|
|
}
|
2010-02-09 20:13:49 +03:00
|
|
|
|
2010-02-15 00:26:15 +03:00
|
|
|
if (isset($this->_usedModelSets['routing'])) {
|
|
|
|
$conn->executeUpdate('DELETE FROM RoutingRouteLegs');
|
|
|
|
$conn->executeUpdate('DELETE FROM RoutingRouteBooking');
|
|
|
|
$conn->executeUpdate('DELETE FROM RoutingRoute');
|
|
|
|
$conn->executeUpdate('DELETE FROM RoutingLeg');
|
|
|
|
$conn->executeUpdate('DELETE FROM RoutingLocation');
|
|
|
|
}
|
|
|
|
|
2009-01-12 16:34:41 +03:00
|
|
|
$this->_em->clear();
|
2008-05-24 21:37:26 +04:00
|
|
|
}
|
2009-01-07 20:46:02 +03:00
|
|
|
|
2009-03-30 23:43:05 +04:00
|
|
|
/**
|
|
|
|
* Creates a connection to the test database, if there is none yet, and
|
|
|
|
* creates the necessary tables.
|
|
|
|
*/
|
2009-01-07 20:46:02 +03:00
|
|
|
protected function setUp()
|
|
|
|
{
|
2009-03-30 23:43:05 +04:00
|
|
|
$forceCreateTables = false;
|
2009-05-30 14:30:05 +04:00
|
|
|
|
2009-01-07 20:46:02 +03:00
|
|
|
if ( ! isset($this->sharedFixture['conn'])) {
|
2009-05-30 14:30:05 +04:00
|
|
|
if ( ! isset(self::$_sharedConn)) {
|
|
|
|
self::$_sharedConn = TestUtil::getConnection();
|
|
|
|
}
|
2009-10-20 03:23:54 +04:00
|
|
|
|
2009-05-30 14:30:05 +04:00
|
|
|
$this->sharedFixture['conn'] = self::$_sharedConn;
|
2009-10-20 03:23:54 +04:00
|
|
|
|
2009-03-30 23:43:05 +04:00
|
|
|
if ($this->sharedFixture['conn']->getDriver() instanceof \Doctrine\DBAL\Driver\PDOSqlite\Driver) {
|
|
|
|
$forceCreateTables = true;
|
|
|
|
}
|
2009-01-07 20:46:02 +03:00
|
|
|
}
|
2009-10-20 03:23:54 +04:00
|
|
|
|
2009-01-12 16:34:41 +03:00
|
|
|
if ( ! $this->_em) {
|
|
|
|
$this->_em = $this->_getEntityManager();
|
2009-03-30 23:43:05 +04:00
|
|
|
$this->_schemaTool = new \Doctrine\ORM\Tools\SchemaTool($this->_em);
|
|
|
|
}
|
|
|
|
|
|
|
|
$classes = array();
|
2009-10-20 03:23:54 +04:00
|
|
|
|
2009-05-21 12:53:40 +04:00
|
|
|
foreach ($this->_usedModelSets as $setName => $bool) {
|
2009-06-14 21:34:28 +04:00
|
|
|
if ( ! isset(self::$_tablesCreated[$setName])/* || $forceCreateTables*/) {
|
2009-03-30 23:43:05 +04:00
|
|
|
foreach (self::$_modelSets[$setName] as $className) {
|
|
|
|
$classes[] = $this->_em->getClassMetadata($className);
|
|
|
|
}
|
2009-10-20 03:23:54 +04:00
|
|
|
|
2009-03-30 23:43:05 +04:00
|
|
|
self::$_tablesCreated[$setName] = true;
|
|
|
|
}
|
|
|
|
}
|
2009-10-20 03:23:54 +04:00
|
|
|
|
2009-03-30 23:43:05 +04:00
|
|
|
if ($classes) {
|
2009-05-30 16:08:15 +04:00
|
|
|
$this->_schemaTool->createSchema($classes);
|
2009-01-12 16:34:41 +03:00
|
|
|
}
|
2009-11-04 14:39:49 +03:00
|
|
|
|
|
|
|
$this->_sqlLoggerStack->enabled = true;
|
2009-01-07 20:46:02 +03:00
|
|
|
}
|
|
|
|
|
2009-03-30 23:43:05 +04:00
|
|
|
/**
|
|
|
|
* Gets an EntityManager for testing purposes.
|
|
|
|
*
|
|
|
|
* @param Configuration $config The Configuration to pass to the EntityManager.
|
|
|
|
* @param EventManager $eventManager The EventManager to pass to the EntityManager.
|
|
|
|
* @return EntityManager
|
|
|
|
*/
|
2009-01-07 20:46:02 +03:00
|
|
|
protected function _getEntityManager($config = null, $eventManager = null) {
|
2009-02-04 21:03:05 +03:00
|
|
|
// NOTE: Functional tests use their own shared metadata cache, because
|
|
|
|
// the actual database platform used during execution has effect on some
|
|
|
|
// metadata mapping behaviors (like the choice of the ID generation).
|
|
|
|
if (is_null(self::$_metadataCacheImpl)) {
|
2009-07-07 00:34:54 +04:00
|
|
|
self::$_metadataCacheImpl = new \Doctrine\Common\Cache\ArrayCache;
|
2009-02-04 21:03:05 +03:00
|
|
|
}
|
2009-10-20 03:23:54 +04:00
|
|
|
|
2009-05-21 23:18:14 +04:00
|
|
|
if (is_null(self::$_queryCacheImpl)) {
|
2009-07-07 00:34:54 +04:00
|
|
|
self::$_queryCacheImpl = new \Doctrine\Common\Cache\ArrayCache;
|
2009-05-21 23:18:14 +04:00
|
|
|
}
|
2009-11-04 14:39:49 +03:00
|
|
|
|
|
|
|
$this->_sqlLoggerStack = new \Doctrine\DBAL\Logging\DebugStack();
|
|
|
|
$this->_sqlLoggerStack->enabled = false;
|
2009-10-20 03:23:54 +04:00
|
|
|
|
2009-10-06 14:04:32 +04:00
|
|
|
//FIXME: two different configs! $conn and the created entity manager have
|
|
|
|
// different configs.
|
2009-01-22 22:38:10 +03:00
|
|
|
$config = new \Doctrine\ORM\Configuration();
|
2009-02-04 21:03:05 +03:00
|
|
|
$config->setMetadataCacheImpl(self::$_metadataCacheImpl);
|
2009-05-21 23:18:14 +04:00
|
|
|
$config->setQueryCacheImpl(self::$_queryCacheImpl);
|
2009-10-15 00:18:36 +04:00
|
|
|
$config->setProxyDir(__DIR__ . '/Proxies');
|
|
|
|
$config->setProxyNamespace('Doctrine\Tests\Proxies');
|
2009-11-04 14:39:49 +03:00
|
|
|
|
2009-01-07 20:46:02 +03:00
|
|
|
$conn = $this->sharedFixture['conn'];
|
2009-11-04 14:39:49 +03:00
|
|
|
$conn->getConfiguration()->setSqlLogger($this->_sqlLoggerStack);
|
2009-05-30 13:37:56 +04:00
|
|
|
|
2009-08-13 14:13:06 +04:00
|
|
|
return \Doctrine\ORM\EntityManager::create($conn, $config);
|
2009-01-07 20:46:02 +03:00
|
|
|
}
|
2009-11-04 14:39:49 +03:00
|
|
|
|
|
|
|
protected function onNotSuccessfulTest(\Exception $e)
|
|
|
|
{
|
2010-02-07 00:26:56 +03:00
|
|
|
if ($e instanceof \PHPUnit_Framework_AssertionFailedError) {
|
2009-12-05 00:40:03 +03:00
|
|
|
throw $e;
|
|
|
|
}
|
|
|
|
|
2010-01-31 17:35:10 +03:00
|
|
|
if(isset($this->_sqlLoggerStack->queries) && count($this->_sqlLoggerStack->queries)) {
|
2009-11-04 14:39:49 +03:00
|
|
|
$queries = "";
|
2010-02-07 00:26:56 +03:00
|
|
|
for($i = count($this->_sqlLoggerStack->queries)-1; $i > max(count($this->_sqlLoggerStack->queries)-25, 0); $i--) {
|
2009-11-04 14:39:49 +03:00
|
|
|
$query = $this->_sqlLoggerStack->queries[$i];
|
2010-01-31 17:35:10 +03:00
|
|
|
$params = array_map(function($p) { return "'".$p."'"; }, $query['params'] ?: array());
|
2009-11-04 14:39:49 +03:00
|
|
|
$queries .= ($i+1).". SQL: '".$query['sql']."' Params: ".implode(", ", $params).PHP_EOL;
|
|
|
|
}
|
|
|
|
|
|
|
|
$trace = $e->getTrace();
|
|
|
|
$traceMsg = "";
|
|
|
|
foreach($trace AS $part) {
|
|
|
|
if(isset($part['file'])) {
|
|
|
|
if(strpos($part['file'], "PHPUnit/") !== false) {
|
|
|
|
// Beginning with PHPUnit files we don't print the trace anymore.
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
$traceMsg .= $part['file'].":".$part['line'].PHP_EOL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$message = "[".get_class($e)."] ".$e->getMessage().PHP_EOL.PHP_EOL."With queries:".PHP_EOL.$queries.PHP_EOL."Trace:".PHP_EOL.$traceMsg;
|
|
|
|
|
|
|
|
throw new \Exception($message, (int)$e->getCode(), $e);
|
|
|
|
}
|
|
|
|
throw $e;
|
|
|
|
}
|
2009-07-01 13:18:08 +04:00
|
|
|
}
|