From f81e4fdcc77f0aa33f75c4878cf3e5f827f920a6 Mon Sep 17 00:00:00 2001 From: meus Date: Fri, 9 Nov 2007 00:19:14 +0000 Subject: [PATCH] Added failing testcase references #589 --- models/Ticket589.php | 11 +++++++++ tests/Ticket/589TestCase.php | 43 ++++++++++++++++++++++++++++++++++++ tests/run.php | 1 + 3 files changed, 55 insertions(+) create mode 100644 models/Ticket589.php create mode 100644 tests/Ticket/589TestCase.php diff --git a/models/Ticket589.php b/models/Ticket589.php new file mode 100644 index 000000000..835c3991b --- /dev/null +++ b/models/Ticket589.php @@ -0,0 +1,11 @@ +hasColumn('id', 'integer', 4, array('notnull' => true, + 'primary' => true, + 'unsigned' > true, + 'autoincrement' => true)); + $this->hasColumn('name', 'string',50); + } +} diff --git a/tests/Ticket/589TestCase.php b/tests/Ticket/589TestCase.php new file mode 100644 index 000000000..ed39d092c --- /dev/null +++ b/tests/Ticket/589TestCase.php @@ -0,0 +1,43 @@ +. + */ + +/** + * Doctrine_Record_TestCase + * + * @package Doctrine + * @author Konsta Vesterinen + * @license http://www.opensource.org/licenses/lgpl-license.php LGPL + * @category Object Relational Mapping + * @link www.phpdoctrine.com + * @since 1.0 + * @version $Revision$ + */ +class Doctrine_Ticket_589_TestCase extends Doctrine_UnitTestCase +{ + + public function testExportPrimaryIdWithUnsignedWhenDefinedInClass() + { + $sql = $this->conn->export->exportClassesSql(array('Ticket589')); + $this->assertEqual($sql[0], 'CREATE TABLE ticket589 (id INTEGER NOT NULL UNSIGNED PRIMARY KEY AUTOINCREMENT, name VARCHAR(50))'); + + } +} + diff --git a/tests/run.php b/tests/run.php index db2ff96b8..1e3fda465 100644 --- a/tests/run.php +++ b/tests/run.php @@ -11,6 +11,7 @@ spl_autoload_register(array('DoctrineTest','autoload')); $test = new DoctrineTest(); //TICKET test cases $tickets = new GroupTest('Tickets tests', 'tickets'); +$tickets->addTestCase(new Doctrine_Ticket_589_TestCase()); $tickets->addTestCase(new Doctrine_Ticket_Njero_TestCase()); $tickets->addTestCase(new Doctrine_Ticket_428_TestCase()); $tickets->addTestCase(new Doctrine_Ticket_587_TestCase());