From fe8b28a09f32ca9c5d23f114aa118d6717a07624 Mon Sep 17 00:00:00 2001 From: Benjamin Eberlei Date: Sat, 25 Jun 2011 09:57:15 +0200 Subject: [PATCH] Add test for DDC-1156, DDC-1218 --- .../ORM/Mapping/BasicInheritanceMappingTest.php | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/tests/Doctrine/Tests/ORM/Mapping/BasicInheritanceMappingTest.php b/tests/Doctrine/Tests/ORM/Mapping/BasicInheritanceMappingTest.php index a454141d3..033a2488b 100644 --- a/tests/Doctrine/Tests/ORM/Mapping/BasicInheritanceMappingTest.php +++ b/tests/Doctrine/Tests/ORM/Mapping/BasicInheritanceMappingTest.php @@ -100,6 +100,19 @@ class BasicInheritanceMappingTest extends \Doctrine\Tests\OrmTestCase $this->assertTrue(isset($class->fieldMappings['id'])); } + + /** + * @group DDC-1156 + * @group DDC-1218 + */ + public function testGeneratedValueFromMappedSuperclass() + { + $class = $this->_factory->getMetadataFor(__NAMESPACE__ . '\\SuperclassEntity'); + /* @var $class ClassMetadataInfo */ + + $this->assertInstanceOf('Doctrine\ORM\Id\SequenceGenerator', $class->idGenerator); + $this->assertEquals(array('allocationSize' => 1, 'initialValue' => 10, 'sequenceName' => 'foo'), $class->sequenceGeneratorDefinition); + } } class TransientBaseClass { @@ -216,7 +229,7 @@ class SuperclassEntity extends SuperclassBase abstract class SuperclassBase { /** - * @Column(type="integer") @Id @GeneratedValue + * @Column(type="integer") @Id @GeneratedValue(strategy="SEQUENCE") @SequenceGenerator(sequenceName="foo", initialValue="10") * @var int */ public $id;