From d57159ad549d3b54b0c13c56b12949482b98c5c9 Mon Sep 17 00:00:00 2001
From: Benjamin Eberlei <kontakt@beberlei.de>
Date: Mon, 12 Mar 2012 12:48:14 +0100
Subject: [PATCH] [DDC-451] Add test for UUIDGenerator

---
 .../ORM/Functional/UUIDGeneratorTest.php      | 48 +++++++++++++++++++
 1 file changed, 48 insertions(+)
 create mode 100644 tests/Doctrine/Tests/ORM/Functional/UUIDGeneratorTest.php

diff --git a/tests/Doctrine/Tests/ORM/Functional/UUIDGeneratorTest.php b/tests/Doctrine/Tests/ORM/Functional/UUIDGeneratorTest.php
new file mode 100644
index 000000000..5fa237ee4
--- /dev/null
+++ b/tests/Doctrine/Tests/ORM/Functional/UUIDGeneratorTest.php
@@ -0,0 +1,48 @@
+<?php
+namespace Doctrine\Tests\ORM\Functional;
+
+/**
+ * @group DDC-451
+ */
+class UUIDGeneratorTest extends \Doctrine\Tests\OrmFunctionalTestCase
+{
+    public function setUp()
+    {
+        parent::setUp();
+
+        if ($this->_em->getConnection()->getDatabasePlatform()->getName() != 'mysql') {
+            $this->markTestSkipped('Currently restricted to MySQL platform.');
+        }
+
+        $this->_schemaTool->createSchema(array(
+            $this->_em->getClassMetadata(__NAMESPACE__ . '\\UUIDEntity')
+        ));
+    }
+
+    public function testGenerateUUID()
+    {
+        $entity = new UUIDEntity();
+
+        $this->_em->persist($entity);
+        $this->assertNotNull($entity->getId());
+        $this->assertTrue(strlen($entity->getId()) > 0);
+    }
+}
+
+/**
+ * @Entity
+ */
+class UUIDEntity
+{
+    /** @Id @Column(type="string") @GeneratedValue(strategy="UUID") */
+    private $id;
+    /**
+     * Get id.
+     *
+     * @return id.
+     */
+    public function getId()
+    {
+        return $this->id;
+    }
+}