Rajout de doctrine/orm
[zf2.biz/application_blanche.git] / vendor / doctrine / orm / tests / Doctrine / Tests / ORM / Functional / SchemaTool / DDC214Test.php
diff --git a/vendor/doctrine/orm/tests/Doctrine/Tests/ORM/Functional/SchemaTool/DDC214Test.php b/vendor/doctrine/orm/tests/Doctrine/Tests/ORM/Functional/SchemaTool/DDC214Test.php
new file mode 100644 (file)
index 0000000..9b428c7
--- /dev/null
@@ -0,0 +1,91 @@
+<?php
+
+namespace Doctrine\Tests\ORM\Functional\SchemaTool;
+
+use Doctrine\ORM\Tools;
+
+
+require_once __DIR__ . '/../../../TestInit.php';
+
+/**
+ * WARNING: This test should be run as last test! It can affect others very easily!
+ */
+class DDC214Test extends \Doctrine\Tests\OrmFunctionalTestCase
+{
+    private $classes = array();
+    private $schemaTool = null;
+
+    public function setUp() {
+        parent::setUp();
+
+        $conn = $this->_em->getConnection();
+
+        if (strpos($conn->getDriver()->getName(), "sqlite") !== false) {
+            $this->markTestSkipped('SQLite does not support ALTER TABLE statements.');
+        }
+        $this->schemaTool = new Tools\SchemaTool($this->_em);
+    }
+
+    /**
+     * @group DDC-214
+     */
+    public function testCmsAddressModel()
+    {
+        $this->classes = array(
+            'Doctrine\Tests\Models\CMS\CmsUser',
+            'Doctrine\Tests\Models\CMS\CmsPhonenumber',
+            'Doctrine\Tests\Models\CMS\CmsAddress',
+            'Doctrine\Tests\Models\CMS\CmsGroup',
+            'Doctrine\Tests\Models\CMS\CmsArticle',
+            'Doctrine\Tests\Models\CMS\CmsEmail',
+        );
+
+        $this->assertCreatedSchemaNeedsNoUpdates($this->classes);
+    }
+
+    /**
+     * @group DDC-214
+     */
+    public function testCompanyModel()
+    {
+        $this->classes = array(
+            'Doctrine\Tests\Models\Company\CompanyPerson',
+            'Doctrine\Tests\Models\Company\CompanyEmployee',
+            'Doctrine\Tests\Models\Company\CompanyManager',
+            'Doctrine\Tests\Models\Company\CompanyOrganization',
+            'Doctrine\Tests\Models\Company\CompanyEvent',
+            'Doctrine\Tests\Models\Company\CompanyAuction',
+            'Doctrine\Tests\Models\Company\CompanyRaffle',
+            'Doctrine\Tests\Models\Company\CompanyCar'
+        );
+
+        $this->assertCreatedSchemaNeedsNoUpdates($this->classes);
+    }
+
+    public function assertCreatedSchemaNeedsNoUpdates($classes)
+    {
+        $classMetadata = array();
+        foreach ($classes AS $class) {
+            $classMetadata[] = $this->_em->getClassMetadata($class);
+        }
+
+        try {
+            $this->schemaTool->createSchema($classMetadata);
+        } catch(\Exception $e) {
+            // was already created
+        }
+
+        $sm = $this->_em->getConnection()->getSchemaManager();
+
+        $fromSchema = $sm->createSchema();
+        $toSchema = $this->schemaTool->getSchemaFromMetadata($classMetadata);
+
+        $comparator = new \Doctrine\DBAL\Schema\Comparator();
+        $schemaDiff = $comparator->compare($fromSchema, $toSchema);
+
+        $sql = $schemaDiff->toSql($this->_em->getConnection()->getDatabasePlatform());
+        $sql = array_filter($sql, function($sql) { return strpos($sql, 'DROP') === false; });
+
+        $this->assertEquals(0, count($sql), "SQL: " . implode(PHP_EOL, $sql));
+    }
+}
\ No newline at end of file