1
0
mirror of synced 2024-12-13 14:56:01 +03:00
doctrine2/tests/HydrateTestCase.php

120 lines
4.8 KiB
PHP
Raw Normal View History

2007-05-10 23:27:20 +04:00
<?php
/*
* $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>.
*/
/**
2007-05-13 03:00:25 +04:00
* Doctrine_Hydrate_TestCase
2007-05-10 23:27:20 +04:00
*
* @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-05-13 03:00:25 +04:00
class Doctrine_Hydrate_TestCase extends Doctrine_UnitTestCase
2007-05-10 23:27:20 +04:00
{
2007-05-11 01:31:35 +04:00
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)
),
2007-05-11 22:58:50 +04:00
array(
'e' => array('id' => 2, 'name' => 'John'),
'p' => array('id' => 3, 'phonenumber' => '343 343', 'user_id' => 2)
),
2007-05-11 01:31:35 +04:00
array(
'e' => array('id' => 3, 'name' => 'Arnold'),
2007-05-11 22:58:50 +04:00
'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)
2007-05-11 01:31:35 +04:00
)
);
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();
}
}
2007-05-15 18:36:07 +04:00
/**
2007-05-10 23:27:20 +04:00
public function testHydrate()
{
2007-05-11 00:09:32 +04:00
$h = new Doctrine_Hydrate_Mock();
2007-05-11 01:31:35 +04:00
$h->setData($this->testData1);
2007-05-11 22:58:50 +04:00
$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);
2007-05-11 00:09:32 +04:00
}
2007-05-15 18:36:07 +04:00
*/
2007-05-11 00:09:32 +04:00
}
2007-05-16 23:20:55 +04:00
class Doctrine_Hydrate_Mock extends Doctrine_Hydrate
2007-05-11 00:09:32 +04:00
{
protected $data;
public function setData($data)
{
$this->data = $data;
}
public function _fetch($params = array(), $return = Doctrine::FETCH_RECORD)
{
return $this->data;
2007-05-10 23:49:05 +04:00
}
2007-05-10 23:27:20 +04:00
}