Rajout de doctrine/orm
[zf2.biz/application_blanche.git] / vendor / doctrine / orm / tests / Doctrine / Tests / ORM / Functional / Ticket / DDC1707Test.php
diff --git a/vendor/doctrine/orm/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC1707Test.php b/vendor/doctrine/orm/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC1707Test.php
new file mode 100644 (file)
index 0000000..50e702d
--- /dev/null
@@ -0,0 +1,64 @@
+<?php
+
+namespace Doctrine\Tests\ORM\Functional\Ticket;
+
+use Doctrine\ORM\UnitOfWork;
+
+/**
+ * @group DDC-1707
+ */
+class DDC1707Test extends \Doctrine\Tests\OrmFunctionalTestCase
+{
+    public function setUp()
+    {
+        parent::setUp();
+
+        try {
+            $this->_schemaTool->createSchema(array(
+                $this->_em->getClassMetadata(__NAMESPACE__ . '\DDC1509File'),
+                $this->_em->getClassMetadata(__NAMESPACE__ . '\DDC1509Picture'),
+            ));
+        } catch (\Exception $ignored) {
+
+        }
+    }
+
+    public function testPostLoadOnChild()
+    {
+        $class = $this->_em->getClassMetadata(__NAMESPACE__ . '\DDC1707Child');
+        $entity = new DDC1707Child();
+        $class->invokeLifecycleCallbacks(\Doctrine\ORM\Events::postLoad, $entity);
+
+        $this->assertTrue($entity->postLoad);
+    }
+}
+
+/**
+ * @Entity
+ * @InheritanceType("SINGLE_TABLE")
+ * @DiscriminatorMap({"c": "DDC1707Child"})
+ * @HasLifecycleCallbacks
+ */
+abstract class DDC1707Base
+{
+    /**
+     * @Id @Column(type="integer") @GeneratedValue
+     */
+    protected $id;
+
+    public $postLoad = false;
+
+    /**
+     * @PostLoad
+     */
+    public function onPostLoad()
+    {
+        $this->postLoad = true;
+    }
+}
+/**
+ * @Entity
+ */
+class DDC1707Child extends DDC1707Base
+{
+}