. */ /** * Doctrine_Ticket_480_TestCase * * @package Doctrine * @author Miloslav Kmet * @license http://www.opensource.org/licenses/lgpl-license.php LGPL * @category Object Relational Mapping * @link www.phpdoctrine.org * @since 1.0 * @version $Revision$ */ class stComment extends Doctrine_Entity { public static function initMetadata($class) { $class->setTableName('st_comment'); $class->setColumn('title', 'string', 100, array()); $class->setColumn('body', 'string', 1000, array()); } } class Doctrine_Ticket_480_TestCase extends Doctrine_UnitTestCase { public function testInit() { $this->dbh = new Doctrine_Adapter_Mock('oracle'); $this->conn = Doctrine_Manager::getInstance()->openConnection($this->dbh); } public function testTicket() { $this->conn->export->exportClasses(array('stComment')); $queries = $this->dbh->getAll(); // (2nd|1st except transaction init.) executed query must be CREATE TABLE or CREATE SEQUENCE, not CREATE TRIGGER // Trigger can be created after both CREATE TABLE and CREATE SEQUENCE $this->assertFalse(preg_match('~^CREATE TRIGGER.*~', $queries[1])); $this->assertFalse(preg_match('~^CREATE TRIGGER.*~', $queries[2])); } }