From d7fbd2cd146e68601d5aa25c95358a160bb7efd2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lenar=20L=C3=B5hmus?= Date: Fri, 19 Aug 2011 04:44:24 +0300 Subject: [PATCH 01/63] short classname support for custom repository class --- lib/Doctrine/ORM/Mapping/ClassMetadataInfo.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lib/Doctrine/ORM/Mapping/ClassMetadataInfo.php b/lib/Doctrine/ORM/Mapping/ClassMetadataInfo.php index 77d71dfc0..a562d28f3 100644 --- a/lib/Doctrine/ORM/Mapping/ClassMetadataInfo.php +++ b/lib/Doctrine/ORM/Mapping/ClassMetadataInfo.php @@ -1518,6 +1518,10 @@ class ClassMetadataInfo implements ClassMetadata */ public function setCustomRepositoryClass($repositoryClassName) { + if ($repositoryClassName !== null && strpos($repositoryClassName, '\\') === false + && strlen($this->namespace) > 0) { + $repositoryClassName = $this->namespace . '\\' . $repositoryClassName; + } $this->customRepositoryClassName = $repositoryClassName; } From 8c2db89f2b578c3f888abf8aff3cf81ee8dcdb25 Mon Sep 17 00:00:00 2001 From: Benjamin Eberlei Date: Sun, 21 Aug 2011 15:01:57 +0200 Subject: [PATCH 02/63] DDC-1340 - Fix bug with merge() and optimistic lock exception --- lib/Doctrine/ORM/UnitOfWork.php | 2 +- .../ORM/Functional/DetachedEntityTest.php | 22 +++++++++++++++++++ 2 files changed, 23 insertions(+), 1 deletion(-) diff --git a/lib/Doctrine/ORM/UnitOfWork.php b/lib/Doctrine/ORM/UnitOfWork.php index d62eb62c7..a0d49ebff 100644 --- a/lib/Doctrine/ORM/UnitOfWork.php +++ b/lib/Doctrine/ORM/UnitOfWork.php @@ -1406,7 +1406,7 @@ class UnitOfWork implements PropertyChangedListener $entityVersion = $class->reflFields[$class->versionField]->getValue($entity); // Throw exception if versions dont match. if ($managedCopyVersion != $entityVersion) { - throw OptimisticLockException::lockFailedVersionMissmatch($entityVersion, $managedCopyVersion); + throw OptimisticLockException::lockFailedVersionMissmatch($entity, $entityVersion, $managedCopyVersion); } } diff --git a/tests/Doctrine/Tests/ORM/Functional/DetachedEntityTest.php b/tests/Doctrine/Tests/ORM/Functional/DetachedEntityTest.php index 5d7e889ae..ee265d0ea 100644 --- a/tests/Doctrine/Tests/ORM/Functional/DetachedEntityTest.php +++ b/tests/Doctrine/Tests/ORM/Functional/DetachedEntityTest.php @@ -5,6 +5,7 @@ namespace Doctrine\Tests\ORM\Functional; use Doctrine\Tests\Models\CMS\CmsUser; use Doctrine\Tests\Models\CMS\CmsPhonenumber; use Doctrine\Tests\Models\CMS\CmsAddress; +use Doctrine\Tests\Models\CMS\CmsArticle; use Doctrine\ORM\UnitOfWork; require_once __DIR__ . '/../../TestInit.php'; @@ -192,5 +193,26 @@ class DetachedEntityTest extends \Doctrine\Tests\OrmFunctionalTestCase $this->assertFalse($this->_em->contains($user)); $this->assertFalse($this->_em->getUnitOfWork()->isInIdentityMap($user)); } + + /** + * @group DDC-1340 + */ + public function testMergeArticleWrongVersion() + { + $article = new CmsArticle(); + $article->topic = "test"; + $article->text = "test"; + + $this->_em->persist($article); + $this->_em->flush(); + + $this->_em->detach($article); + + $sql = "UPDATE cms_articles SET version = version+1 WHERE id = " . $article->id; + $this->_em->getConnection()->executeUpdate($sql); + + $this->setExpectedException('Doctrine\ORM\OptimisticLockException', 'The optimistic lock failed, version 1 was expected, but is actually 2'); + $this->_em->merge($article); + } } From b83945d486a0709dc22a633c7e7aca765fff184b Mon Sep 17 00:00:00 2001 From: Benjamin Eberlei Date: Sun, 21 Aug 2011 15:06:14 +0200 Subject: [PATCH 03/63] DDC-1333 - Fix bug in xsd --- doctrine-mapping.xsd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doctrine-mapping.xsd b/doctrine-mapping.xsd index bb4a1cc39..627ddf460 100644 --- a/doctrine-mapping.xsd +++ b/doctrine-mapping.xsd @@ -92,7 +92,7 @@ - + From 4f22bbbc7654f6a7d58116a4eceddd58e5ecd44a Mon Sep 17 00:00:00 2001 From: Benjamin Eberlei Date: Sat, 27 Aug 2011 13:23:17 +0200 Subject: [PATCH 04/63] Add support to distribute the XSD to a given directory during build process --- build.properties.dev | 1 + build.xml | 9 +++++++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/build.properties.dev b/build.properties.dev index 7e72d6f1e..20e91dc37 100644 --- a/build.properties.dev +++ b/build.properties.dev @@ -8,6 +8,7 @@ report.dir=reports log.archive.dir=logs project.pirum_dir= project.download_dir= +project.xsd_dir= test.phpunit_configuration_file= test.phpunit_generate_coverage=0 test.pmd_reports=0 diff --git a/build.xml b/build.xml index 7981503a5..b36457f3d 100644 --- a/build.xml +++ b/build.xml @@ -223,7 +223,12 @@ - + + + + + + @@ -235,7 +240,7 @@ - +