2006-04-14 00:37:28 +04:00
|
|
|
<?php
|
|
|
|
require_once("UnitTestCase.class.php");
|
|
|
|
class Doctrine_TableTestCase extends Doctrine_UnitTestCase {
|
2006-05-17 21:58:40 +04:00
|
|
|
|
2006-04-23 12:12:01 +04:00
|
|
|
public function testGetIdentifier() {
|
|
|
|
$table = $this->session->getTable("User");
|
|
|
|
}
|
2006-04-14 00:37:28 +04:00
|
|
|
public function testGetForeignKey() {
|
|
|
|
$fk = $this->objTable->getForeignKey("Group");
|
|
|
|
$this->assertTrue($fk instanceof Doctrine_Association);
|
|
|
|
$this->assertTrue($fk->getTable() instanceof Doctrine_Table);
|
2006-04-23 12:12:01 +04:00
|
|
|
$this->assertTrue($fk->getType() == Doctrine_Relation::MANY_AGGREGATE);
|
2006-04-14 00:37:28 +04:00
|
|
|
$this->assertTrue($fk->getLocal() == "user_id");
|
|
|
|
$this->assertTrue($fk->getForeign() == "group_id");
|
|
|
|
|
|
|
|
$fk = $this->objTable->getForeignKey("Email");
|
|
|
|
$this->assertTrue($fk instanceof Doctrine_LocalKey);
|
|
|
|
$this->assertTrue($fk->getTable() instanceof Doctrine_Table);
|
2006-04-23 12:12:01 +04:00
|
|
|
$this->assertTrue($fk->getType() == Doctrine_Relation::ONE_COMPOSITE);
|
2006-04-14 00:37:28 +04:00
|
|
|
$this->assertTrue($fk->getLocal() == "email_id");
|
2006-04-23 12:12:01 +04:00
|
|
|
$this->assertTrue($fk->getForeign() == $fk->getTable()->getIdentifier());
|
2006-04-14 00:37:28 +04:00
|
|
|
|
|
|
|
|
|
|
|
$fk = $this->objTable->getForeignKey("Phonenumber");
|
|
|
|
$this->assertTrue($fk instanceof Doctrine_ForeignKey);
|
|
|
|
$this->assertTrue($fk->getTable() instanceof Doctrine_Table);
|
2006-04-23 12:12:01 +04:00
|
|
|
$this->assertTrue($fk->getType() == Doctrine_Relation::MANY_COMPOSITE);
|
|
|
|
$this->assertTrue($fk->getLocal() == $this->objTable->getIdentifier());
|
2006-04-14 00:37:28 +04:00
|
|
|
$this->assertTrue($fk->getForeign() == "entity_id");
|
2006-05-13 12:37:52 +04:00
|
|
|
|
2006-05-17 21:58:40 +04:00
|
|
|
|
2006-04-14 00:37:28 +04:00
|
|
|
}
|
|
|
|
public function testGetComponentName() {
|
|
|
|
$this->assertTrue($this->objTable->getComponentName() == "User");
|
|
|
|
}
|
|
|
|
public function testGetTableName() {
|
|
|
|
$this->assertTrue($this->objTable->getTableName() == "entity");
|
|
|
|
}
|
|
|
|
public function testGetSession() {
|
|
|
|
$this->assertTrue($this->objTable->getSession() instanceof Doctrine_Session);
|
|
|
|
}
|
|
|
|
public function testGetData() {
|
|
|
|
$this->assertTrue($this->objTable->getData() == array());
|
|
|
|
}
|
|
|
|
public function testSetSequenceName() {
|
|
|
|
$this->objTable->setSequenceName("test-seq");
|
|
|
|
$this->assertEqual($this->objTable->getSequenceName(),"test-seq");
|
|
|
|
$this->objTable->setSequenceName(null);
|
|
|
|
}
|
|
|
|
public function testCreate() {
|
|
|
|
$record = $this->objTable->create();
|
|
|
|
$this->assertTrue($record instanceof Doctrine_Record);
|
|
|
|
$this->assertTrue($record->getState() == Doctrine_Record::STATE_TCLEAN);
|
|
|
|
}
|
|
|
|
public function testFind() {
|
|
|
|
$record = $this->objTable->find(4);
|
|
|
|
$this->assertTrue($record instanceof Doctrine_Record);
|
|
|
|
|
|
|
|
try {
|
|
|
|
$record = $this->objTable->find(123);
|
|
|
|
} catch(Exception $e) {
|
|
|
|
$this->assertTrue($e instanceOf Doctrine_Find_Exception);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
public function testFindAll() {
|
|
|
|
$users = $this->objTable->findAll();
|
|
|
|
$this->assertEqual($users->count(), 8);
|
2006-04-17 01:23:38 +04:00
|
|
|
$this->assertTrue($users instanceof Doctrine_Collection);
|
2006-04-14 00:37:28 +04:00
|
|
|
}
|
|
|
|
public function testFindBySql() {
|
|
|
|
$users = $this->objTable->findBySql("name LIKE '%Arnold%'");
|
|
|
|
$this->assertEqual($users->count(), 1);
|
2006-04-17 01:23:38 +04:00
|
|
|
$this->assertTrue($users instanceof Doctrine_Collection);
|
2006-04-14 00:37:28 +04:00
|
|
|
}
|
|
|
|
public function testGetProxy() {
|
|
|
|
$user = $this->objTable->getProxy(4);
|
|
|
|
$this->assertTrue($user instanceof Doctrine_Record);
|
|
|
|
|
|
|
|
try {
|
|
|
|
$record = $this->objTable->find(123);
|
|
|
|
} catch(Exception $e) {
|
|
|
|
$this->assertTrue($e instanceOf Doctrine_Find_Exception);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
public function testGetColumns() {
|
|
|
|
$columns = $this->objTable->getColumns();
|
|
|
|
$this->assertTrue(is_array($columns));
|
|
|
|
|
|
|
|
}
|
|
|
|
public function testIsNewEntry() {
|
|
|
|
$this->assertFalse($this->objTable->isNewEntry());
|
|
|
|
}
|
|
|
|
public function testApplyInheritance() {
|
2006-04-15 21:42:24 +04:00
|
|
|
$this->assertEqual($this->objTable->applyInheritance("id = 3"), "id = 3 AND type = ?");
|
2006-04-14 00:37:28 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
?>
|