1
0
mirror of synced 2024-12-13 22:56:04 +03:00
doctrine2/tests/ConnectionTestCase.php

368 lines
16 KiB
PHP
Raw Normal View History

2006-04-14 00:37:28 +04:00
<?php
require_once("UnitTestCase.php");
2006-08-22 03:20:33 +04:00
class Doctrine_ConnectionTestCase extends Doctrine_UnitTestCase {
public function testbuildFlushTree() {
2006-06-09 02:11:36 +04:00
$correct = array("Task","ResourceType","Resource","Assignment","ResourceReference");
// new model might switch some many-to-many components (NO HARM!)
$correct2 = array (
0 => 'Resource',
1 => 'Task',
2 => 'ResourceType',
3 => 'Assignment',
4 => 'ResourceReference',
);
$task = new Task();
$tree = $this->connection->getUnitOfWork()->buildFlushTree(array("Task"));
$this->assertEqual($tree,array("Resource","Task","Assignment"));
$tree = $this->connection->getUnitOfWork()->buildFlushTree(array("Task","Resource"));
$this->assertEqual($tree,$correct);
$tree = $this->connection->getUnitOfWork()->buildFlushTree(array("Task","Assignment","Resource"));
$this->assertEqual($tree,$correct);
$tree = $this->connection->getUnitOfWork()->buildFlushTree(array("Assignment","Task","Resource"));
$this->assertEqual($tree,$correct2);
$correct = array("Forum_Category","Forum_Board","Forum_Thread");
$tree = $this->connection->getUnitOfWork()->buildFlushTree(array("Forum_Board"));
$this->assertEqual($tree, $correct);
$tree = $this->connection->getUnitOfWork()->buildFlushTree(array("Forum_Category","Forum_Board"));
$this->assertEqual($tree, $correct);
$correct = array("Forum_Category","Forum_Board","Forum_Thread","Forum_Entry");
$tree = $this->connection->getUnitOfWork()->buildFlushTree(array("Forum_Entry","Forum_Board"));
$this->assertEqual($tree, $correct);
$tree = $this->connection->getUnitOfWork()->buildFlushTree(array("Forum_Board","Forum_Entry"));
$this->assertEqual($tree, $correct);
$tree = $this->connection->getUnitOfWork()->buildFlushTree(array("Forum_Thread","Forum_Board"));
$this->assertEqual($tree, $correct);
$tree = $this->connection->getUnitOfWork()->buildFlushTree(array("Forum_Board","Forum_Thread"));
$this->assertEqual($tree, $correct);
$tree = $this->connection->getUnitOfWork()->buildFlushTree(array("Forum_Board","Forum_Thread","Forum_Entry"));
$this->assertEqual($tree, $correct);
$tree = $this->connection->getUnitOfWork()->buildFlushTree(array("Forum_Board","Forum_Entry","Forum_Thread"));
$this->assertEqual($tree, $correct);
$tree = $this->connection->getUnitOfWork()->buildFlushTree(array("Forum_Entry","Forum_Board","Forum_Thread"));
$this->assertEqual($tree, $correct);
$tree = $this->connection->getUnitOfWork()->buildFlushTree(array("Forum_Entry","Forum_Thread","Forum_Board"));
$this->assertEqual($tree, $correct);
$tree = $this->connection->getUnitOfWork()->buildFlushTree(array("Forum_Thread","Forum_Board","Forum_Entry"));
$this->assertEqual($tree, $correct);
$tree = $this->connection->getUnitOfWork()->buildFlushTree(array("Forum_Thread","Forum_Entry","Forum_Board"));
$this->assertEqual($tree, $correct);
$this->assertEqual($tree, $correct);
$tree = $this->connection->getUnitOfWork()->buildFlushTree(array("Forum_Board","Forum_Thread","Forum_Category"));
$this->assertEqual($tree, $correct);
$tree = $this->connection->getUnitOfWork()->buildFlushTree(array("Forum_Category","Forum_Thread","Forum_Board"));
$this->assertEqual($tree, $correct);
$tree = $this->connection->getUnitOfWork()->buildFlushTree(array("Forum_Thread","Forum_Board","Forum_Category"));
$this->assertEqual($tree, $correct);
$tree = $this->connection->getUnitOfWork()->buildFlushTree(array("Forum_Board","Forum_Thread","Forum_Category","Forum_Entry"));
$this->assertEqual($tree, $correct);
$tree = $this->connection->getUnitOfWork()->buildFlushTree(array("Forum_Board","Forum_Thread","Forum_Entry","Forum_Category"));
$this->assertEqual($tree, $correct);
$tree = $this->connection->getUnitOfWork()->buildFlushTree(array("Forum_Board","Forum_Category","Forum_Thread","Forum_Entry"));
$this->assertEqual($tree, $correct);
$tree = $this->connection->getUnitOfWork()->buildFlushTree(array("Forum_Entry","Forum_Thread","Forum_Board","Forum_Category"));
$this->assertEqual($tree, $correct);
$tree = $this->connection->getUnitOfWork()->buildFlushTree(array("Forum_Entry","Forum_Thread","Forum_Category","Forum_Board"));
$this->assertEqual($tree, $correct);
$tree = $this->connection->getUnitOfWork()->buildFlushTree(array("Forum_Entry","Forum_Category","Forum_Board","Forum_Thread"));
$this->assertEqual($tree, $correct);
$tree = $this->connection->getUnitOfWork()->buildFlushTree(array("Forum_Thread","Forum_Category","Forum_Board","Forum_Entry"));
$this->assertEqual($tree, $correct);
$tree = $this->connection->getUnitOfWork()->buildFlushTree(array("Forum_Thread","Forum_Entry","Forum_Category","Forum_Board"));
$this->assertEqual($tree, $correct);
$tree = $this->connection->getUnitOfWork()->buildFlushTree(array("Forum_Thread","Forum_Board","Forum_Entry","Forum_Category"));
$this->assertEqual($tree, $correct);
$tree = $this->connection->getUnitOfWork()->buildFlushTree(array("Forum_Category","Forum_Entry","Forum_Board","Forum_Thread"));
$this->assertEqual($tree, $correct);
$tree = $this->connection->getUnitOfWork()->buildFlushTree(array("Forum_Category","Forum_Thread","Forum_Entry","Forum_Board"));
$this->assertEqual($tree, $correct);
$tree = $this->connection->getUnitOfWork()->buildFlushTree(array("Forum_Category","Forum_Board","Forum_Thread","Forum_Entry"));
$this->assertEqual($tree, $correct);
2006-04-14 00:37:28 +04:00
}
2006-05-10 22:51:11 +04:00
public function testBulkInsert() {
$u1 = new User();
$u1->name = "Jean Reno";
$u1->save();
$id = $u1->obtainIdentifier();
2006-05-10 22:51:11 +04:00
$u1->delete();
}
2006-04-14 00:37:28 +04:00
public function testFlush() {
2006-08-22 03:20:33 +04:00
$user = $this->connection->getTable("User")->find(4);
$this->assertTrue(is_numeric($user->Phonenumber[0]->entity_id));
2006-04-14 00:37:28 +04:00
2006-08-22 03:20:33 +04:00
$user = $this->connection->create("Email");
$user = $this->connection->create("User");
$record = $this->connection->create("Phonenumber");
2006-04-14 00:37:28 +04:00
$user->Email->address = "example@drinkmore.info";
$this->assertTrue($user->email_id instanceof Email);
$user->name = "Example user";
$user->Group[0]->name = "Example group 1";
$user->Group[1]->name = "Example group 2";
$user->Phonenumber[0]->phonenumber = "123 123";
$user->Phonenumber[1]->phonenumber = "321 2132";
$user->Phonenumber[2]->phonenumber = "123 123";
$user->Phonenumber[3]->phonenumber = "321 2132";
$this->assertTrue($user->Phonenumber[0]->entity_id instanceof User);
$this->assertTrue($user->Phonenumber[2]->entity_id instanceof User);
2006-08-22 03:20:33 +04:00
$this->connection->flush();
2006-04-14 00:37:28 +04:00
2006-04-14 14:20:19 +04:00
$this->assertTrue(is_numeric($user->Phonenumber[0]->entity_id));
2006-04-14 00:37:28 +04:00
$this->assertEqual(count($user->Group), 2);
2006-05-25 15:06:58 +04:00
$user2 = $user;
2006-04-14 00:37:28 +04:00
$user = $this->objTable->find($user->id);
2006-04-14 00:37:28 +04:00
$this->assertEqual($user->id, $user2->id);
2006-04-14 00:37:28 +04:00
$this->assertTrue(is_numeric($user->id));
2006-04-14 14:20:19 +04:00
$this->assertTrue(is_numeric($user->email_id));
2006-04-14 00:37:28 +04:00
2006-04-14 14:20:19 +04:00
$this->assertTrue(is_numeric($user->Phonenumber[0]->entity_id));
2006-04-14 00:37:28 +04:00
$this->assertTrue($user->Phonenumber->count(), 4);
$this->assertEqual($user->Group->count(), 2);
2006-05-25 15:06:58 +04:00
$this->assertTrue($this->dbh instanceof Doctrine_DB);
2006-04-14 00:37:28 +04:00
$user = $this->objTable->find(5);
2006-08-22 03:20:33 +04:00
$pf = $this->connection->getTable("Phonenumber");
2006-04-14 00:37:28 +04:00
$this->assertTrue($user->Phonenumber instanceof Doctrine_Collection);
$this->assertTrue($user->Phonenumber->count() == 3);
$coll = new Doctrine_Collection($pf);
$user->Phonenumber = $coll;
$this->assertTrue($user->Phonenumber->count() == 0);
2006-08-22 03:20:33 +04:00
$this->connection->flush();
2006-04-14 00:37:28 +04:00
unset($user);
$user = $this->objTable->find(5);
$this->assertEqual($user->Phonenumber->count(), 0);
// ADDING REFERENCES
$user->Phonenumber[0]->phonenumber = "123 123";
2006-04-14 14:20:19 +04:00
$this->assertTrue(is_numeric($user->Phonenumber[0]->entity_id));
2006-04-14 00:37:28 +04:00
$user->Phonenumber[1]->phonenumber = "123 123";
2006-08-22 03:20:33 +04:00
$this->connection->flush();
2006-04-14 00:37:28 +04:00
$this->assertEqual($user->Phonenumber->count(), 2);
2006-04-14 00:37:28 +04:00
unset($user);
$user = $this->objTable->find(5);
$this->assertEqual($user->Phonenumber->count(), 2);
$user->Phonenumber[3]->phonenumber = "123 123";
2006-08-22 03:20:33 +04:00
$this->connection->flush();
2006-04-14 00:37:28 +04:00
$this->assertEqual($user->Phonenumber->count(), 3);
2006-04-14 00:37:28 +04:00
unset($user);
$user = $this->objTable->find(5);
$this->assertEqual($user->Phonenumber->count(), 3);
2006-04-14 00:37:28 +04:00
// DELETING REFERENCES
$user->Phonenumber->delete();
$this->assertEqual($user->Phonenumber->count(), 0);
2006-04-14 00:37:28 +04:00
unset($user);
$user = $this->objTable->find(5);
$this->assertEqual($user->Phonenumber->count(), 0);
2006-04-14 00:37:28 +04:00
// ADDING REFERENCES WITH STRING KEYS
$user->Phonenumber["home"]->phonenumber = "123 123";
$user->Phonenumber["work"]->phonenumber = "444 444";
$this->assertEqual($user->Phonenumber->count(), 2);
2006-08-22 03:20:33 +04:00
$this->connection->flush();
2006-04-14 00:37:28 +04:00
$this->assertEqual($user->Phonenumber->count(), 2);
2006-04-14 00:37:28 +04:00
unset($user);
$user = $this->objTable->find(5);
$this->assertEqual($user->Phonenumber->count(), 2);
2006-04-14 00:37:28 +04:00
// REPLACING ONE-TO-MANY REFERENCE
unset($coll);
$coll = new Doctrine_Collection($pf);
$coll[0]->phonenumber = "123 123";
$coll["home"]->phonenumber = "444 444";
$coll["work"]->phonenumber = "444 444";
$user->Phonenumber = $coll;
2006-08-22 03:20:33 +04:00
$this->connection->flush();
2006-04-14 00:37:28 +04:00
$this->assertEqual($user->Phonenumber->count(), 3);
$user = $this->objTable->find(5);
$this->assertEqual($user->Phonenumber->count(), 3);
// ONE-TO-ONE REFERENCES
$user->Email->address = "drinker@drinkmore.info";
$this->assertTrue($user->Email instanceof Email);
2006-08-22 03:20:33 +04:00
$this->connection->flush();
2006-04-14 00:37:28 +04:00
$this->assertTrue($user->Email instanceof Email);
$user = $this->objTable->find(5);
$this->assertEqual($user->Email->address, "drinker@drinkmore.info");
$id = $user->Email->id;
2006-04-14 00:37:28 +04:00
// REPLACING ONE-TO-ONE REFERENCES
2006-08-22 03:20:33 +04:00
$email = $this->connection->create("Email");
2006-04-14 00:37:28 +04:00
$email->address = "absolutist@nottodrink.com";
$user->Email = $email;
$this->assertTrue($user->Email instanceof Email);
$this->assertEqual($user->Email->address, "absolutist@nottodrink.com");
2006-08-22 03:20:33 +04:00
$this->connection->flush();
2006-04-14 00:37:28 +04:00
unset($user);
$user = $this->objTable->find(5);
$this->assertTrue($user->Email instanceof Email);
$this->assertEqual($user->Email->address, "absolutist@nottodrink.com");
2006-08-22 03:20:33 +04:00
$emails = $this->connection->query("FROM Email WHERE Email.id = $id");
2006-04-14 14:20:19 +04:00
//$this->assertEqual(count($emails),0);
2006-04-14 00:37:28 +04:00
}
public function testGetManager() {
2006-08-22 03:20:33 +04:00
$this->assertEqual($this->connection->getManager(),$this->manager);
2006-04-14 00:37:28 +04:00
}
public function testQuery() {
2006-08-22 03:20:33 +04:00
$this->assertTrue($this->connection->query("FROM User") instanceof Doctrine_Collection);
2006-04-14 00:37:28 +04:00
}
public function testDelete() {
2006-08-22 03:20:33 +04:00
$user = $this->connection->create("User");
$this->connection->delete($user);
2006-04-14 00:37:28 +04:00
$this->assertEqual($user->getState(),Doctrine_Record::STATE_TCLEAN);
}
public function testGetTable() {
2006-08-22 03:20:33 +04:00
$table = $this->connection->getTable("Group");
2006-04-14 00:37:28 +04:00
$this->assertTrue($table instanceof Doctrine_Table);
try {
2006-08-22 03:20:33 +04:00
$table = $this->connection->getTable("Unknown");
2006-04-14 00:37:28 +04:00
$f = false;
} catch(Doctrine_Exception $e) {
$f = true;
}
$this->assertTrue($f);
2006-08-22 03:20:33 +04:00
$table = $this->connection->getTable("User");
2006-04-14 00:37:28 +04:00
$this->assertTrue($table instanceof UserTable);
}
public function testCreate() {
2006-08-22 03:20:33 +04:00
$email = $this->connection->create("Email");
2006-04-14 00:37:28 +04:00
$this->assertTrue($email instanceof Email);
}
public function testGetDBH() {
2006-08-22 03:20:33 +04:00
$this->assertTrue($this->connection->getDBH() instanceof PDO);
2006-04-14 00:37:28 +04:00
}
public function testCount() {
2006-08-22 03:20:33 +04:00
$this->assertTrue(is_integer(count($this->connection)));
2006-04-14 00:37:28 +04:00
}
public function testGetIterator() {
2006-08-22 03:20:33 +04:00
$this->assertTrue($this->connection->getIterator() instanceof ArrayIterator);
2006-04-14 00:37:28 +04:00
}
public function testGetState() {
$this->assertEqual($this->connection->getTransaction()->getState(),Doctrine_Connection_Transaction::STATE_OPEN);
$this->assertEqual(Doctrine_Lib::getConnectionStateAsString($this->connection->getTransaction()->getState()), "open");
2006-04-14 00:37:28 +04:00
}
public function testGetTables() {
2006-08-22 03:20:33 +04:00
$this->assertTrue(is_array($this->connection->getTables()));
2006-04-14 00:37:28 +04:00
}
public function testTransactions() {
2006-08-22 03:20:33 +04:00
$this->connection->beginTransaction();
$this->assertEqual($this->connection->getTransaction()->getState(),Doctrine_Connection_Transaction::STATE_ACTIVE);
2006-08-22 03:20:33 +04:00
$this->connection->commit();
$this->assertEqual($this->connection->getTransaction()->getState(),Doctrine_Connection_Transaction::STATE_OPEN);
2006-04-14 00:37:28 +04:00
2006-08-22 03:20:33 +04:00
$this->connection->beginTransaction();
2006-04-14 00:37:28 +04:00
$user = $this->objTable->find(6);
$user->name = "Jack Daniels";
2006-08-22 03:20:33 +04:00
$this->connection->flush();
$this->connection->commit();
2006-04-14 00:37:28 +04:00
$user = $this->objTable->find(6);
$this->assertEqual($user->name, "Jack Daniels");
}
public function testRollback() {
2006-08-22 03:20:33 +04:00
$this->connection->beginTransaction();
$this->assertEqual($this->connection->getTransactionLevel(),1);
$this->assertEqual($this->connection->getTransaction()->getState(),Doctrine_Connection_Transaction::STATE_ACTIVE);
2006-08-22 03:20:33 +04:00
$this->connection->rollback();
$this->assertEqual($this->connection->getTransaction()->getState(),Doctrine_Connection_Transaction::STATE_OPEN);
2006-08-22 03:20:33 +04:00
$this->assertEqual($this->connection->getTransactionLevel(),0);
2006-04-14 00:37:28 +04:00
}
public function testNestedTransactions() {
2006-08-22 03:20:33 +04:00
$this->assertEqual($this->connection->getTransactionLevel(),0);
$this->connection->beginTransaction();
$this->assertEqual($this->connection->getTransactionLevel(),1);
$this->assertEqual($this->connection->getTransaction()->getState(),Doctrine_Connection_Transaction::STATE_ACTIVE);
2006-08-22 03:20:33 +04:00
$this->connection->beginTransaction();
$this->assertEqual($this->connection->getTransaction()->getState(),Doctrine_Connection_Transaction::STATE_BUSY);
2006-08-22 03:20:33 +04:00
$this->assertEqual($this->connection->getTransactionLevel(),2);
$this->connection->commit();
$this->assertEqual($this->connection->getTransaction()->getState(),Doctrine_Connection_Transaction::STATE_ACTIVE);
2006-08-22 03:20:33 +04:00
$this->assertEqual($this->connection->getTransactionLevel(),1);
$this->connection->commit();
$this->assertEqual($this->connection->getTransaction()->getState(),Doctrine_Connection_Transaction::STATE_OPEN);
2006-08-22 03:20:33 +04:00
$this->assertEqual($this->connection->getTransactionLevel(),0);
2006-04-14 00:37:28 +04:00
}
}
?>