2006-04-14 00:37:28 +04:00
|
|
|
<?php
|
|
|
|
class Doctrine_CollectionTestCase extends Doctrine_UnitTestCase {
|
|
|
|
public function testAdd() {
|
2006-04-17 00:38:17 +04:00
|
|
|
$coll = new Doctrine_Collection($this->objTable);
|
|
|
|
$coll->add(new User());
|
|
|
|
$this->assertEqual($coll->count(),1);
|
|
|
|
$coll->add(new User());
|
|
|
|
$this->assertTrue($coll->count(),2);
|
2006-04-19 20:01:36 +04:00
|
|
|
|
2006-04-17 00:38:17 +04:00
|
|
|
$this->assertEqual($coll->getKeys(), array(0,1));
|
2006-04-19 20:01:36 +04:00
|
|
|
|
2006-04-17 00:38:17 +04:00
|
|
|
$coll[2] = new User();
|
2006-04-19 20:01:36 +04:00
|
|
|
|
2006-04-17 00:38:17 +04:00
|
|
|
$this->assertTrue($coll->count(),3);
|
|
|
|
$this->assertEqual($coll->getKeys(), array(0,1,2));
|
|
|
|
}
|
2006-08-16 01:33:18 +04:00
|
|
|
public function testLoadRelated() {
|
|
|
|
$coll = $this->session->query("FROM User");
|
|
|
|
|
|
|
|
$q = $coll->loadRelated();
|
|
|
|
|
|
|
|
$this->assertTrue($q instanceof Doctrine_Query);
|
|
|
|
}
|
2006-07-27 21:51:19 +04:00
|
|
|
public function testLoadRelatedForAssociation() {
|
|
|
|
$coll = $this->session->query("FROM User");
|
2006-04-19 20:01:36 +04:00
|
|
|
|
2006-07-27 21:51:19 +04:00
|
|
|
$this->assertEqual($coll->count(), 8);
|
|
|
|
|
|
|
|
$coll[0]->Group[1]->name = "Actors House 2";
|
|
|
|
|
|
|
|
$coll[0]->Group[2]->name = "Actors House 3";
|
|
|
|
|
|
|
|
$coll[2]->Group[0]->name = "Actors House 4";
|
|
|
|
$coll[2]->Group[1]->name = "Actors House 5";
|
|
|
|
$coll[2]->Group[2]->name = "Actors House 6";
|
|
|
|
|
|
|
|
$coll[5]->Group[0]->name = "Actors House 7";
|
|
|
|
$coll[5]->Group[1]->name = "Actors House 8";
|
|
|
|
$coll[5]->Group[2]->name = "Actors House 9";
|
|
|
|
|
|
|
|
$coll->save();
|
|
|
|
|
|
|
|
$this->session->clear();
|
|
|
|
|
|
|
|
$coll = $this->session->query("FROM User");
|
|
|
|
|
|
|
|
$this->assertEqual($coll->count(), 8);
|
|
|
|
$this->assertEqual($coll[0]->Group->count(), 2);
|
|
|
|
$this->assertEqual($coll[1]->Group->count(), 1);
|
|
|
|
$this->assertEqual($coll[2]->Group->count(), 3);
|
|
|
|
$this->assertEqual($coll[5]->Group->count(), 3);
|
|
|
|
|
|
|
|
$this->session->clear();
|
|
|
|
|
|
|
|
$coll = $this->session->query("FROM User");
|
|
|
|
|
|
|
|
$this->assertEqual($coll->count(), 8);
|
|
|
|
|
|
|
|
$count = $this->dbh->count();
|
|
|
|
|
|
|
|
$coll->loadRelated("Group");
|
|
|
|
$this->assertEqual(($count + 1), $this->dbh->count());
|
|
|
|
$this->assertEqual($coll[0]->Group->count(), 2);
|
|
|
|
$this->assertEqual(($count + 1), $this->dbh->count());
|
|
|
|
$this->assertEqual($coll[1]->Group->count(), 1);
|
|
|
|
|
|
|
|
$this->assertEqual(($count + 1), $this->dbh->count());
|
|
|
|
|
|
|
|
$this->assertEqual($coll[2]->Group->count(), 3);
|
|
|
|
|
|
|
|
$this->assertEqual(($count + 1), $this->dbh->count());
|
|
|
|
$this->assertEqual($coll[5]->Group->count(), 3);
|
|
|
|
|
|
|
|
$this->assertEqual(($count + 1), $this->dbh->count());
|
|
|
|
|
|
|
|
$this->session->clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testLoadRelatedForLocalKeyRelation() {
|
|
|
|
$coll = $this->session->query("FROM User");
|
|
|
|
|
|
|
|
$this->assertEqual($coll->count(), 8);
|
|
|
|
|
|
|
|
$count = $this->dbh->count();
|
|
|
|
$coll->loadRelated("Email");
|
|
|
|
|
|
|
|
$this->assertEqual(($count + 1), $this->dbh->count());
|
|
|
|
|
|
|
|
$this->assertEqual($coll[0]->Email->address, "zYne@example.com");
|
|
|
|
|
|
|
|
$this->assertEqual(($count + 1), $this->dbh->count());
|
|
|
|
|
|
|
|
$this->assertEqual($coll[2]->Email->address, "caine@example.com");
|
|
|
|
|
|
|
|
$this->assertEqual($coll[3]->Email->address, "kitano@example.com");
|
|
|
|
|
|
|
|
$this->assertEqual($coll[4]->Email->address, "stallone@example.com");
|
|
|
|
|
|
|
|
$this->assertEqual(($count + 1), $this->dbh->count());
|
|
|
|
|
|
|
|
$this->session->clear();
|
|
|
|
}
|
|
|
|
public function testLoadRelatedForForeignKey() {
|
|
|
|
$coll = $this->session->query("FROM User");
|
|
|
|
$this->assertEqual($coll->count(), 8);
|
|
|
|
|
|
|
|
$count = $this->dbh->count();
|
|
|
|
$coll->loadRelated("Phonenumber");
|
|
|
|
|
|
|
|
$this->assertEqual(($count + 1), $this->dbh->count());
|
|
|
|
|
|
|
|
$this->assertEqual($coll[0]->Phonenumber[0]->phonenumber, "123 123");
|
|
|
|
|
|
|
|
$this->assertEqual(($count + 1), $this->dbh->count());
|
|
|
|
|
|
|
|
$coll[0]->Phonenumber[1]->phonenumber;
|
|
|
|
|
|
|
|
$this->assertEqual(($count + 1), $this->dbh->count());
|
|
|
|
|
|
|
|
$this->assertEqual($coll[4]->Phonenumber[0]->phonenumber, "111 555 333");
|
|
|
|
$this->assertEqual($coll[4]["Phonenumber"][1]->phonenumber, "123 213");
|
|
|
|
$this->assertEqual($coll[4]["Phonenumber"][2]->phonenumber, "444 555");
|
|
|
|
|
|
|
|
$this->assertEqual($coll[5]->Phonenumber[0]->phonenumber, "111 222 333");
|
|
|
|
|
|
|
|
|
|
|
|
$this->assertEqual($coll[6]->Phonenumber[0]->phonenumber, "111 222 333");
|
|
|
|
$this->assertEqual($coll[6]["Phonenumber"][1]->phonenumber, "222 123");
|
|
|
|
$this->assertEqual($coll[6]["Phonenumber"][2]->phonenumber, "123 456");
|
|
|
|
|
|
|
|
$this->assertEqual(($count + 1), $this->dbh->count());
|
|
|
|
|
|
|
|
$this->session->clear();
|
|
|
|
}
|
|
|
|
public function testCount() {
|
|
|
|
$coll = new Doctrine_Collection($this->session->getTable('User'));
|
|
|
|
$this->assertEqual($coll->count(), 0);
|
|
|
|
$coll[0];
|
|
|
|
$this->assertEqual($coll->count(), 1);
|
|
|
|
}
|
2006-04-17 00:38:17 +04:00
|
|
|
public function testExpand() {
|
2006-05-29 20:15:54 +04:00
|
|
|
$users = $this->session->query("FROM User-b.Phonenumber-l WHERE User.Phonenumber.phonenumber LIKE '%123%'");
|
2006-04-19 20:01:36 +04:00
|
|
|
|
|
|
|
$this->assertTrue($users instanceof Doctrine_Collection_Batch);
|
2006-04-17 00:38:17 +04:00
|
|
|
$this->assertTrue($users[1] instanceof User);
|
2006-04-19 20:01:36 +04:00
|
|
|
$this->assertTrue($users[1]->Phonenumber instanceof Doctrine_Collection_Lazy);
|
2006-04-17 00:38:17 +04:00
|
|
|
$data = $users[1]->Phonenumber->getData();
|
|
|
|
|
|
|
|
$coll = $users[1]->Phonenumber;
|
|
|
|
|
|
|
|
$this->assertEqual(count($data), 1);
|
2006-04-19 20:01:36 +04:00
|
|
|
|
|
|
|
foreach($coll as $record) {
|
|
|
|
$record->phonenumber;
|
|
|
|
}
|
|
|
|
|
2006-04-17 00:38:17 +04:00
|
|
|
$coll[1];
|
2006-04-19 20:01:36 +04:00
|
|
|
|
2006-04-17 00:38:17 +04:00
|
|
|
$this->assertEqual(count($coll), 3);
|
2006-04-19 20:01:36 +04:00
|
|
|
|
2006-05-19 14:22:15 +04:00
|
|
|
$this->assertEqual($coll[2]->getState(), Doctrine_Record::STATE_PROXY);
|
2006-04-17 00:38:17 +04:00
|
|
|
|
2006-04-23 12:12:01 +04:00
|
|
|
|
|
|
|
$generator = new Doctrine_IndexGenerator($this->objTable->getIdentifier());
|
2006-04-17 00:38:17 +04:00
|
|
|
$coll->setGenerator($generator);
|
|
|
|
$generator = $coll->getGenerator();
|
2006-05-15 16:15:20 +04:00
|
|
|
|
|
|
|
$user = $this->session->getTable("User")->find(4);
|
|
|
|
$this->assertEqual($generator->getIndex($user), 4);
|
2006-04-19 20:01:36 +04:00
|
|
|
|
2006-04-17 00:38:17 +04:00
|
|
|
}
|
|
|
|
public function testGenerator() {
|
|
|
|
$generator = new Doctrine_IndexGenerator("name");
|
|
|
|
$coll = new Doctrine_Collection($this->objTable);
|
|
|
|
$coll->setGenerator($generator);
|
2006-04-19 20:01:36 +04:00
|
|
|
|
2006-04-17 00:38:17 +04:00
|
|
|
$user = new User();
|
|
|
|
$user->name = "name";
|
|
|
|
$coll->add($user);
|
2006-04-19 20:01:36 +04:00
|
|
|
|
2006-04-17 00:38:17 +04:00
|
|
|
$this->assertEqual($coll["name"], $user);
|
|
|
|
|
|
|
|
|
|
|
|
$this->session->getTable("email")->setAttribute(Doctrine::ATTR_COLL_KEY,"address");
|
|
|
|
$emails = $this->session->getTable("email")->findAll();
|
|
|
|
foreach($emails as $k => $v) {
|
|
|
|
$this->assertTrue(gettype($k), "string");
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2006-04-14 00:37:28 +04:00
|
|
|
}
|
|
|
|
?>
|