From 0debccfe193fff96151a187809a69a11f5b46f29 Mon Sep 17 00:00:00 2001 From: zYne Date: Fri, 13 Jul 2007 16:22:36 +0000 Subject: [PATCH] --- tests/ForeignKeyTestCase.php | 117 +++++++++++++++++++++++++++++++++++ 1 file changed, 117 insertions(+) create mode 100644 tests/ForeignKeyTestCase.php diff --git a/tests/ForeignKeyTestCase.php b/tests/ForeignKeyTestCase.php new file mode 100644 index 000000000..2159502c6 --- /dev/null +++ b/tests/ForeignKeyTestCase.php @@ -0,0 +1,117 @@ +. + */ + +/** + * Doctrine_ForeignKey_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_ForeignKey_TestCase extends Doctrine_UnitTestCase +{ + public function prepareData() + { } + public function prepareTables() + { } + + + public function testExportingForeignKeysSupportsAssociationTables() + { + $this->dbh = new Doctrine_Adapter_Mock('mysql'); + $this->conn = $this->manager->openConnection($this->dbh); + + $sql = $this->conn->export->exportClassesSql(array('ClientModel', 'ClientToAddressModel', 'AddressModel')); + + $this->assertEqual($sql, array ( + 0 => 'CREATE TABLE clients_to_addresses (client_id BIGINT, address_id BIGINT, INDEX client_id_idx (client_id), INDEX address_id_idx (address_id), PRIMARY KEY(client_id, address_id)) ENGINE = INNODB', + 1 => 'CREATE TABLE clients (id INT UNSIGNED NOT NULL AUTO_INCREMENT, short_name VARCHAR(32) NOT NULL UNIQUE, PRIMARY KEY(id)) ENGINE = INNODB', + 2 => 'CREATE TABLE addresses (id BIGINT AUTO_INCREMENT, address1 VARCHAR(255) NOT NULL, address2 VARCHAR(255) NOT NULL, city VARCHAR(255) NOT NULL, state VARCHAR(10) NOT NULL, zip VARCHAR(15) NOT NULL, PRIMARY KEY(id)) ENGINE = INNODB', + 3 => 'ALTER TABLE clients_to_addresses ADD CONSTRAINT FOREIGN KEY (client_id) REFERENCES clients(id) ON DELETE CASCADE', + 4 => 'ALTER TABLE clients_to_addresses ADD CONSTRAINT FOREIGN KEY (address_id) REFERENCES addresses(id) ON DELETE CASCADE', + )); + } +} +class ClientModel extends Doctrine_Record +{ + public function setTableDefinition() + { + $this->setTableName('clients'); + + $this->hasColumn('id', 'integer', 4, array('notnull' => true, + 'primary' => true, + 'autoincrement' => true, + 'unsigned' => true)); + $this->hasColumn('short_name', 'string', 32, array('notnull' => true, 'notblank', 'unique' => true)); + } + + public function setUp() + { + $this->hasMany('AddressModel', array('local' => 'client_id', 'foreign' => 'address_id', 'refClass' => 'ClientToAddressModel')); + } +} + +class ClientToAddressModel extends Doctrine_Record +{ + public function setTableDefinition() + { + $this->setTableName('clients_to_addresses'); + + $this->hasColumn('client_id', 'integer', 11, array('primary' => true)); + $this->hasColumn('address_id', 'integer', 11, array('primary' => true)); + } + + public function construct() + { + } + + public function setUp() + { + $this->hasOne('ClientModel', array('local' => 'client_id', 'foreign' => 'id', 'onDelete' => 'CASCADE')); + $this->hasOne('AddressModel', array('local' => 'address_id', 'foreign' => 'id', 'onDelete' => 'CASCADE')); + } +} + +class AddressModel extends Doctrine_Record +{ + public function setTableDefinition() + { + $this->setTableName('addresses'); + + $this->hasColumn('id', 'integer', 11, array('autoincrement' => true, + 'primary' => true + )); + $this->hasColumn('address1', 'string', 255, array('notnull' => true, 'notblank')); + $this->hasColumn('address2', 'string', 255, array('notnull' => true)); + $this->hasColumn('city', 'string', 255, array('notnull' => true, 'notblank')); + $this->hasColumn('state', 'string', 10, array('notnull' => true, 'notblank', 'usstate')); + $this->hasColumn('zip', 'string', 15, array('notnull' => true, 'notblank', 'regexp' => '/^[0-9-]*$/')); + } + + public function setUp() + { + $this->hasMany('ClientModel', array('local' => 'address_id', 'foreign' => 'client_id', 'refClass' => 'ClientToAddressModel')); + } +}