1
0
mirror of synced 2024-12-13 06:46:03 +03:00
doctrine2/tests_old/CollectionTestCase.php

333 lines
12 KiB
PHP
Raw Normal View History

2006-04-14 00:37:28 +04:00
<?php
2006-12-28 00:20:26 +03:00
/*
* $Id$
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* This software consists of voluntary contributions made by many individuals
* and is licensed under the LGPL. For more information, see
* <http://www.phpdoctrine.org>.
2006-12-28 00:20:26 +03:00
*/
/**
* Doctrine_Collection_TestCase
*
* @package Doctrine
* @author Konsta Vesterinen <kvesteri@cc.hut.fi>
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @category Object Relational Mapping
* @link www.phpdoctrine.org
2006-12-28 00:20:26 +03:00
* @since 1.0
* @version $Revision$
*/
2007-01-23 19:27:20 +03:00
class Doctrine_Collection_TestCase extends Doctrine_UnitTestCase
{
2007-04-11 23:12:52 +04:00
/**
2007-01-23 19:27:20 +03:00
public function testLoadRelatedForAssociation()
{
2007-04-11 23:12:52 +04:00
$coll = $this->connection->query('FROM User');
2006-04-19 20:01:36 +04:00
$this->assertEqual($coll->count(), 8);
2007-04-11 23:12:52 +04:00
$coll[0]->Group[1]->name = 'Actors House 2';
2007-04-11 23:12:52 +04:00
$coll[0]->Group[2]->name = 'Actors House 3';
2007-04-11 23:12:52 +04:00
$coll[2]->Group[0]->name = 'Actors House 4';
$coll[2]->Group[1]->name = 'Actors House 5';
$coll[2]->Group[2]->name = 'Actors House 6';
2007-04-11 23:12:52 +04:00
$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();
2006-08-22 03:20:33 +04:00
$this->connection->clear();
2007-04-11 23:12:52 +04:00
$coll = $this->connection->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);
2006-08-22 03:20:33 +04:00
$this->connection->clear();
2007-04-11 23:12:52 +04:00
$coll = $this->connection->query('FROM User');
$this->assertEqual($coll->count(), 8);
$count = $this->dbh->count();
2007-04-11 23:12:52 +04:00
$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());
2006-08-22 03:20:33 +04:00
$this->connection->clear();
}
public function testOffsetGetWithNullArgumentReturnsNewRecord()
{
$coll = new Doctrine_Collection('User');
$this->assertEqual($coll->count(), 0);
$coll[]->name = 'zYne';
$this->assertEqual($coll->count(), 1);
$this->assertEqual($coll[0]->name, 'zYne');
}
2007-05-26 21:12:55 +04:00
2007-01-23 19:27:20 +03:00
public function testLoadRelatedForNormalAssociation()
{
$resource = new Doctrine_Collection('Resource');
$resource[0]->name = 'resource 1';
$resource[0]->Type[0]->type = 'type 1';
$resource[0]->Type[1]->type = 'type 2';
$resource[1]->name = 'resource 2';
$resource[1]->Type[0]->type = 'type 3';
$resource[1]->Type[1]->type = 'type 4';
$resource->save();
$this->connection->clear();
$resources = $this->connection->query('FROM Resource');
$count = $this->dbh->count();
$resources->loadRelated('Type');
$this->assertEqual(($count + 1), $this->dbh->count());
$this->assertEqual($resources[0]->name, 'resource 1');
$this->assertEqual($resource[0]->Type[0]->type, 'type 1');
$this->assertEqual($resource[0]->Type[1]->type, 'type 2');
$this->assertEqual(($count + 1), $this->dbh->count());
$this->assertEqual($resource[1]->name, 'resource 2');
$this->assertEqual($resource[1]->Type[0]->type, 'type 3');
$this->assertEqual($resource[1]->Type[1]->type, 'type 4');
$this->assertEqual(($count + 1), $this->dbh->count());
}
2007-05-26 21:12:55 +04:00
*/
2007-01-23 19:27:20 +03:00
public function testAdd()
{
$coll = new Doctrine_Collection($this->objTable);
$coll->add(new User());
$this->assertEqual($coll->count(),1);
$coll->add(new User());
$this->assertTrue($coll->count(),2);
$this->assertEqual($coll->getKeys(), array(0,1));
$coll[2] = new User();
$this->assertTrue($coll->count(),3);
$this->assertEqual($coll->getKeys(), array(0,1,2));
}
2007-01-23 19:27:20 +03:00
public function testLoadRelated()
{
2007-04-11 23:12:52 +04:00
$coll = $this->connection->query('FROM User(id)');
2006-08-16 01:33:41 +04:00
$q = $coll->loadRelated();
$this->assertTrue($q instanceof Doctrine_Query);
$q->addFrom('User.Group');
$coll2 = $q->execute($coll->getPrimaryKeys());
$this->assertEqual($coll2->count(), $coll->count());
$count = $this->dbh->count();
$coll[0]->Group[0];
$this->assertEqual($count, $this->dbh->count());
}
2007-01-23 19:27:20 +03:00
public function testLoadRelatedForLocalKeyRelation()
{
2007-04-11 23:12:52 +04:00
$coll = $this->connection->query('FROM User');
$this->assertEqual($coll->count(), 8);
$count = $this->dbh->count();
2007-04-11 23:12:52 +04:00
$coll->loadRelated('Email');
$this->assertEqual(($count + 1), $this->dbh->count());
2007-04-11 23:12:52 +04:00
$this->assertEqual($coll[0]->Email->address, 'zYne@example.com');
$this->assertEqual(($count + 1), $this->dbh->count());
2007-04-11 23:12:52 +04:00
$this->assertEqual($coll[2]->Email->address, 'caine@example.com');
2007-04-11 23:12:52 +04:00
$this->assertEqual($coll[3]->Email->address, 'kitano@example.com');
2007-04-11 23:12:52 +04:00
$this->assertEqual($coll[4]->Email->address, 'stallone@example.com');
$this->assertEqual(($count + 1), $this->dbh->count());
2006-08-22 03:20:33 +04:00
$this->connection->clear();
}
2007-01-23 19:27:20 +03:00
public function testLoadRelatedForForeignKey()
{
2006-08-22 03:20:33 +04:00
$coll = $this->connection->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());
2006-08-22 03:20:33 +04:00
$this->connection->clear();
}
2007-01-23 19:27:20 +03:00
public function testCount()
{
2006-08-22 03:20:33 +04:00
$coll = new Doctrine_Collection($this->connection->getTable('User'));
$this->assertEqual($coll->count(), 0);
$coll[0];
$this->assertEqual($coll->count(), 1);
}
2007-01-23 19:27:20 +03:00
public function testExpand()
{
2007-05-26 21:12:55 +04:00
$users = $this->connection->query("FROM User.Phonenumber 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
2007-01-21 21:31:51 +03:00
$this->assertEqual($coll[2]->state(), Doctrine_Record::STATE_PROXY);
2006-04-17 00:38:17 +04:00
2006-04-23 12:12:01 +04:00
2008-03-23 14:30:29 +03:00
$coll->setKeyField('id');
2006-08-22 03:20:33 +04:00
$user = $this->connection->getTable("User")->find(4);
2006-04-19 20:01:36 +04:00
2006-04-17 00:38:17 +04:00
}
2007-01-23 19:27:20 +03:00
public function testGenerator()
{
2006-04-17 00:38:17 +04:00
$coll = new Doctrine_Collection($this->objTable);
2008-03-23 14:30:29 +03:00
$coll->setKeyField('name');
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);
2006-08-22 03:20:33 +04:00
$this->connection->getTable("email")->setAttribute(Doctrine::ATTR_COLL_KEY,"address");
$emails = $this->connection->getTable("email")->findAll();
2006-04-17 00:38:17 +04:00
foreach($emails as $k => $v) {
$this->assertTrue(gettype($k), "string");
}
}
2007-01-23 19:27:20 +03:00
public function testFetchCollectionWithIdAsIndex()
{
$user = new User();
2007-01-21 21:31:51 +03:00
$user->attribute(Doctrine::ATTR_COLL_KEY, 'id');
$users = $user->getTable()->findAll();
$this->assertFalse($users->contains(0));
$this->assertEqual($users->count(), 8);
2007-01-21 21:31:51 +03:00
$this->assertEqual($users[0]->state(), Doctrine_Record::STATE_TCLEAN);
$this->assertEqual($users[4]->state(), Doctrine_Record::STATE_CLEAN);
}
2007-01-23 19:27:20 +03:00
public function testFetchCollectionWithNameAsIndex()
{
$user = new User();
2007-01-21 21:31:51 +03:00
$user->attribute(Doctrine::ATTR_COLL_KEY, 'name');
$users = $user->getTable()->findAll();
$this->assertFalse($users->contains(0));
$this->assertEqual($users->count(), 8);
2007-01-21 21:31:51 +03:00
$this->assertEqual($users[0]->state(), Doctrine_Record::STATE_TCLEAN);
$this->assertEqual($users['zYne']->state(), Doctrine_Record::STATE_CLEAN);
}
2007-01-23 19:27:20 +03:00
public function testFetchMultipleCollections()
{
$this->connection->clear();
$user = new User();
2007-01-21 21:31:51 +03:00
$user->attribute(Doctrine::ATTR_COLL_KEY, 'id');
$phonenumber = new Phonenumber();
2007-01-21 21:31:51 +03:00
$phonenumber->attribute(Doctrine::ATTR_COLL_KEY, 'id');
$q = new Doctrine_Query();
$users = $q->from('User.Phonenumber')->execute();
$this->assertFalse($users->contains(0));
$this->assertEqual($users->count(), 8);
2007-01-21 21:31:51 +03:00
$this->assertEqual($users[0]->state(), Doctrine_Record::STATE_TCLEAN);
$this->assertEqual($users[2]->state(), Doctrine_Record::STATE_TCLEAN);
$this->assertEqual($users[3]->state(), Doctrine_Record::STATE_TCLEAN);
$this->assertEqual($users[4]->state(), Doctrine_Record::STATE_CLEAN);
$this->assertEqual($users[4]->name, 'zYne');
$this->assertEqual($users[4]->Phonenumber[0]->exists(), false);
2007-01-21 21:31:51 +03:00
$this->assertEqual($users[4]->Phonenumber[0]->state(), Doctrine_Record::STATE_TDIRTY);
$this->assertEqual($users[4]->Phonenumber[1]->exists(), false);
2007-01-21 21:31:51 +03:00
$this->assertEqual($users[4]->Phonenumber[2]->state(), Doctrine_Record::STATE_CLEAN);
}
2006-04-14 00:37:28 +04:00
}