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

865 lines
29 KiB
PHP
Raw Normal View History

2006-10-13 20:28:40 +04:00
<?php
2007-02-17 15:38:02 +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.com>.
*/
/**
* Doctrine_Record_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.com
* @since 1.0
* @version $Revision$
*/
2007-06-15 01:40:22 +04:00
class Doctrine_Record_TestCase extends Doctrine_UnitTestCase
{
2007-05-17 01:28:33 +04:00
2007-06-15 01:40:22 +04:00
public function prepareTables()
{
$this->tables[] = 'enumTest';
$this->tables[] = 'fieldNameTest';
$this->tables[] = 'GzipTest';
$this->tables[] = 'Book';
2006-10-13 20:28:40 +04:00
parent::prepareTables();
}
2007-06-15 01:40:22 +04:00
public function testIssetForPrimaryKey()
{
2006-10-13 20:28:40 +04:00
$this->assertTrue(isset($this->users[0]->id));
$this->assertTrue(isset($this->users[0]['id']));
$this->assertTrue($this->users[0]->contains('id'));
$user = new User();
$this->assertFalse(isset($user->id));
$this->assertFalse(isset($user['id']));
$this->assertFalse($user->contains('id'));
}
2007-05-17 01:28:33 +04:00
2007-06-15 01:40:22 +04:00
public function testNotNullConstraint()
{
2006-10-13 20:28:40 +04:00
$null = new NotNullTest();
$null->name = null;
$null->type = 1;
try {
$null->save();
$this->fail();
2006-11-08 13:18:15 +03:00
} catch(Exception $e) {
2006-10-13 20:28:40 +04:00
$this->pass();
$this->connection->rollback();
}
}
2007-06-15 01:40:22 +04:00
public function testGzipType()
{
2006-10-13 20:28:40 +04:00
$gzip = new GzipTest();
$gzip->gzip = "compressed";
$this->assertEqual($gzip->gzip, "compressed");
$gzip->save();
$this->assertEqual($gzip->gzip, "compressed");
$gzip->refresh();
$this->assertEqual($gzip->gzip, "compressed");
$this->connection->clear();
$gzip = $gzip->getTable()->find($gzip->id);
$this->assertEqual($gzip->gzip, "compressed");
$gzip->gzip = "compressed 2";
$this->assertEqual($gzip->gzip, "compressed 2");
$gzip->save();
$this->assertEqual($gzip->gzip, "compressed 2");
$gzip->refresh();
$this->assertEqual($gzip->gzip, "compressed 2");
}
2007-06-15 01:40:22 +04:00
public function testDefaultValues()
{
2006-10-13 20:28:40 +04:00
$test = new FieldNameTest;
$this->assertEqual($test->someColumn, 'some string');
$this->assertEqual($test->someEnum, 'php');
$this->assertEqual($test->someArray, array());
$this->assertTrue(is_object($test->someObject));
$this->assertEqual($test->someInt, 11);
}
2007-06-15 01:40:22 +04:00
public function testToArray()
{
2006-10-13 20:28:40 +04:00
$user = new User();
$a = $user->toArray();
$this->assertTrue(is_array($a));
$this->assertTrue(array_key_exists('name', $a));
$this->assertEqual($a['name'], null);
$this->assertTrue(array_key_exists('id', $a));
$this->assertEqual($a['id'], null);
$user->name = 'Someone';
$user->save();
$a = $user->toArray();
$this->assertTrue(is_array($a));
$this->assertTrue(array_key_exists('name', $a));
$this->assertEqual($a['name'], 'Someone');
$this->assertTrue(array_key_exists('id', $a));
$this->assertTrue(is_numeric($a['id']));
$user->refresh();
$a = $user->toArray();
$this->assertTrue(is_array($a));
$this->assertTrue(array_key_exists('name', $a));
$this->assertEqual($a['name'], 'Someone');
$this->assertTrue(array_key_exists('id', $a));
$this->assertTrue(is_numeric($a['id']));
$this->connection->clear();
$user = $user->getTable()->find($user->id);
$a = $user->toArray();
$this->assertTrue(is_array($a));
$this->assertTrue(array_key_exists('name', $a));
$this->assertEqual($a['name'], 'Someone');
$this->assertTrue(array_key_exists('id', $a));
$this->assertTrue(is_numeric($a['id']));
}
2007-06-15 01:40:22 +04:00
public function testReferences2()
{
2006-10-13 20:28:40 +04:00
$user = new User();
$user->Phonenumber[0]->phonenumber = '123 123';
2007-05-24 01:02:19 +04:00
$ref = $user->Phonenumber[0]->entity_id;
2006-10-13 20:28:40 +04:00
2007-05-24 01:02:19 +04:00
$this->assertEqual($ref->getOid(), $user->getOid());
2006-10-13 20:28:40 +04:00
}
2007-05-24 01:02:19 +04:00
2007-06-15 01:40:22 +04:00
public function testUpdatingWithNullValue()
{
2006-10-13 20:28:40 +04:00
$user = $this->connection->getTable('User')->find(5);
$user->name = null;
$this->assertEqual($user->name, null);
$user->save();
$this->assertEqual($user->name, null);
2007-05-24 01:02:19 +04:00
2006-10-13 20:28:40 +04:00
$this->connection->clear();
$user = $this->connection->getTable('User')->find(5);
$this->assertEqual($user->name, null);
}
2007-05-24 01:02:19 +04:00
2007-06-15 01:40:22 +04:00
public function testSerialize()
{
2006-10-13 20:28:40 +04:00
$user = $this->connection->getTable("User")->find(4);
$str = serialize($user);
$user2 = unserialize($str);
$this->assertTrue($user2 instanceof User);
2007-05-24 01:02:19 +04:00
$this->assertEqual($user2->obtainIdentifier(), $user->obtainIdentifier());
2006-10-13 20:28:40 +04:00
}
2007-06-15 01:40:22 +04:00
public function testCallback()
{
2006-10-13 20:28:40 +04:00
$user = new User();
$user->name = " zYne ";
$user->call('trim', 'name');
$this->assertEqual($user->name, 'zYne');
$user->call('substr', 'name', 0, 1);
$this->assertEqual($user->name, 'z');
}
2007-05-24 01:02:19 +04:00
2006-10-13 20:28:40 +04:00
public function testCompositePK() {
$record = new EntityReference();
$this->assertEqual($record->getTable()->getIdentifier(), array("entity1","entity2"));
$this->assertEqual($record->getTable()->getIdentifierType(), Doctrine_Identifier::COMPOSITE);
$this->assertEqual($record->obtainIdentifier(), array("entity1" => null, "entity2" => null));
2007-01-21 21:31:51 +03:00
$this->assertEqual($record->state(), Doctrine_Record::STATE_TCLEAN);
2006-10-13 20:28:40 +04:00
$record->entity1 = 3;
$record->entity2 = 4;
$this->assertEqual($record->entity2, 4);
$this->assertEqual($record->entity1, 3);
2007-01-21 21:31:51 +03:00
$this->assertEqual($record->state(), Doctrine_Record::STATE_TDIRTY);
2006-10-13 20:28:40 +04:00
$this->assertEqual($record->obtainIdentifier(), array("entity1" => null, "entity2" => null));
$record->save();
2007-01-21 21:31:51 +03:00
$this->assertEqual($record->state(), Doctrine_Record::STATE_CLEAN);
2006-10-13 20:28:40 +04:00
$this->assertEqual($record->entity2, 4);
$this->assertEqual($record->entity1, 3);
$this->assertEqual($record->obtainIdentifier(), array("entity1" => 3, "entity2" => 4));
$record = $record->getTable()->find($record->obtainIdentifier());
2007-01-21 21:31:51 +03:00
$this->assertEqual($record->state(), Doctrine_Record::STATE_CLEAN);
2006-10-13 20:28:40 +04:00
$this->assertEqual($record->entity2, 4);
$this->assertEqual($record->entity1, 3);
$this->assertEqual($record->obtainIdentifier(), array("entity1" => 3, "entity2" => 4));
$record->entity2 = 5;
$record->entity1 = 2;
2007-01-21 21:31:51 +03:00
$this->assertEqual($record->state(), Doctrine_Record::STATE_DIRTY);
2006-10-13 20:28:40 +04:00
$this->assertEqual($record->entity2, 5);
$this->assertEqual($record->entity1, 2);
$this->assertEqual($record->obtainIdentifier(), array("entity1" => 3, "entity2" => 4));
$record->save();
2007-01-21 21:31:51 +03:00
$this->assertEqual($record->state(), Doctrine_Record::STATE_CLEAN);
2006-10-13 20:28:40 +04:00
$this->assertEqual($record->entity2, 5);
$this->assertEqual($record->entity1, 2);
$this->assertEqual($record->obtainIdentifier(), array("entity1" => 2, "entity2" => 5));
$record = $record->getTable()->find($record->obtainIdentifier());
2007-01-21 21:31:51 +03:00
$this->assertEqual($record->state(), Doctrine_Record::STATE_CLEAN);
2006-10-13 20:28:40 +04:00
$this->assertEqual($record->entity2, 5);
$this->assertEqual($record->entity1, 2);
$this->assertEqual($record->obtainIdentifier(), array("entity1" => 2, "entity2" => 5));
$record->refresh();
2007-01-21 21:31:51 +03:00
$this->assertEqual($record->state(), Doctrine_Record::STATE_CLEAN);
2006-10-13 20:28:40 +04:00
$this->assertEqual($record->entity2, 5);
$this->assertEqual($record->entity1, 2);
$this->assertEqual($record->obtainIdentifier(), array("entity1" => 2, "entity2" => 5));
$record = new EntityReference();
$record->entity2 = 6;
$record->entity1 = 2;
$record->save();
2007-05-24 01:02:19 +04:00
$coll = $this->connection->query("FROM EntityReference");
2006-10-13 20:28:40 +04:00
$this->assertTrue($coll[0] instanceof EntityReference);
2007-01-21 21:31:51 +03:00
$this->assertEqual($coll[0]->state(), Doctrine_Record::STATE_CLEAN);
2006-10-13 20:28:40 +04:00
$this->assertTrue($coll[1] instanceof EntityReference);
2007-01-21 21:31:51 +03:00
$this->assertEqual($coll[1]->state(), Doctrine_Record::STATE_CLEAN);
2006-10-13 20:28:40 +04:00
2007-05-24 01:02:19 +04:00
$coll = $this->connection->query("FROM EntityReference WHERE EntityReference.entity2 = 5");
2006-10-13 20:28:40 +04:00
$this->assertEqual($coll->count(), 1);
}
2007-06-15 01:40:22 +04:00
public function testManyToManyTreeStructure()
{
2006-10-13 20:28:40 +04:00
$task = $this->connection->create("Task");
$task->name = "Task 1";
$task->ResourceAlias[0]->name = "Resource 1";
$this->connection->flush();
$this->assertTrue($task->ResourceAlias[0] instanceof Resource);
$this->assertEqual($task->ResourceAlias[0]->name, "Resource 1");
$this->assertEqual($this->dbh->query("SELECT COUNT(*) FROM assignment")->fetch(PDO::FETCH_NUM),array(1));
$task = new Task();
$this->assertTrue($task instanceof Task);
2007-01-21 21:31:51 +03:00
$this->assertEqual($task->state(), Doctrine_Record::STATE_TCLEAN);
2006-10-13 20:28:40 +04:00
$this->assertTrue($task->Subtask[0] instanceof Task);
2007-01-21 21:31:51 +03:00
//$this->assertEqual($task->Subtask[0]->state(), Doctrine_Record::STATE_TDIRTY);
2006-10-13 20:28:40 +04:00
$this->assertTrue($task->ResourceAlias[0] instanceof Resource);
2007-01-21 21:31:51 +03:00
$this->assertEqual($task->ResourceAlias[0]->state(), Doctrine_Record::STATE_TCLEAN);
2006-10-13 20:28:40 +04:00
$task->name = "Task 1";
$task->ResourceAlias[0]->name = "Resource 1";
$task->Subtask[0]->name = "Subtask 1";
$this->assertEqual($task->name, "Task 1");
$this->assertEqual($task->ResourceAlias[0]->name, "Resource 1");
$this->assertEqual($task->ResourceAlias->count(), 1);
$this->assertEqual($task->Subtask[0]->name, "Subtask 1");
$this->connection->flush();
$task = $task->getTable()->find($task->obtainIdentifier());
$this->assertEqual($task->name, "Task 1");
$this->assertEqual($task->ResourceAlias[0]->name, "Resource 1");
$this->assertEqual($task->ResourceAlias->count(), 1);
$this->assertEqual($task->Subtask[0]->name, "Subtask 1");
}
2007-06-15 01:40:22 +04:00
public function testOne2OneForeign()
{
2006-10-13 20:28:40 +04:00
$user = new User();
$user->name = "Richard Linklater";
$account = $user->Account;
$account->amount = 1000;
$this->assertTrue($account instanceof Account);
2007-01-21 21:31:51 +03:00
$this->assertEqual($account->state(), Doctrine_Record::STATE_TDIRTY);
2007-05-24 01:02:19 +04:00
$this->assertEqual($account->entity_id->getOid(), $user->getOid());
2006-10-13 20:28:40 +04:00
$this->assertEqual($account->amount, 1000);
$this->assertEqual($user->name, "Richard Linklater");
$user->save();
$user->refresh();
$account = $user->Account;
$this->assertTrue($account instanceof Account);
2007-01-21 21:31:51 +03:00
$this->assertEqual($account->state(), Doctrine_Record::STATE_CLEAN);
2006-10-13 20:28:40 +04:00
$this->assertEqual($account->entity_id, $user->id);
$this->assertEqual($account->amount, 1000);
$this->assertEqual($user->name, "Richard Linklater");
$user = new User();
$user->name = "John Rambo";
$account = $user->Account;
$account->amount = 2000;
$this->assertEqual($account->getTable()->getColumnNames(), array("id","entity_id","amount"));
$this->connection->flush();
2007-01-21 21:31:51 +03:00
$this->assertEqual($user->state(), Doctrine_Record::STATE_CLEAN);
2006-10-13 20:28:40 +04:00
$this->assertTrue($account instanceof Account);
$this->assertEqual($account->getTable()->getColumnNames(), array("id","entity_id","amount"));
$this->assertEqual($account->entity_id, $user->id);
$this->assertEqual($account->amount, 2000);
$user = $user->getTable()->find($user->id);
2007-01-21 21:31:51 +03:00
$this->assertEqual($user->state(), Doctrine_Record::STATE_CLEAN);
2006-10-13 20:28:40 +04:00
$account = $user->Account;
$this->assertTrue($account instanceof Account);
2007-01-21 21:31:51 +03:00
$this->assertEqual($account->state(), Doctrine_Record::STATE_CLEAN);
2006-10-13 20:28:40 +04:00
$this->assertEqual($account->getTable()->getColumnNames(), array("id","entity_id","amount"));
$this->assertEqual($account->entity_id, $user->id);
$this->assertEqual($account->amount, 2000);
$this->assertEqual($user->name, "John Rambo");
}
2007-06-15 01:40:22 +04:00
public function testGet()
{
2006-10-13 20:28:40 +04:00
$user = new User();
$user->name = "Jack Daniels";
$this->assertEqual($user->name, "Jack Daniels");
$this->assertEqual($user->created, null);
$this->assertEqual($user->updated, null);
$user->save();
$id = $user->obtainIdentifier();
$user = $user->getTable()->find($id);
$this->assertEqual($user->name, "Jack Daniels");
$this->assertEqual($user->created, null);
$this->assertEqual($user->updated, null);
$this->assertEqual($user->getTable()->getData(), array());
}
2007-06-15 01:40:22 +04:00
public function testNewOperator()
{
2006-10-13 20:28:40 +04:00
$table = $this->connection->getTable("User");
$this->assertEqual($this->connection->getTable("User")->getData(), array());
$user = new User();
2007-01-21 21:31:51 +03:00
$this->assertEqual(Doctrine_Lib::getRecordStateAsString($user->state()), Doctrine_Lib::getRecordStateAsString(Doctrine_Record::STATE_TCLEAN));
2006-10-13 20:28:40 +04:00
$user->name = "John Locke";
$this->assertTrue($user->name,"John Locke");
2007-01-21 21:31:51 +03:00
$this->assertTrue($user->state() == Doctrine_Record::STATE_TDIRTY);
2006-10-13 20:28:40 +04:00
$user->save();
2007-01-21 21:31:51 +03:00
$this->assertTrue($user->state() == Doctrine_Record::STATE_CLEAN);
2006-10-13 20:28:40 +04:00
$this->assertTrue($user->name,"John Locke");
}
2007-06-15 01:40:22 +04:00
public function testTreeStructure()
{
2006-10-13 20:28:40 +04:00
$e = new Element();
$fk = $e->getTable()->getRelation("Child");
$this->assertTrue($fk instanceof Doctrine_Relation_ForeignKey);
$this->assertEqual($fk->getType(), Doctrine_Relation::MANY_AGGREGATE);
$this->assertEqual($fk->getForeign(), "parent_id");
$this->assertEqual($fk->getLocal(), "id");
$e->name = "parent";
$e->Child[0]->name = "child 1";
$e->Child[1]->name = "child 2";
$e->Child[1]->Child[0]->name = "child 1's child 1";
$e->Child[1]->Child[1]->name = "child 1's child 1";
$this->assertEqual($e->name,"parent");
$this->assertEqual($e->Child[0]->name,"child 1");
$this->assertEqual($e->Child[1]->name,"child 2");
$this->assertEqual($e->Child[1]->Child[0]->name,"child 1's child 1");
$this->assertEqual($e->Child[1]->Child[1]->name,"child 1's child 1");
$this->connection->flush();
2007-05-24 01:02:19 +04:00
$elements = $this->connection->query("FROM Element");
2006-10-13 20:28:40 +04:00
$this->assertEqual($elements->count(), 5);
$e = $e->getTable()->find(1);
$this->assertEqual($e->name,"parent");
$this->assertEqual($e->Child[0]->name,"child 1");
$c = $e->getTable()->find(2);
$this->assertEqual($c->name, "child 1");
$this->assertEqual($e->Child[0]->parent_id, 1);
$this->assertEqual($e->Child[0]->Parent->obtainIdentifier(), $e->obtainIdentifier());
$this->assertEqual($e->Child[1]->parent_id, 1);
$this->assertEqual($e->Child[1]->Child[0]->name,"child 1's child 1");
$this->assertEqual($e->Child[1]->Child[1]->name,"child 1's child 1");
$this->assertEqual($e->Child[1]->Child[0]->parent_id, 3);
$this->assertEqual($e->Child[1]->Child[1]->parent_id, 3);
}
2007-06-15 01:40:22 +04:00
public function testUniqueKeyComponent()
{
2006-10-13 20:28:40 +04:00
$e = new Error();
2007-05-24 01:02:19 +04:00
$e->message = 'user error';
2006-10-13 20:28:40 +04:00
$e->file_md5 = md5(0);
$e->code = 1;
// ADDING NEW RECORD
$this->assertEqual($e->code,1);
$this->assertEqual($e->file_md5, md5(0));
2007-05-24 01:02:19 +04:00
$this->assertEqual($e->message, 'user error');
2006-10-13 20:28:40 +04:00
$e2 = new Error();
2007-05-24 01:02:19 +04:00
$e2->message = 'user error2';
2006-10-13 20:28:40 +04:00
$e2->file_md5 = md5(1);
$e2->code = 2;
$this->assertEqual($e2->code,2);
$this->assertEqual($e2->file_md5, md5(1));
2007-05-24 01:02:19 +04:00
$this->assertEqual($e2->message, 'user error2');
2006-10-13 20:28:40 +04:00
2007-05-24 01:02:19 +04:00
$fk = $e->getTable()->getRelation('Description');
2006-10-13 20:28:40 +04:00
$this->assertTrue($fk instanceof Doctrine_Relation_ForeignKey);
2007-05-24 01:02:19 +04:00
$this->assertEqual($fk->getLocal(),'file_md5');
$this->assertEqual($fk->getForeign(),'file_md5');
2006-10-13 20:28:40 +04:00
$this->assertTrue($fk->getTable() instanceof Doctrine_Table);
2007-05-24 01:02:19 +04:00
$e->Description[0]->description = 'This is the 1st description';
$e->Description[1]->description = 'This is the 2nd description';
$this->assertEqual($e->Description[0]->description, 'This is the 1st description');
$this->assertEqual($e->Description[1]->description, 'This is the 2nd description');
2006-10-13 20:28:40 +04:00
$this->assertEqual($e->Description[0]->file_md5, $e->file_md5);
$this->assertEqual($e->Description[1]->file_md5, $e->file_md5);
2007-05-24 01:02:19 +04:00
2006-10-13 20:28:40 +04:00
$this->assertEqual($e2->Description[0]->description, null);
$this->assertEqual($e2->Description[1]->description, null);
$this->assertEqual($e2->Description[0]->file_md5, $e2->file_md5);
$this->assertEqual($e2->Description[1]->file_md5, $e2->file_md5);
$e->save();
2007-05-24 01:02:19 +04:00
$coll = $this->connection->query('FROM Error');
2006-10-13 20:28:40 +04:00
$e = $coll[0];
$this->assertEqual($e->code,1);
$this->assertEqual($e->file_md5, md5(0));
2007-05-24 01:02:19 +04:00
$this->assertEqual($e->message, 'user error');
2006-10-13 20:28:40 +04:00
$this->assertTrue($e->Description instanceof Doctrine_Collection);
$this->assertTrue($e->Description[0] instanceof Description);
$this->assertTrue($e->Description[1] instanceof Description);
2007-05-24 01:02:19 +04:00
$this->assertEqual($e->Description[0]->description, 'This is the 1st description');
$this->assertEqual($e->Description[1]->description, 'This is the 2nd description');
2006-10-13 20:28:40 +04:00
// UPDATING
$e->code = 2;
2007-05-24 01:02:19 +04:00
$e->message = 'changed message';
$e->Description[0]->description = '1st changed description';
$e->Description[1]->description = '2nd changed description';
2006-10-13 20:28:40 +04:00
$this->assertEqual($e->code,2);
2007-05-24 01:02:19 +04:00
$this->assertEqual($e->message,'changed message');
$this->assertEqual($e->Description[0]->description, '1st changed description');
$this->assertEqual($e->Description[1]->description, '2nd changed description');
2006-10-13 20:28:40 +04:00
$e->save();
$this->assertEqual($e->code,2);
2007-05-24 01:02:19 +04:00
$this->assertEqual($e->message,'changed message');
$this->assertEqual($e->Description[0]->description, '1st changed description');
$this->assertEqual($e->Description[1]->description, '2nd changed description');
2006-10-13 20:28:40 +04:00
}
2007-06-15 01:40:22 +04:00
public function testInsert()
{
2006-10-13 20:28:40 +04:00
$user = new User();
$user->name = "John Locke";
$user->save();
$this->assertTrue(is_numeric($user->id) && $user->id > 0);
$this->assertTrue($user->getModified() == array());
2007-01-21 21:31:51 +03:00
$this->assertTrue($user->state() == Doctrine_Record::STATE_CLEAN);
2006-10-13 20:28:40 +04:00
$user->delete();
2007-01-21 21:31:51 +03:00
$this->assertEqual($user->state(), Doctrine_Record::STATE_TCLEAN);
2006-10-13 20:28:40 +04:00
}
2007-06-15 01:40:22 +04:00
public function testUpdate()
{
2006-10-13 20:28:40 +04:00
$user = $this->connection->getTable("User")->find(4);
$user->set("name","Jack Daniels",true);
$user->save();
//print $this->old->name;
$this->assertEqual($user->getModified(), array());
$this->assertEqual($user->name, "Jack Daniels");
}
2006-10-16 20:17:07 +04:00
2007-06-15 01:40:22 +04:00
public function testCopy()
{
2006-10-13 20:28:40 +04:00
$user = $this->connection->getTable("User")->find(4);
$new = $user->copy();
2006-10-16 20:17:07 +04:00
2006-10-13 20:28:40 +04:00
$this->assertTrue($new instanceof Doctrine_Record);
2007-01-21 21:31:51 +03:00
$this->assertTrue($new->state() == Doctrine_Record::STATE_TDIRTY);
2006-10-16 20:17:07 +04:00
$new = $user->copy();
2006-10-16 20:17:07 +04:00
$new->save();
$this->assertEqual($user->name, $new->name);
2006-10-16 20:17:07 +04:00
$this->assertTrue(is_numeric($new->id) && $new->id > 0);
$new->refresh();
$this->assertEqual($user->name, $new->name);
$this->assertTrue(is_numeric($new->id) && $new->id > 0);
}
2007-06-15 01:40:22 +04:00
public function testCopyAndModify()
{
$user = $this->connection->getTable("User")->find(4);
$new = $user->copy();
$this->assertTrue($new instanceof Doctrine_Record);
2007-01-21 21:31:51 +03:00
$this->assertTrue($new->state() == Doctrine_Record::STATE_TDIRTY);
$new->loginname = 'jackd';
$this->assertEqual($user->name, $new->name);
$this->assertEqual($new->loginname, 'jackd');
$new->save();
$this->assertTrue(is_numeric($new->id) && $new->id > 0);
$new->refresh();
$this->assertEqual($user->name, $new->name);
$this->assertEqual($new->loginname, 'jackd');
2006-10-13 20:28:40 +04:00
}
2007-05-17 01:28:33 +04:00
public function testReferences()
{
2007-05-24 01:02:19 +04:00
$user = $this->connection->getTable('User')->find(5);
2006-10-13 20:28:40 +04:00
$this->assertTrue($user->Phonenumber instanceof Doctrine_Collection);
$this->assertEqual($user->Phonenumber->count(), 3);
2007-05-24 01:02:19 +04:00
$coll = new Doctrine_Collection('Phonenumber');
2006-10-13 20:28:40 +04:00
$user->Phonenumber = $coll;
$this->assertEqual($user->Phonenumber->count(), 0);
$user->save();
$user->getTable()->clear();
$user = $this->objTable->find(5);
$this->assertEqual($user->Phonenumber->count(), 0);
2007-05-24 01:02:19 +04:00
$this->assertEqual(get_class($user->Phonenumber), 'Doctrine_Collection');
2006-10-13 20:28:40 +04:00
$user->Phonenumber[0]->phonenumber;
$this->assertEqual($user->Phonenumber->count(), 1);
// ADDING REFERENCES
$user->Phonenumber[0]->phonenumber = "123 123";
$this->assertEqual($user->Phonenumber->count(), 1);
$user->Phonenumber[1]->phonenumber = "123 123";
$this->assertEqual($user->Phonenumber->count(), 2);
$user->save();
$this->assertEqual($user->Phonenumber->count(), 2);
unset($user);
$user = $this->objTable->find(5);
$this->assertEqual($user->Phonenumber->count(), 2);
$user->Phonenumber[3]->phonenumber = "123 123";
$user->save();
$this->assertEqual($user->Phonenumber->count(), 3);
unset($user);
$user = $this->objTable->find(5);
$this->assertEqual($user->Phonenumber->count(), 3);
// DELETING REFERENCES
$user->Phonenumber->delete();
$this->assertEqual($user->Phonenumber->count(), 0);
unset($user);
$user = $this->objTable->find(5);
$this->assertEqual($user->Phonenumber->count(), 0);
// ADDING REFERENCES WITH STRING KEYS
$user->Phonenumber["home"]->phonenumber = "123 123";
$user->Phonenumber["work"]->phonenumber = "444 444";
$user->save();
$this->assertEqual($user->Phonenumber->count(), 2);
unset($user);
$user = $this->objTable->find(5);
$this->assertEqual($user->Phonenumber->count(), 2);
// REPLACING ONE-TO-MANY REFERENCE
unset($coll);
2007-05-24 01:02:19 +04:00
$coll = new Doctrine_Collection('Phonenumber');
2006-10-13 20:28:40 +04:00
$coll[0]->phonenumber = "123 123";
$coll["home"]->phonenumber = "444 444";
$coll["work"]->phonenumber = "444 444";
$user->Phonenumber = $coll;
$user->save();
$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);
$this->assertEqual($user->Email->address, "drinker@drinkmore.info");
$user->save();
$this->assertTrue($user->Email instanceof Email);
$this->assertEqual($user->Email->address, "drinker@drinkmore.info");
$this->assertEqual($user->Email->id, $user->email_id);
$user = $this->objTable->find(5);
$this->assertTrue($user->Email instanceof Email);
$this->assertEqual($user->Email->id, $user->email_id);
2007-01-21 21:31:51 +03:00
$this->assertEqual($user->Email->state(), Doctrine_Record::STATE_CLEAN);
2006-10-13 20:28:40 +04:00
$this->assertEqual($user->Email->address, "drinker@drinkmore.info");
$id = $user->Email->id;
// REPLACING ONE-TO-ONE REFERENCES
$email = $this->connection->create("Email");
$email->address = "absolutist@nottodrink.com";
$user->Email = $email;
$this->assertTrue($user->Email instanceof Email);
$this->assertEqual($user->Email->address, "absolutist@nottodrink.com");
$user->save();
unset($user);
$user = $this->objTable->find(5);
$this->assertTrue($user->Email instanceof Email);
$this->assertEqual($user->Email->address, "absolutist@nottodrink.com");
$emails = $this->connection->query("FROM Email WHERE Email.id = $id");
//$this->assertEqual(count($emails),0);
}
2007-06-15 01:40:22 +04:00
public function testDeleteReference()
{
2006-10-13 20:28:40 +04:00
$user = $this->objTable->find(5);
$int = $user->Phonenumber->delete();
$this->assertTrue($user->Phonenumber->count() == 0);
}
2007-05-24 01:02:19 +04:00
2007-06-15 01:40:22 +04:00
public function testSaveAssociations()
{
2006-10-13 20:28:40 +04:00
$user = $this->objTable->find(5);
$gf = $this->connection->getTable("Group");
$this->assertTrue($user->Group instanceof Doctrine_Collection);
// ADDING ASSOCIATED REFERENCES
$record = $gf->find(1);
$record2 = $gf->find(2);
2007-05-24 01:02:19 +04:00
$user->Group[1] = $record;
$user->Group[2] = $record2;
2006-10-13 20:28:40 +04:00
2007-05-24 01:02:19 +04:00
$this->assertTrue($user->Group->count() == 3);
2006-10-13 20:28:40 +04:00
$user->save();
2007-05-24 01:02:19 +04:00
$coll = $user->Group;
2006-10-13 20:28:40 +04:00
// UNSETTING ASSOCIATED REFERENCES
unset($user);
$user = $this->objTable->find(5);
2007-05-24 01:02:19 +04:00
$this->assertTrue($user->Group->count() == 3);
unset($user->Group[1]);
2006-10-13 20:28:40 +04:00
$this->assertTrue($user->Group->count() == 2);
2007-05-24 01:02:19 +04:00
unset($user->Group[2]);
2006-10-13 20:28:40 +04:00
$this->assertTrue($user->Group->count() == 1);
2007-05-24 01:02:19 +04:00
2006-10-13 20:28:40 +04:00
$user->save();
2007-05-24 01:02:19 +04:00
$this->assertTrue($user->Group->count() == 1);
2006-10-13 20:28:40 +04:00
unset($user);
// CHECKING THE PERSISTENCE OF UNSET ASSOCIATED REFERENCES
2007-05-24 01:02:19 +04:00
$this->connection->clear();
2006-10-13 20:28:40 +04:00
$user = $this->objTable->find(5);
2007-05-24 01:02:19 +04:00
$this->assertEqual($user->Group->count(), 1);
2006-10-13 20:28:40 +04:00
// REPLACING OLD ASSOCIATED REFERENCE
2007-05-24 01:02:19 +04:00
$user->Group[1] = $record;
2006-10-13 20:28:40 +04:00
$user->save();
2007-05-24 01:02:19 +04:00
$user->Group[1] = $record2;
2006-10-13 20:28:40 +04:00
$user->save();
2007-05-24 01:02:19 +04:00
$this->assertEqual($user->Group->count(), 2);
$this->assertEqual($user->Group[1]->obtainIdentifier(), $record2->obtainIdentifier());
$this->assertFalse($user->Group[1]->obtainIdentifier() == $record->obtainIdentifier());
2006-10-13 20:28:40 +04:00
$user->Group[0] = $record;
2007-05-24 01:02:19 +04:00
$record = $gf->find(3);
$user->Group[1] = $record;
2006-10-13 20:28:40 +04:00
$user->save();
$this->assertEqual($user->Group->count(), 2);
$user = $this->objTable->find(5);
$this->assertEqual($user->Group->count(), 2);
$user->Group = new Doctrine_Collection($gf);
$user->save();
$this->assertEqual($user->Group->count(), 0);
$user = $this->objTable->find(5);
$this->assertEqual($user->Group->count(), 0);
// ACCESSING ASSOCIATION OBJECT PROPERTIES
$user = new User();
$this->assertTrue($user->getTable()->getRelation("Groupuser") instanceof Doctrine_Relation_ForeignKey);
2007-05-24 01:02:19 +04:00
2006-10-13 20:28:40 +04:00
$this->assertTrue($user->Groupuser instanceof Doctrine_Collection);
$this->assertTrue($user->Groupuser[0] instanceof Groupuser);
$user->name = "Jack Daniels";
$user->Group[0]->name = "Group #1";
$user->Group[1]->name = "Group #2";
$t1 = time();
$t2 = time();
$user->Groupuser[0]->added = $t1;
$user->Groupuser[1]->added = $t2;
$this->assertEqual($user->Groupuser[0]->added, $t1);
$this->assertEqual($user->Groupuser[1]->added, $t2);
$user->save();
$user->refresh();
$this->assertEqual($user->Groupuser[0]->added, $t1);
$this->assertEqual($user->Groupuser[1]->added, $t2);
2007-05-24 01:02:19 +04:00
2006-10-13 20:28:40 +04:00
}
2007-05-17 01:28:33 +04:00
public function testCount()
{
2006-10-13 20:28:40 +04:00
$user = $this->connection->getTable("User")->find(4);
$this->assertTrue(is_integer($user->count()));
}
2007-05-17 01:28:33 +04:00
public function testGetReference()
{
2006-10-13 20:28:40 +04:00
$user = $this->connection->getTable("User")->find(4);
$this->assertTrue($user->Email instanceof Doctrine_Record);
$this->assertTrue($user->Phonenumber instanceof Doctrine_Collection);
$this->assertTrue($user->Group instanceof Doctrine_Collection);
$this->assertTrue($user->Phonenumber->count() == 1);
}
2007-05-17 01:28:33 +04:00
public function testGetIterator()
{
2006-10-13 20:28:40 +04:00
$user = $this->connection->getTable("User")->find(4);
$this->assertTrue($user->getIterator() instanceof ArrayIterator);
}
}
?>