From 66fb71acdd1978c4b4d9a1ce24a29c1ae9ae9672 Mon Sep 17 00:00:00 2001 From: romanb Date: Sat, 12 Apr 2008 21:35:21 +0000 Subject: [PATCH] Started playing with isolated hydration tests. --- tests/Orm/AllTests.php | 4 + tests/Orm/Component/AllTests.php | 4 +- tests/Orm/Hydration/AllTests.php | 30 +++++++ tests/Orm/Hydration/BasicHydrationTest.php | 78 +++++++++++++++++++ .../mocks/Doctrine_HydratorMockStatement.php | 62 +++++++++++++++ 5 files changed, 176 insertions(+), 2 deletions(-) create mode 100644 tests/Orm/Hydration/AllTests.php create mode 100644 tests/Orm/Hydration/BasicHydrationTest.php create mode 100644 tests/lib/mocks/Doctrine_HydratorMockStatement.php diff --git a/tests/Orm/AllTests.php b/tests/Orm/AllTests.php index 97284c8b7..467ee6e97 100644 --- a/tests/Orm/AllTests.php +++ b/tests/Orm/AllTests.php @@ -7,7 +7,10 @@ require_once 'lib/DoctrineTestInit.php'; // Suites require_once 'Orm/Component/AllTests.php'; +require_once 'Orm/Hydration/AllTests.php'; require_once 'Orm/Ticket/AllTests.php'; + +// Tests require_once 'Orm/UnitOfWorkTestCase.php'; class Orm_AllTests @@ -25,6 +28,7 @@ class Orm_AllTests //$suite->addTestSuite('Orm_ConfigurableTestCase'); $suite->addTest(Orm_Component_AllTests::suite()); + $suite->addTest(Orm_Hydration_AllTests::suite()); $suite->addTest(Orm_Ticket_AllTests::suite()); return $suite; diff --git a/tests/Orm/Component/AllTests.php b/tests/Orm/Component/AllTests.php index 442c02c83..fe9655e0e 100644 --- a/tests/Orm/Component/AllTests.php +++ b/tests/Orm/Component/AllTests.php @@ -1,6 +1,6 @@ addTestSuite('Orm_Hydration_BasicHydrationTest'); + + return $suite; + } +} + +if (PHPUnit_MAIN_METHOD == 'Orm_Hydration_AllTests::main') { + Orm_Hydration_AllTests::main(); +} diff --git a/tests/Orm/Hydration/BasicHydrationTest.php b/tests/Orm/Hydration/BasicHydrationTest.php new file mode 100644 index 000000000..ebabcf9ff --- /dev/null +++ b/tests/Orm/Hydration/BasicHydrationTest.php @@ -0,0 +1,78 @@ + array( + 'table' => $this->sharedFixture['connection']->getClassMetadata('CmsUser'), + 'mapper' => $this->sharedFixture['connection']->getMapper('CmsUser'), + 'parent' => null, + 'relation' => null, + 'map' => null + ) + ); + + // Faked table alias map + $tableAliasMap = array( + 'u' => 'u' + ); + + // Faked result set + $resultSet = array( + //row1 + array( + 'u__id' => '1', + 'u__name' => 'romanb' + ), + //row2 + array( + 'u__id' => '2', + 'u__name' => 'jwage' + ) + ); + + + $stmt = new Doctrine_HydratorMockStatement($resultSet); + $hydrator = new Doctrine_Hydrator(); + $hydrator->setQueryComponents($queryComponents); + + $arrayResult = $hydrator->hydrateResultSet($stmt, $tableAliasMap, Doctrine::HYDRATE_ARRAY); + + $this->assertTrue(is_array($arrayResult)); + $this->assertEquals(2, count($arrayResult)); + $this->assertEquals(1, $arrayResult[0]['id']); + $this->assertEquals('romanb', $arrayResult[0]['name']); + $this->assertEquals(2, $arrayResult[1]['id']); + $this->assertEquals('jwage', $arrayResult[1]['name']); + + $stmt->setResultSet($resultSet); + $objectResult = $hydrator->hydrateResultSet($stmt, $tableAliasMap, Doctrine::HYDRATE_RECORD); + + $this->assertTrue($objectResult instanceof Doctrine_Collection); + $this->assertEquals(2, count($objectResult)); + $this->assertTrue($objectResult[0] instanceof Doctrine_Record); + $this->assertEquals(1, $objectResult[0]->id); + $this->assertEquals('romanb', $objectResult[0]->name); + $this->assertTrue($objectResult[1] instanceof Doctrine_Record); + $this->assertEquals(2, $objectResult[1]->id); + $this->assertEquals('jwage', $objectResult[1]->name); + + //Doctrine::dump($res); + + $this->assertEquals(0, 0); + } +} \ No newline at end of file diff --git a/tests/lib/mocks/Doctrine_HydratorMockStatement.php b/tests/lib/mocks/Doctrine_HydratorMockStatement.php new file mode 100644 index 000000000..ffa6fe73f --- /dev/null +++ b/tests/lib/mocks/Doctrine_HydratorMockStatement.php @@ -0,0 +1,62 @@ + + */ +class Doctrine_HydratorMockStatement +{ + private $_resultSet; + + /** + * Creates a new mock statement that will serve the provided fake result set to clients. + * + * @param array $resultSet The faked SQL result set. + */ + public function __construct(array $resultSet) + { + $this->_resultSet = $resultSet; + } + + /** + * Fetches all rows from the result set. + * + * NOTE: Must adhere to the PDOStatement::fetchAll() signature that looks as follows: + * array fetchAll ([ int $fetch_style [, int $column_index [, array $ctor_args ]]] ) + * + * @return array + */ + public function fetchAll($fetchStyle = null, $columnIndex = null, array $ctorArgs = null) + { + return $this->_resultSet; + } + + /** + * Fetches the next row in the result set. + * + * NOTE: Must adhere to the PDOStatement::fetch() signature that looks as follows: + * mixed fetch ([ int $fetch_style [, int $cursor_orientation [, int $cursor_offset ]]] ) + * + */ + public function fetch($fetchStyle = null, $cursorOrientation = null, $cursorOffset = null) + { + return array_shift($this->_resultSet); + } + + /** + * Closes the cursor, enabling the statement to be executed again. + * + * @return boolean + */ + public function closeCursor() + { + return true; + } + + public function setResultSet(array $resultSet) + { + $this->_resultSet = $resultSet; + } +} \ No newline at end of file