. */ /** * Doctrine_Hydrate_TestCase * * @package Doctrine * @author Konsta Vesterinen * @license http://www.opensource.org/licenses/lgpl-license.php LGPL * @category Object Relational Mapping * @link www.phpdoctrine.com * @since 1.0 * @version $Revision$ */ class Doctrine_Hydrate_TestCase extends Doctrine_UnitTestCase { protected $testData1 = array( array( 'e' => array('id' => 1, 'name' => 'zYne'), 'p' => array('id' => 1, 'phonenumber' => '123 123', 'user_id' => 1) ), array( 'e' => array('id' => 2, 'name' => 'John'), 'p' => array('id' => 2, 'phonenumber' => '222 222', 'user_id' => 2) ), array( 'e' => array('id' => 2, 'name' => 'John'), 'p' => array('id' => 3, 'phonenumber' => '343 343', 'user_id' => 2) ), array( 'e' => array('id' => 3, 'name' => 'Arnold'), 'p' => array('id' => 4, 'phonenumber' => '333 333', 'user_id' => 3) ), array( 'e' => array('id' => 4, 'name' => 'Arnold'), 'p' => array('id' => null, 'phonenumber' => null, 'user_id' => null) ) ); public function testExecuteForEmptyAliasMapThrowsException() { $h = new Doctrine_Hydrate_Mock(); try { $h->execute(); $this->fail('Should throw exception'); } catch(Doctrine_Hydrate_Exception $e) { $this->pass(); } } public function testExecuteForEmptyTableAliasMapThrowsException() { $h = new Doctrine_Hydrate_Mock(); $h->setData($this->testData1); $h->setAliasMap(array('u' => array('table' => $this->conn->getTable('User')))); try { $h->execute(); $this->fail('Should throw exception'); } catch(Doctrine_Hydrate_Exception $e) { $this->pass(); } } /** public function testHydrate() { $h = new Doctrine_Hydrate_Mock(); $h->setData($this->testData1); $h->setAliasMap(array('u' => array('table' => $this->conn->getTable('User')), 'p' => array('table' => $this->conn->getTable('Phonenumber'), 'parent' => 'u', 'relation' => $this->conn->getTable('User')->getRelation('Phonenumber'))) ); $h->setTableAliases(array('e' => 'u', 'p' => 'p')); $coll = $h->execute(); $this->assertTrue($coll instanceof Doctrine_Collection2, 'instance of Doctrine_Collection expected'); $this->assertEqual($coll->count(), 4); $count = count($this->dbh); $this->assertEqual($coll[0]->Phonenumber->count(), 1); $this->assertEqual($coll[1]->Phonenumber->count(), 2); $this->assertEqual($coll[2]->Phonenumber->count(), 1); $this->assertEqual($coll[3]->Phonenumber->count(), 0); $this->assertEqual(count($this->dbh), $count); } */ } class Doctrine_Hydrate_Mock extends Doctrine_Hydrate { protected $data; public function setData($data) { $this->data = $data; } public function _fetch($params = array(), $return = Doctrine::FETCH_RECORD) { return $this->data; } }