1
0
mirror of synced 2025-01-18 06:21:40 +03:00
doctrine2/tests/BatchIteratorTestCase.php

61 lines
1.9 KiB
PHP
Raw Normal View History

2006-04-13 20:37:28 +00:00
<?php
require_once("UnitTestCase.php");
2006-04-13 20:37:28 +00:00
class Doctrine_BatchIteratorTestCase extends Doctrine_UnitTestCase {
2006-08-08 09:07:55 +00:00
public function prepareTables() {
$this->tables = array("Entity", "User","Group","Address","Phonenumber");
parent::prepareTables();
}
2006-04-13 20:37:28 +00:00
public function testIterator() {
$graph = new Doctrine_Query($this->session);
2006-04-13 20:37:28 +00:00
$entities = $graph->query("FROM Entity");
$i = 0;
foreach($entities as $entity) {
2006-04-14 10:20:19 +00:00
$this->assertEqual(gettype($entity->name),"string");
2006-04-13 20:37:28 +00:00
$i++;
}
$this->assertTrue($i == $entities->count());
2006-04-16 21:23:38 +00:00
$user = $graph->query("FROM User");
foreach($user[1]->Group as $group) {
2006-04-16 22:17:23 +00:00
$this->assertTrue(is_string($group->name));
}
$user = new User();
$user->name = "tester";
$user->Address[0]->address = "street 1";
$user->Address[1]->address = "street 2";
$this->assertEqual($user->name, "tester");
$this->assertEqual($user->Address[0]->address, "street 1");
$this->assertEqual($user->Address[1]->address, "street 2");
foreach($user->Address as $address) {
$a[] = $address->address;
}
$this->assertEqual($a, array("street 1", "street 2"));
$user->save();
$user = $user->getTable()->find($user->getID());
$this->assertEqual($user->name, "tester");
$this->assertEqual($user->Address[0]->address, "street 1");
$this->assertEqual($user->Address[1]->address, "street 2");
$user = $user->getTable()->find($user->getID());
$a = array();
foreach($user->Address as $address) {
$a[] = $address->address;
}
$this->assertEqual($a, array("street 1", "street 2"));
$user = $graph->query("FROM User");
2006-04-13 20:37:28 +00:00
}
2006-04-16 21:23:38 +00:00
2006-04-13 20:37:28 +00:00
}
?>